diff options
author | Bryan Newbold <bnewbold@archive.org> | 2018-04-04 12:06:38 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2018-04-04 12:06:38 -0700 |
commit | 1dad0d9e54bfae93eebea47f8a3cb291cdd645c5 (patch) | |
tree | 97a8c9bcaf93734e2dbd8f431d37213520b55fbd /extraction/xml2json.py | |
parent | 427dd875958c8a6d2d791d55f9dda300ebdc853b (diff) | |
download | sandcrawler-1dad0d9e54bfae93eebea47f8a3cb291cdd645c5.tar.gz sandcrawler-1dad0d9e54bfae93eebea47f8a3cb291cdd645c5.zip |
extraction -> mapreduce
Diffstat (limited to 'extraction/xml2json.py')
-rw-r--r-- | extraction/xml2json.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/extraction/xml2json.py b/extraction/xml2json.py deleted file mode 100644 index f956014..0000000 --- a/extraction/xml2json.py +++ /dev/null @@ -1,8 +0,0 @@ - -import json -import sys -import xmltodict - -with open('tests/files/23b29ea36382680716be08fc71aa81bd226e8a85.xml', 'rb') as f: - thing = xmltodict.parse(f, process_namespaces=False) - print(json.dumps(thing)) |