├── .bumpversion.cfg ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── appveyor.yml ├── chemdataextractor ├── __init__.py ├── biblio │ ├── __init__.py │ ├── bibtex.py │ ├── person.py │ └── xmp.py ├── cli │ ├── __init__.py │ ├── cem.py │ ├── chemdner.py │ ├── cluster.py │ ├── config.py │ ├── data.py │ ├── dict.py │ ├── evaluate.py │ ├── pos.py │ └── tokenize.py ├── config.py ├── data.py ├── doc │ ├── __init__.py │ ├── document.py │ ├── element.py │ ├── figure.py │ ├── table.py │ └── text.py ├── errors.py ├── model.py ├── nlp │ ├── __init__.py │ ├── abbrev.py │ ├── cem.py │ ├── corpus.py │ ├── lexicon.py │ ├── pos.py │ ├── tag.py │ └── tokenize.py ├── parse │ ├── __init__.py │ ├── actions.py │ ├── base.py │ ├── cem.py │ ├── common.py │ ├── context.py │ ├── elements.py │ ├── ir.py │ ├── mp.py │ ├── nmr.py │ ├── table.py │ ├── tg.py │ └── uvvis.py ├── reader │ ├── __init__.py │ ├── acs.py │ ├── base.py │ ├── cssp.py │ ├── markup.py │ ├── nlm.py │ ├── pdf.py │ ├── plaintext.py │ ├── rsc.py │ └── uspto.py ├── scrape │ ├── __init__.py │ ├── base.py │ ├── clean.py │ ├── csstranslator.py │ ├── entity.py │ ├── fields.py │ ├── pub │ │ ├── __init__.py │ │ ├── nlm.py │ │ ├── rsc.py │ │ └── springer.py │ ├── scraper.py │ └── selector.py ├── text │ ├── __init__.py │ ├── chem.py │ ├── latex.py │ ├── normalize.py │ ├── processors.py │ └── unwrap.py └── utils.py ├── examples └── extracting_a_custom_property.ipynb ├── requirements.txt ├── requirements ├── development.txt └── production.txt ├── scripts ├── chemdner.sh ├── cluster.sh ├── dict.sh ├── melting_points.py └── pos.sh ├── setup.py └── tests ├── data ├── acs │ └── acs.jmedchem.6b00723.html ├── rsc │ └── 10.1039_C6OB02074G.html └── uspto │ └── US06840965B2.xml ├── test_biblio.py ├── test_doc_document.py ├── test_doc_table.py ├── test_extract.py ├── test_model.py ├── test_nlp_abbrev.py ├── test_nlp_cem.py ├── test_nlp_pos.py ├── test_nlp_sentence.py ├── test_nlp_tag.py ├── test_nlp_tokenize.py ├── test_parse_cem.py ├── test_parse_context.py ├── test_parse_ir.py ├── test_parse_mp.py ├── test_parse_nmr.py ├── test_parse_tg.py ├── test_parse_uvvis.py ├── test_reader_acs.py ├── test_reader_markup.py ├── test_reader_rsc.py ├── test_reader_uspto.py ├── test_scrape_clean.py ├── test_scrape_entity.py ├── test_scrape_fields.py ├── test_scrape_rsc.py ├── test_scrape_selector.py ├── test_text.py └── test_text_chem.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/appveyor.yml -------------------------------------------------------------------------------- /chemdataextractor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/biblio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/biblio/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/biblio/bibtex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/biblio/bibtex.py -------------------------------------------------------------------------------- /chemdataextractor/biblio/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/biblio/person.py -------------------------------------------------------------------------------- /chemdataextractor/biblio/xmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/biblio/xmp.py -------------------------------------------------------------------------------- /chemdataextractor/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/cli/cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/cem.py -------------------------------------------------------------------------------- /chemdataextractor/cli/chemdner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/chemdner.py -------------------------------------------------------------------------------- /chemdataextractor/cli/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/cluster.py -------------------------------------------------------------------------------- /chemdataextractor/cli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/config.py -------------------------------------------------------------------------------- /chemdataextractor/cli/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/data.py -------------------------------------------------------------------------------- /chemdataextractor/cli/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/dict.py -------------------------------------------------------------------------------- /chemdataextractor/cli/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/evaluate.py -------------------------------------------------------------------------------- /chemdataextractor/cli/pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/pos.py -------------------------------------------------------------------------------- /chemdataextractor/cli/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/cli/tokenize.py -------------------------------------------------------------------------------- /chemdataextractor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/config.py -------------------------------------------------------------------------------- /chemdataextractor/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/data.py -------------------------------------------------------------------------------- /chemdataextractor/doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/doc/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/doc/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/doc/document.py -------------------------------------------------------------------------------- /chemdataextractor/doc/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/doc/element.py -------------------------------------------------------------------------------- /chemdataextractor/doc/figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/doc/figure.py -------------------------------------------------------------------------------- /chemdataextractor/doc/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/doc/table.py -------------------------------------------------------------------------------- /chemdataextractor/doc/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/doc/text.py -------------------------------------------------------------------------------- /chemdataextractor/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/errors.py -------------------------------------------------------------------------------- /chemdataextractor/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/model.py -------------------------------------------------------------------------------- /chemdataextractor/nlp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/nlp/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/nlp/abbrev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/nlp/abbrev.py -------------------------------------------------------------------------------- /chemdataextractor/nlp/cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/nlp/cem.py -------------------------------------------------------------------------------- /chemdataextractor/nlp/corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/nlp/corpus.py -------------------------------------------------------------------------------- /chemdataextractor/nlp/lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/nlp/lexicon.py -------------------------------------------------------------------------------- /chemdataextractor/nlp/pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/nlp/pos.py -------------------------------------------------------------------------------- /chemdataextractor/nlp/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/nlp/tag.py -------------------------------------------------------------------------------- /chemdataextractor/nlp/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/nlp/tokenize.py -------------------------------------------------------------------------------- /chemdataextractor/parse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/parse/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/actions.py -------------------------------------------------------------------------------- /chemdataextractor/parse/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/base.py -------------------------------------------------------------------------------- /chemdataextractor/parse/cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/cem.py -------------------------------------------------------------------------------- /chemdataextractor/parse/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/common.py -------------------------------------------------------------------------------- /chemdataextractor/parse/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/context.py -------------------------------------------------------------------------------- /chemdataextractor/parse/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/elements.py -------------------------------------------------------------------------------- /chemdataextractor/parse/ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/ir.py -------------------------------------------------------------------------------- /chemdataextractor/parse/mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/mp.py -------------------------------------------------------------------------------- /chemdataextractor/parse/nmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/nmr.py -------------------------------------------------------------------------------- /chemdataextractor/parse/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/table.py -------------------------------------------------------------------------------- /chemdataextractor/parse/tg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/tg.py -------------------------------------------------------------------------------- /chemdataextractor/parse/uvvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/parse/uvvis.py -------------------------------------------------------------------------------- /chemdataextractor/reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/reader/acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/acs.py -------------------------------------------------------------------------------- /chemdataextractor/reader/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/base.py -------------------------------------------------------------------------------- /chemdataextractor/reader/cssp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/cssp.py -------------------------------------------------------------------------------- /chemdataextractor/reader/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/markup.py -------------------------------------------------------------------------------- /chemdataextractor/reader/nlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/nlm.py -------------------------------------------------------------------------------- /chemdataextractor/reader/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/pdf.py -------------------------------------------------------------------------------- /chemdataextractor/reader/plaintext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/plaintext.py -------------------------------------------------------------------------------- /chemdataextractor/reader/rsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/rsc.py -------------------------------------------------------------------------------- /chemdataextractor/reader/uspto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/reader/uspto.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/base.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/clean.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/csstranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/csstranslator.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/entity.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/fields.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/pub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/pub/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/pub/nlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/pub/nlm.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/pub/rsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/pub/rsc.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/pub/springer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/pub/springer.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/scraper.py -------------------------------------------------------------------------------- /chemdataextractor/scrape/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/scrape/selector.py -------------------------------------------------------------------------------- /chemdataextractor/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/text/__init__.py -------------------------------------------------------------------------------- /chemdataextractor/text/chem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/text/chem.py -------------------------------------------------------------------------------- /chemdataextractor/text/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/text/latex.py -------------------------------------------------------------------------------- /chemdataextractor/text/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/text/normalize.py -------------------------------------------------------------------------------- /chemdataextractor/text/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/text/processors.py -------------------------------------------------------------------------------- /chemdataextractor/text/unwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/text/unwrap.py -------------------------------------------------------------------------------- /chemdataextractor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/chemdataextractor/utils.py -------------------------------------------------------------------------------- /examples/extracting_a_custom_property.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/examples/extracting_a_custom_property.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/production.txt 2 | -------------------------------------------------------------------------------- /requirements/development.txt: -------------------------------------------------------------------------------- 1 | -r production.txt 2 | pytest>=3.0.6 3 | twine>=1.8.1 4 | wheel>=0.29.0 5 | -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /scripts/chemdner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/scripts/chemdner.sh -------------------------------------------------------------------------------- /scripts/cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/scripts/cluster.sh -------------------------------------------------------------------------------- /scripts/dict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/scripts/dict.sh -------------------------------------------------------------------------------- /scripts/melting_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/scripts/melting_points.py -------------------------------------------------------------------------------- /scripts/pos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/scripts/pos.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/acs/acs.jmedchem.6b00723.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/data/acs/acs.jmedchem.6b00723.html -------------------------------------------------------------------------------- /tests/data/rsc/10.1039_C6OB02074G.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/data/rsc/10.1039_C6OB02074G.html -------------------------------------------------------------------------------- /tests/data/uspto/US06840965B2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/data/uspto/US06840965B2.xml -------------------------------------------------------------------------------- /tests/test_biblio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_biblio.py -------------------------------------------------------------------------------- /tests/test_doc_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_doc_document.py -------------------------------------------------------------------------------- /tests/test_doc_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_doc_table.py -------------------------------------------------------------------------------- /tests/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_extract.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_nlp_abbrev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_nlp_abbrev.py -------------------------------------------------------------------------------- /tests/test_nlp_cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_nlp_cem.py -------------------------------------------------------------------------------- /tests/test_nlp_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_nlp_pos.py -------------------------------------------------------------------------------- /tests/test_nlp_sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_nlp_sentence.py -------------------------------------------------------------------------------- /tests/test_nlp_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_nlp_tag.py -------------------------------------------------------------------------------- /tests/test_nlp_tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_nlp_tokenize.py -------------------------------------------------------------------------------- /tests/test_parse_cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_parse_cem.py -------------------------------------------------------------------------------- /tests/test_parse_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_parse_context.py -------------------------------------------------------------------------------- /tests/test_parse_ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_parse_ir.py -------------------------------------------------------------------------------- /tests/test_parse_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_parse_mp.py -------------------------------------------------------------------------------- /tests/test_parse_nmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_parse_nmr.py -------------------------------------------------------------------------------- /tests/test_parse_tg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_parse_tg.py -------------------------------------------------------------------------------- /tests/test_parse_uvvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_parse_uvvis.py -------------------------------------------------------------------------------- /tests/test_reader_acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_reader_acs.py -------------------------------------------------------------------------------- /tests/test_reader_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_reader_markup.py -------------------------------------------------------------------------------- /tests/test_reader_rsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_reader_rsc.py -------------------------------------------------------------------------------- /tests/test_reader_uspto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_reader_uspto.py -------------------------------------------------------------------------------- /tests/test_scrape_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_scrape_clean.py -------------------------------------------------------------------------------- /tests/test_scrape_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_scrape_entity.py -------------------------------------------------------------------------------- /tests/test_scrape_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_scrape_fields.py -------------------------------------------------------------------------------- /tests/test_scrape_rsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_scrape_rsc.py -------------------------------------------------------------------------------- /tests/test_scrape_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_scrape_selector.py -------------------------------------------------------------------------------- /tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_text.py -------------------------------------------------------------------------------- /tests/test_text_chem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcs07/ChemDataExtractor/HEAD/tests/test_text_chem.py --------------------------------------------------------------------------------