├── .gitattributes ├── .github └── workflows │ ├── cffconvert.yml │ ├── docs.yml │ ├── python-action.yml │ ├── python-app.yml │ └── python-format.yml ├── .gitignore ├── .zenodo.json ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── docs ├── Makefile ├── _static │ ├── citation.html │ ├── css │ │ └── style.css │ ├── logo.png │ └── logo_dm.png ├── api │ ├── index.rst │ ├── network.rst │ ├── nlp.rst │ ├── plot.rst │ ├── sources.rst │ ├── stats.rst │ └── types.rst ├── citation.html ├── conf.py ├── example.ipynb ├── faq.rst ├── images │ └── notebook.png ├── index.rst ├── installation.rst ├── license.rst ├── logo.png ├── logo_dm.png └── make.bat ├── img ├── authors.png ├── cloud.png ├── embedding.png ├── venues.png └── years.png ├── litstudy ├── __init__.py ├── clean.py ├── common.py ├── continent.py ├── network.py ├── nlp.py ├── plot.py ├── sources │ ├── __init__.py │ ├── arxiv.py │ ├── bibtex.py │ ├── crossref.py │ ├── csv.py │ ├── dblp.py │ ├── ieee.py │ ├── ris.py │ ├── scopus.py │ ├── scopus_csv.py │ ├── semanticscholar.py │ └── springer.py ├── stats.py ├── stopwords.py └── types.py ├── notebooks ├── citation.html ├── data │ ├── exclude.ris │ ├── ieee_1.csv │ ├── ieee_2.csv │ ├── ieee_3.csv │ ├── ieee_4.csv │ ├── ieee_5.csv │ └── springer.csv └── example.ipynb ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── sonar-project.properties └── tests ├── __init__.py ├── common.py ├── requests ├── 245f82b3fdc09eaed6a726cd4bddaa2f1565ba90.pickle ├── 4d39f93aa1c9ff4afee9f210b14ade9e5ccf3a58.pickle ├── 4eea59c658fa3076445495dea5554977b85511ff.pickle ├── 5122a6fa38e030c8876096317e7e19aa6534e70a.pickle ├── 54f7b47eb9ceb574f63ec43e8b717364b75b3fa7.pickle ├── 5dec8d884e7221dc8cad8d779c23884c91fde749.pickle ├── 6028198cfd0c1f6c2e2b995ed4802d1c42fb07b2.pickle ├── 6a9fff6a7064528fd44202e78690da248afa23b7.pickle ├── 78a2bca757d42aced207b202458dfd3bf17f0c3d.pickle ├── 7c4b7301a9ccb48f60f360dd28ec6f0dfec9613f.pickle ├── 9b4fc567a80b12bae747c517a4890ce044307aa5.pickle ├── c3c2090c3a0293d71314d226b24f9da74633e092.pickle ├── cfca0170ac37869891777418ee9cf20f17faa581.pickle ├── d1acbf3602743e93bf70589acb072ba87ef3b72b.pickle ├── eeb9079866515efbc22fb670e78f14d11c099a9f.pickle └── ff2a790d6047bbc6bf3ee8d5cc73c47237b95bf8.pickle ├── resources ├── example.ris ├── ieee.csv ├── retraction_watch.csv ├── scopus.csv └── springer.csv ├── test_common.py ├── test_nlp_corpus.py ├── test_sources_arxiv.py ├── test_sources_crossref.py ├── test_sources_csv.py ├── test_sources_ieee.py ├── test_sources_ris.py ├── test_sources_scopus_csv.py ├── test_sources_semanticscholar.py └── test_sources_springer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-documentation 2 | -------------------------------------------------------------------------------- /.github/workflows/cffconvert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/.github/workflows/cffconvert.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/python-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/.github/workflows/python-action.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/.github/workflows/python-format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/_static/citation.html -------------------------------------------------------------------------------- /docs/_static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/_static/css/style.css -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/logo_dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/_static/logo_dm.png -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/api/network.rst -------------------------------------------------------------------------------- /docs/api/nlp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/api/nlp.rst -------------------------------------------------------------------------------- /docs/api/plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/api/plot.rst -------------------------------------------------------------------------------- /docs/api/sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/api/sources.rst -------------------------------------------------------------------------------- /docs/api/stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/api/stats.rst -------------------------------------------------------------------------------- /docs/api/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/api/types.rst -------------------------------------------------------------------------------- /docs/citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/citation.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/example.ipynb: -------------------------------------------------------------------------------- 1 | ../notebooks/example.ipynb -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/images/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/images/notebook.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/logo_dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/logo_dm.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /img/authors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/img/authors.png -------------------------------------------------------------------------------- /img/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/img/cloud.png -------------------------------------------------------------------------------- /img/embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/img/embedding.png -------------------------------------------------------------------------------- /img/venues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/img/venues.png -------------------------------------------------------------------------------- /img/years.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/img/years.png -------------------------------------------------------------------------------- /litstudy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/__init__.py -------------------------------------------------------------------------------- /litstudy/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/clean.py -------------------------------------------------------------------------------- /litstudy/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/common.py -------------------------------------------------------------------------------- /litstudy/continent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/continent.py -------------------------------------------------------------------------------- /litstudy/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/network.py -------------------------------------------------------------------------------- /litstudy/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/nlp.py -------------------------------------------------------------------------------- /litstudy/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/plot.py -------------------------------------------------------------------------------- /litstudy/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/__init__.py -------------------------------------------------------------------------------- /litstudy/sources/arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/arxiv.py -------------------------------------------------------------------------------- /litstudy/sources/bibtex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/bibtex.py -------------------------------------------------------------------------------- /litstudy/sources/crossref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/crossref.py -------------------------------------------------------------------------------- /litstudy/sources/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/csv.py -------------------------------------------------------------------------------- /litstudy/sources/dblp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/dblp.py -------------------------------------------------------------------------------- /litstudy/sources/ieee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/ieee.py -------------------------------------------------------------------------------- /litstudy/sources/ris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/ris.py -------------------------------------------------------------------------------- /litstudy/sources/scopus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/scopus.py -------------------------------------------------------------------------------- /litstudy/sources/scopus_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/scopus_csv.py -------------------------------------------------------------------------------- /litstudy/sources/semanticscholar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/semanticscholar.py -------------------------------------------------------------------------------- /litstudy/sources/springer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/sources/springer.py -------------------------------------------------------------------------------- /litstudy/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/stats.py -------------------------------------------------------------------------------- /litstudy/stopwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/stopwords.py -------------------------------------------------------------------------------- /litstudy/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/litstudy/types.py -------------------------------------------------------------------------------- /notebooks/citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/citation.html -------------------------------------------------------------------------------- /notebooks/data/exclude.ris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/data/exclude.ris -------------------------------------------------------------------------------- /notebooks/data/ieee_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/data/ieee_1.csv -------------------------------------------------------------------------------- /notebooks/data/ieee_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/data/ieee_2.csv -------------------------------------------------------------------------------- /notebooks/data/ieee_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/data/ieee_3.csv -------------------------------------------------------------------------------- /notebooks/data/ieee_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/data/ieee_4.csv -------------------------------------------------------------------------------- /notebooks/data/ieee_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/data/ieee_5.csv -------------------------------------------------------------------------------- /notebooks/data/springer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/data/springer.csv -------------------------------------------------------------------------------- /notebooks/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/notebooks/example.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/requests/245f82b3fdc09eaed6a726cd4bddaa2f1565ba90.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/245f82b3fdc09eaed6a726cd4bddaa2f1565ba90.pickle -------------------------------------------------------------------------------- /tests/requests/4d39f93aa1c9ff4afee9f210b14ade9e5ccf3a58.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/4d39f93aa1c9ff4afee9f210b14ade9e5ccf3a58.pickle -------------------------------------------------------------------------------- /tests/requests/4eea59c658fa3076445495dea5554977b85511ff.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/4eea59c658fa3076445495dea5554977b85511ff.pickle -------------------------------------------------------------------------------- /tests/requests/5122a6fa38e030c8876096317e7e19aa6534e70a.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/5122a6fa38e030c8876096317e7e19aa6534e70a.pickle -------------------------------------------------------------------------------- /tests/requests/54f7b47eb9ceb574f63ec43e8b717364b75b3fa7.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/54f7b47eb9ceb574f63ec43e8b717364b75b3fa7.pickle -------------------------------------------------------------------------------- /tests/requests/5dec8d884e7221dc8cad8d779c23884c91fde749.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/5dec8d884e7221dc8cad8d779c23884c91fde749.pickle -------------------------------------------------------------------------------- /tests/requests/6028198cfd0c1f6c2e2b995ed4802d1c42fb07b2.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/6028198cfd0c1f6c2e2b995ed4802d1c42fb07b2.pickle -------------------------------------------------------------------------------- /tests/requests/6a9fff6a7064528fd44202e78690da248afa23b7.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/6a9fff6a7064528fd44202e78690da248afa23b7.pickle -------------------------------------------------------------------------------- /tests/requests/78a2bca757d42aced207b202458dfd3bf17f0c3d.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/78a2bca757d42aced207b202458dfd3bf17f0c3d.pickle -------------------------------------------------------------------------------- /tests/requests/7c4b7301a9ccb48f60f360dd28ec6f0dfec9613f.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/7c4b7301a9ccb48f60f360dd28ec6f0dfec9613f.pickle -------------------------------------------------------------------------------- /tests/requests/9b4fc567a80b12bae747c517a4890ce044307aa5.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/9b4fc567a80b12bae747c517a4890ce044307aa5.pickle -------------------------------------------------------------------------------- /tests/requests/c3c2090c3a0293d71314d226b24f9da74633e092.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/c3c2090c3a0293d71314d226b24f9da74633e092.pickle -------------------------------------------------------------------------------- /tests/requests/cfca0170ac37869891777418ee9cf20f17faa581.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/cfca0170ac37869891777418ee9cf20f17faa581.pickle -------------------------------------------------------------------------------- /tests/requests/d1acbf3602743e93bf70589acb072ba87ef3b72b.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/d1acbf3602743e93bf70589acb072ba87ef3b72b.pickle -------------------------------------------------------------------------------- /tests/requests/eeb9079866515efbc22fb670e78f14d11c099a9f.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/eeb9079866515efbc22fb670e78f14d11c099a9f.pickle -------------------------------------------------------------------------------- /tests/requests/ff2a790d6047bbc6bf3ee8d5cc73c47237b95bf8.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/requests/ff2a790d6047bbc6bf3ee8d5cc73c47237b95bf8.pickle -------------------------------------------------------------------------------- /tests/resources/example.ris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/resources/example.ris -------------------------------------------------------------------------------- /tests/resources/ieee.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/resources/ieee.csv -------------------------------------------------------------------------------- /tests/resources/retraction_watch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/resources/retraction_watch.csv -------------------------------------------------------------------------------- /tests/resources/scopus.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/resources/scopus.csv -------------------------------------------------------------------------------- /tests/resources/springer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/resources/springer.csv -------------------------------------------------------------------------------- /tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_common.py -------------------------------------------------------------------------------- /tests/test_nlp_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_nlp_corpus.py -------------------------------------------------------------------------------- /tests/test_sources_arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_sources_arxiv.py -------------------------------------------------------------------------------- /tests/test_sources_crossref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_sources_crossref.py -------------------------------------------------------------------------------- /tests/test_sources_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_sources_csv.py -------------------------------------------------------------------------------- /tests/test_sources_ieee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_sources_ieee.py -------------------------------------------------------------------------------- /tests/test_sources_ris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_sources_ris.py -------------------------------------------------------------------------------- /tests/test_sources_scopus_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_sources_scopus_csv.py -------------------------------------------------------------------------------- /tests/test_sources_semanticscholar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_sources_semanticscholar.py -------------------------------------------------------------------------------- /tests/test_sources_springer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/litstudy/HEAD/tests/test_sources_springer.py --------------------------------------------------------------------------------