├── .gitattributes ├── .gitignore ├── Converter ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── conf │ ├── __init__.py │ ├── conf.py │ └── conf_citations.py ├── meta │ ├── .gitignore │ ├── LICENSE │ ├── LICENSE.md │ │ └── LICENSE.md │ ├── README.md │ ├── __init__.py │ ├── crossref │ │ ├── __init__.py │ │ └── crossrefProcessing.py │ ├── demo │ │ ├── Dumontier │ │ │ ├── CSV │ │ │ │ └── Dumontier.csv │ │ │ ├── CSVe │ │ │ │ ├── 2020-02-15T17_44_48.csv │ │ │ │ └── indices │ │ │ │ │ └── 2020-02-15T17_44_48 │ │ │ │ │ ├── index_ar.csv │ │ │ │ │ ├── index_id_br.csv │ │ │ │ │ ├── index_id_ra.csv │ │ │ │ │ ├── index_re.csv │ │ │ │ │ └── index_vi.json │ │ │ ├── auxiliary │ │ │ │ └── auxiliary.txt │ │ │ ├── corpus │ │ │ │ ├── ar │ │ │ │ │ └── 2 │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ ├── 1000 │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ └── se.ttl │ │ │ │ │ │ └── 1000.ttl │ │ │ │ ├── br │ │ │ │ │ └── 2 │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ ├── 1000 │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ └── se.ttl │ │ │ │ │ │ └── 1000.ttl │ │ │ │ ├── counter │ │ │ │ │ └── id-counter │ │ │ │ │ │ ├── ar.txt │ │ │ │ │ │ ├── br.txt │ │ │ │ │ │ ├── counter_prov │ │ │ │ │ │ ├── counter_ar │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ │ │ └── 1000 │ │ │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ │ └── se.txt │ │ │ │ │ │ ├── counter_br │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ │ │ └── 1000 │ │ │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ │ └── se.txt │ │ │ │ │ │ ├── counter_id │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ │ │ └── 1000 │ │ │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ │ └── se.txt │ │ │ │ │ │ ├── counter_ra │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ │ │ └── 1000 │ │ │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ │ └── se.txt │ │ │ │ │ │ └── counter_re │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ │ └── 1000 │ │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ └── se.txt │ │ │ │ │ │ ├── id.txt │ │ │ │ │ │ ├── ra.txt │ │ │ │ │ │ └── re.txt │ │ │ │ ├── id │ │ │ │ │ └── 2 │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ ├── 1000 │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ └── se.ttl │ │ │ │ │ │ └── 1000.ttl │ │ │ │ ├── ra │ │ │ │ │ └── 2 │ │ │ │ │ │ └── 10000 │ │ │ │ │ │ ├── 1000 │ │ │ │ │ │ └── prov │ │ │ │ │ │ │ └── se.ttl │ │ │ │ │ │ └── 1000.ttl │ │ │ │ └── re │ │ │ │ │ └── 2 │ │ │ │ │ └── 10000 │ │ │ │ │ ├── 1000 │ │ │ │ │ └── prov │ │ │ │ │ │ └── se.ttl │ │ │ │ │ └── 1000.ttl │ │ │ ├── doi │ │ │ │ ├── anted_doi.csv │ │ │ │ └── preprocess │ │ │ │ │ └── doi_index.csv │ │ │ ├── json │ │ │ │ └── Dumontier.json │ │ │ ├── orcid │ │ │ │ └── oi_orcid.csv │ │ │ └── summaries │ │ │ │ └── 0000-0003-4727-9435.xml │ │ └── Peroni │ │ │ ├── CSV │ │ │ ├── Peroni.csv │ │ │ └── Vitali.csv │ │ │ ├── auxiliary │ │ │ └── auxiliary.txt │ │ │ ├── doi │ │ │ ├── valid_doi.csv │ │ │ └── wanted_doi.csv │ │ │ ├── example.txt │ │ │ ├── json │ │ │ ├── Peroni.json │ │ │ └── Vitali.json │ │ │ ├── orcid │ │ │ └── doi_orcid.csv │ │ │ └── summaries │ │ │ ├── 160 │ │ │ └── 0000-0002-9380-5160.xml │ │ │ └── 203 │ │ │ └── 0000-0002-7562-5203.xml │ ├── example.csv │ ├── lib │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── csvmanager.py │ │ ├── finder.py │ │ ├── id_manager │ │ │ ├── __init__.py │ │ │ ├── doimanager.py │ │ │ ├── identifiermanager.py │ │ │ ├── isbnmanager.py │ │ │ ├── issnmanager.py │ │ │ └── orcidmanager.py │ │ └── reporter.py │ ├── orcid │ │ ├── __init__.py │ │ └── index_orcid_doi.py │ ├── requirements.txt │ ├── run_preprocess.py │ ├── run_process.py │ ├── scripts │ │ ├── __init__.py │ │ ├── creator.py │ │ └── curator.py │ ├── tdd │ │ ├── __init__.py │ │ ├── creator_TDD.py │ │ ├── curator_TDD.py │ │ ├── curator_counter │ │ │ ├── ar.txt │ │ │ ├── br.txt │ │ │ ├── id.txt │ │ │ ├── ra.txt │ │ │ └── re.txt │ │ ├── new_test_data.csv │ │ └── testcases │ │ │ ├── testcase_01.ttl │ │ │ ├── testcase_02.ttl │ │ │ ├── testcase_03.ttl │ │ │ ├── testcase_04.ttl │ │ │ ├── testcase_05.ttl │ │ │ ├── testcase_06.ttl │ │ │ ├── testcase_07.ttl │ │ │ ├── testcase_08.ttl │ │ │ ├── testcase_09.ttl │ │ │ ├── testcase_10.ttl │ │ │ ├── testcase_X.ttl │ │ │ ├── testcase_data │ │ │ ├── indices │ │ │ │ ├── 10 │ │ │ │ │ ├── index_ar_10.csv │ │ │ │ │ ├── index_id_br_10.csv │ │ │ │ │ ├── index_id_ra_10.csv │ │ │ │ │ ├── index_re_10.csv │ │ │ │ │ └── index_vi_10.json │ │ │ │ ├── 11 │ │ │ │ │ ├── index_ar_11.csv │ │ │ │ │ ├── index_id_br_11.csv │ │ │ │ │ ├── index_id_ra_11.csv │ │ │ │ │ ├── index_re_11.csv │ │ │ │ │ └── index_vi_11.json │ │ │ │ ├── 12 │ │ │ │ │ ├── index_ar_12.csv │ │ │ │ │ ├── index_id_br_12.csv │ │ │ │ │ ├── index_id_ra_12.csv │ │ │ │ │ ├── index_re_12.csv │ │ │ │ │ └── index_vi_12.json │ │ │ │ ├── 01 │ │ │ │ │ ├── index_ar_01.csv │ │ │ │ │ ├── index_id_br_01.csv │ │ │ │ │ ├── index_id_ra_01.csv │ │ │ │ │ ├── index_re_01.csv │ │ │ │ │ └── index_vi_01.json │ │ │ │ ├── 02 │ │ │ │ │ ├── index_ar_02.csv │ │ │ │ │ ├── index_id_br_02.csv │ │ │ │ │ ├── index_id_ra_02.csv │ │ │ │ │ ├── index_re_02.csv │ │ │ │ │ └── index_vi_02.json │ │ │ │ ├── 03 │ │ │ │ │ ├── index_ar_03.csv │ │ │ │ │ ├── index_id_br_03.csv │ │ │ │ │ ├── index_id_ra_03.csv │ │ │ │ │ ├── index_re_03.csv │ │ │ │ │ └── index_vi_03.json │ │ │ │ ├── 04 │ │ │ │ │ ├── index_ar_04.csv │ │ │ │ │ ├── index_id_br_04.csv │ │ │ │ │ ├── index_id_ra_04.csv │ │ │ │ │ ├── index_re_04.csv │ │ │ │ │ └── index_vi_04.json │ │ │ │ ├── 05 │ │ │ │ │ ├── index_ar_05.csv │ │ │ │ │ ├── index_id_br_05.csv │ │ │ │ │ ├── index_id_ra_05.csv │ │ │ │ │ ├── index_re_05.csv │ │ │ │ │ └── index_vi_05.json │ │ │ │ ├── 06 │ │ │ │ │ ├── index_ar_06.csv │ │ │ │ │ ├── index_id_br_06.csv │ │ │ │ │ ├── index_id_ra_06.csv │ │ │ │ │ ├── index_re_06.csv │ │ │ │ │ └── index_vi_06.json │ │ │ │ ├── 07 │ │ │ │ │ ├── index_ar_07.csv │ │ │ │ │ ├── index_id_br_07.csv │ │ │ │ │ ├── index_id_ra_07.csv │ │ │ │ │ ├── index_re_07.csv │ │ │ │ │ └── index_vi_07.json │ │ │ │ ├── 08 │ │ │ │ │ ├── index_ar_08.csv │ │ │ │ │ ├── index_id_br_08.csv │ │ │ │ │ ├── index_id_ra_08.csv │ │ │ │ │ ├── index_re_08.csv │ │ │ │ │ └── index_vi_08.json │ │ │ │ ├── 09 │ │ │ │ │ ├── index_ar_09.csv │ │ │ │ │ ├── index_id_br_09.csv │ │ │ │ │ ├── index_id_ra_09.csv │ │ │ │ │ ├── index_re_09.csv │ │ │ │ │ └── index_vi_09.json │ │ │ │ ├── 13.1 │ │ │ │ │ ├── index_ar_13.1.csv │ │ │ │ │ ├── index_id_br_13.1.csv │ │ │ │ │ ├── index_id_ra_13.1.csv │ │ │ │ │ ├── index_re_13.1.csv │ │ │ │ │ └── index_vi_13.1.json │ │ │ │ ├── 13.2 │ │ │ │ │ ├── index_ar_13.2.csv │ │ │ │ │ ├── index_id_br_13.2.csv │ │ │ │ │ ├── index_id_ra_13.2.csv │ │ │ │ │ ├── index_re_13.2.csv │ │ │ │ │ └── index_vi_13.2.json │ │ │ │ ├── 13.3 │ │ │ │ │ ├── index_ar_13.3.csv │ │ │ │ │ ├── index_id_br_13.3.csv │ │ │ │ │ ├── index_id_ra_13.3.csv │ │ │ │ │ ├── index_re_13.3.csv │ │ │ │ │ └── index_vi_13.3.json │ │ │ │ ├── 14.1 │ │ │ │ │ ├── index_ar_14.1.csv │ │ │ │ │ ├── index_id_br_14.1.csv │ │ │ │ │ ├── index_id_ra_14.1.csv │ │ │ │ │ ├── index_re_14.1.csv │ │ │ │ │ └── index_vi_14.1.json │ │ │ │ ├── 14.2 │ │ │ │ │ ├── index_ar_14.2.csv │ │ │ │ │ ├── index_id_br_14.2.csv │ │ │ │ │ ├── index_id_ra_14.2.csv │ │ │ │ │ ├── index_re_14.2.csv │ │ │ │ │ └── index_vi_14.2.json │ │ │ │ ├── 14.3 │ │ │ │ │ ├── index_ar_14.3.csv │ │ │ │ │ ├── index_id_br_14.3.csv │ │ │ │ │ ├── index_id_ra_14.3.csv │ │ │ │ │ ├── index_re_14.3.csv │ │ │ │ │ └── index_vi_14.3.json │ │ │ │ ├── 14.4 │ │ │ │ │ ├── index_ar_14.4.csv │ │ │ │ │ ├── index_id_br_14.4.csv │ │ │ │ │ ├── index_id_ra_14.4.csv │ │ │ │ │ ├── index_re_14.4.csv │ │ │ │ │ └── index_vi_14.4.json │ │ │ │ ├── 15.1 │ │ │ │ │ ├── index_ar_15.1.csv │ │ │ │ │ ├── index_id_br_15.1.csv │ │ │ │ │ ├── index_id_ra_15.1.csv │ │ │ │ │ ├── index_re_15.1.csv │ │ │ │ │ └── index_vi_15.1.json │ │ │ │ ├── 15.2 │ │ │ │ │ ├── index_ar_15.2.csv │ │ │ │ │ ├── index_id_br_15.2.csv │ │ │ │ │ ├── index_id_ra_15.2.csv │ │ │ │ │ ├── index_re_15.2.csv │ │ │ │ │ └── index_vi_15.2.json │ │ │ │ ├── 15.3 │ │ │ │ │ ├── index_ar_15.3.csv │ │ │ │ │ ├── index_id_br_15.3.csv │ │ │ │ │ ├── index_id_ra_15.3.csv │ │ │ │ │ ├── index_re_15.3.csv │ │ │ │ │ └── index_vi_15.3.json │ │ │ │ ├── 15.4 │ │ │ │ │ ├── index_ar_15.4.csv │ │ │ │ │ ├── index_id_br_15.4.csv │ │ │ │ │ ├── index_id_ra_15.4.csv │ │ │ │ │ ├── index_re_15.4.csv │ │ │ │ │ └── index_vi_15.4.json │ │ │ │ ├── 15.5 │ │ │ │ │ ├── index_ar_15.5.csv │ │ │ │ │ ├── index_id_br_15.5.csv │ │ │ │ │ ├── index_id_ra_15.5.csv │ │ │ │ │ ├── index_re_15.5.csv │ │ │ │ │ └── index_vi_15.5.json │ │ │ │ ├── 15.6 │ │ │ │ │ ├── index_ar_15.6.csv │ │ │ │ │ ├── index_id_br_15.6.csv │ │ │ │ │ ├── index_id_ra_15.6.csv │ │ │ │ │ ├── index_re_15.6.csv │ │ │ │ │ └── index_vi_15.6.json │ │ │ │ ├── 15.7 │ │ │ │ │ ├── index_ar_15.7.csv │ │ │ │ │ ├── index_id_br_15.7.csv │ │ │ │ │ ├── index_id_ra_15.7.csv │ │ │ │ │ ├── index_re_15.7.csv │ │ │ │ │ └── index_vi_15.7.json │ │ │ │ ├── 15.8 │ │ │ │ │ ├── index_ar_15.8.csv │ │ │ │ │ ├── index_id_br_15.8.csv │ │ │ │ │ ├── index_id_ra_15.8.csv │ │ │ │ │ ├── index_re_15.8.csv │ │ │ │ │ └── index_vi_15.8.json │ │ │ │ ├── 16.1 │ │ │ │ │ ├── index_ar_16.1.csv │ │ │ │ │ ├── index_id_br_16.1.csv │ │ │ │ │ ├── index_id_ra_16.1.csv │ │ │ │ │ ├── index_re_16.1.csv │ │ │ │ │ └── index_vi_16.1.json │ │ │ │ ├── 16.2 │ │ │ │ │ ├── index_ar_16.2.csv │ │ │ │ │ ├── index_id_br_16.2.csv │ │ │ │ │ ├── index_id_ra_16.2.csv │ │ │ │ │ ├── index_re_16.2.csv │ │ │ │ │ └── index_vi_16.2.json │ │ │ │ └── 16.3 │ │ │ │ │ ├── index_ar_16.3.csv │ │ │ │ │ ├── index_id_br_16.3.csv │ │ │ │ │ ├── index_id_ra_16.3.csv │ │ │ │ │ ├── index_re_16.3.csv │ │ │ │ │ └── index_vi_16.3.json │ │ │ ├── testcase_01_data.csv │ │ │ ├── testcase_02_data.csv │ │ │ ├── testcase_03_data.csv │ │ │ ├── testcase_04_data.csv │ │ │ ├── testcase_05_data.csv │ │ │ ├── testcase_06_data.csv │ │ │ ├── testcase_07_data.csv │ │ │ ├── testcase_08_data.csv │ │ │ ├── testcase_09_data.csv │ │ │ ├── testcase_10_data.csv │ │ │ ├── testcase_11_data.csv │ │ │ ├── testcase_12_data.csv │ │ │ ├── testcase_13.1_data.csv │ │ │ ├── testcase_13.2_data.csv │ │ │ ├── testcase_13.3_data.csv │ │ │ ├── testcase_14.1_data.csv │ │ │ ├── testcase_14.2_data.csv │ │ │ ├── testcase_14.3_data.csv │ │ │ ├── testcase_14.4_data.csv │ │ │ ├── testcase_15.1_data.csv │ │ │ ├── testcase_15.2_data.csv │ │ │ ├── testcase_15.3_data.csv │ │ │ ├── testcase_15.4_data.csv │ │ │ ├── testcase_15.5_data.csv │ │ │ ├── testcase_15.6_data.csv │ │ │ ├── testcase_15.7_data.csv │ │ │ ├── testcase_15.8_data.csv │ │ │ ├── testcase_16.1_data.csv │ │ │ ├── testcase_16.2_data.csv │ │ │ ├── testcase_16.3_data.csv │ │ │ └── testcase_X_data.csv │ │ │ └── ts │ │ │ └── testcase_ts-13.ttl │ └── timer.py ├── requirements.txt ├── run_process.py ├── run_process_citations.py ├── scripts │ ├── __init__.py │ ├── classifier.py │ ├── process_bibliographic.py │ ├── process_citations.py │ ├── process_wiki.py │ └── reader.py ├── test │ ├── README.md │ ├── __init__.py │ ├── test_authors_utils.py │ ├── test_id_list_utils.py │ ├── test_invisible_chars.py │ └── test_utils.py └── utils │ ├── __init__.py │ ├── authors_utils.py │ ├── id_list_utils.py │ ├── invisible_chars.py │ └── utils.py ├── Enricher ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── conf.py ├── requirements.txt ├── run_process.py └── test │ └── README.md ├── Extractor ├── LICENSE.md ├── README.md ├── cite-classifications-wiki │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── libraries │ │ ├── mwparserfromhell │ │ │ ├── .coveragerc │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── appveyor.yml │ │ │ ├── docs │ │ │ │ ├── Makefile │ │ │ │ ├── api │ │ │ │ │ ├── modules.rst │ │ │ │ │ ├── mwparserfromhell.nodes.extras.rst │ │ │ │ │ ├── mwparserfromhell.nodes.rst │ │ │ │ │ ├── mwparserfromhell.parser.rst │ │ │ │ │ └── mwparserfromhell.rst │ │ │ │ ├── changelog.rst │ │ │ │ ├── conf.py │ │ │ │ ├── index.rst │ │ │ │ ├── integration.rst │ │ │ │ ├── limitations.rst │ │ │ │ └── usage.rst │ │ │ ├── example.py │ │ │ ├── mwparserfromhell │ │ │ │ ├── __init__.py │ │ │ │ ├── compat.py │ │ │ │ ├── definitions.py │ │ │ │ ├── nodes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── argument.py │ │ │ │ │ ├── comment.py │ │ │ │ │ ├── external_link.py │ │ │ │ │ ├── extras │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── attribute.py │ │ │ │ │ │ └── parameter.py │ │ │ │ │ ├── heading.py │ │ │ │ │ ├── html_entity.py │ │ │ │ │ ├── tag.py │ │ │ │ │ ├── template.py │ │ │ │ │ ├── text.py │ │ │ │ │ └── wikilink.py │ │ │ │ ├── parser │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── builder.py │ │ │ │ │ ├── contexts.py │ │ │ │ │ ├── ctokenizer │ │ │ │ │ │ ├── avl_tree.c │ │ │ │ │ │ ├── avl_tree.h │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── contexts.h │ │ │ │ │ │ ├── definitions.c │ │ │ │ │ │ ├── definitions.h │ │ │ │ │ │ ├── tag_data.c │ │ │ │ │ │ ├── tag_data.h │ │ │ │ │ │ ├── textbuffer.c │ │ │ │ │ │ ├── textbuffer.h │ │ │ │ │ │ ├── tok_parse.c │ │ │ │ │ │ ├── tok_parse.h │ │ │ │ │ │ ├── tok_support.c │ │ │ │ │ │ ├── tok_support.h │ │ │ │ │ │ ├── tokenizer.c │ │ │ │ │ │ ├── tokenizer.h │ │ │ │ │ │ ├── tokens.c │ │ │ │ │ │ └── tokens.h │ │ │ │ │ ├── tokenizer.py │ │ │ │ │ └── tokens.py │ │ │ │ ├── smart_list.py │ │ │ │ ├── string_mixin.py │ │ │ │ ├── utils.py │ │ │ │ └── wikicode.py │ │ │ ├── scripts │ │ │ │ ├── README │ │ │ │ ├── memtest.py │ │ │ │ ├── release.sh │ │ │ │ └── win_wrapper.cmd │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── MWPFHTestCase.tmlanguage │ │ │ │ ├── __init__.py │ │ │ │ ├── _test_tokenizer.py │ │ │ │ ├── _test_tree_equality.py │ │ │ │ ├── compat.py │ │ │ │ ├── test_argument.py │ │ │ │ ├── test_attribute.py │ │ │ │ ├── test_builder.py │ │ │ │ ├── test_comment.py │ │ │ │ ├── test_ctokenizer.py │ │ │ │ ├── test_docs.py │ │ │ │ ├── test_external_link.py │ │ │ │ ├── test_heading.py │ │ │ │ ├── test_html_entity.py │ │ │ │ ├── test_parameter.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_pytokenizer.py │ │ │ │ ├── test_roundtripping.py │ │ │ │ ├── test_smart_list.py │ │ │ │ ├── test_string_mixin.py │ │ │ │ ├── test_tag.py │ │ │ │ ├── test_template.py │ │ │ │ ├── test_text.py │ │ │ │ ├── test_tokens.py │ │ │ │ ├── test_utils.py │ │ │ │ ├── test_wikicode.py │ │ │ │ ├── test_wikilink.py │ │ │ │ └── tokenizer │ │ │ │ ├── arguments.mwtest │ │ │ │ ├── comments.mwtest │ │ │ │ ├── external_links.mwtest │ │ │ │ ├── headings.mwtest │ │ │ │ ├── html_entities.mwtest │ │ │ │ ├── integration.mwtest │ │ │ │ ├── tables.mwtest │ │ │ │ ├── tags.mwtest │ │ │ │ ├── tags_wikimarkup.mwtest │ │ │ │ ├── templates.mwtest │ │ │ │ ├── text.mwtest │ │ │ │ └── wikilinks.mwtest │ │ └── wikiciteparser │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── README.rst │ │ │ ├── requirements.txt │ │ │ ├── setup.py │ │ │ └── wikiciteparser │ │ │ ├── __init__.py │ │ │ ├── cs1.lua │ │ │ ├── en │ │ │ └── __init__.py │ │ │ ├── it │ │ │ └── __init__.py │ │ │ ├── parser.py │ │ │ └── tests.py │ ├── lookup │ │ ├── crossref_eval.ipynb │ │ ├── get_metadata.py │ │ ├── run_apis.py │ │ └── selected_citations_for_evaluation_10000.csv │ ├── minimal_dataset_demo.ipynb │ ├── notebooks │ │ ├── Feature_Data_Analysis.ipynb │ │ ├── Sanity_Check_Citations.ipynb │ │ ├── citation_network_model_3_labels.ipynb │ │ ├── results_predication_lookup.ipynb │ │ └── wild_examples_lookup_journal.ipynb │ ├── requirements.txt │ ├── scripts │ │ ├── __init__.py │ │ ├── const.py │ │ ├── features │ │ │ ├── extract_nlp_features.py │ │ │ ├── filter_contents.py │ │ │ ├── get_content.py │ │ │ ├── get_dataset_features.py │ │ │ ├── get_newspapers_features.py │ │ │ └── get_videos_features.py │ │ ├── get_book_journal_features.py │ │ ├── get_citation_keys.py │ │ ├── get_data.py │ │ ├── get_generic_tmpl.py │ │ ├── get_newspaper_citations.py │ │ ├── get_test_data.py │ │ ├── helpers.py │ │ └── predict_citations.py │ └── tests │ │ ├── __init__.py │ │ ├── data │ │ └── random_pages.csv │ │ │ ├── _SUCCESS │ │ │ ├── part-00000 │ │ │ ├── part-00001 │ │ │ ├── part-00002 │ │ │ ├── part-00003 │ │ │ ├── part-00004 │ │ │ ├── part-00005 │ │ │ ├── part-00006 │ │ │ ├── part-00007 │ │ │ ├── part-00008 │ │ │ ├── part-00009 │ │ │ ├── part-00010 │ │ │ ├── part-00011 │ │ │ ├── part-00012 │ │ │ ├── part-00013 │ │ │ ├── part-00014 │ │ │ ├── part-00015 │ │ │ ├── part-00016 │ │ │ ├── part-00017 │ │ │ ├── part-00018 │ │ │ ├── part-00019 │ │ │ ├── part-00020 │ │ │ ├── part-00021 │ │ │ ├── part-00022 │ │ │ ├── part-00023 │ │ │ ├── part-00024 │ │ │ ├── part-00025 │ │ │ ├── part-00026 │ │ │ ├── part-00027 │ │ │ ├── part-00028 │ │ │ ├── part-00029 │ │ │ ├── part-00030 │ │ │ ├── part-00031 │ │ │ ├── part-00032 │ │ │ ├── part-00033 │ │ │ ├── part-00034 │ │ │ ├── part-00035 │ │ │ ├── part-00036 │ │ │ ├── part-00037 │ │ │ ├── part-00038 │ │ │ ├── part-00039 │ │ │ ├── part-00040 │ │ │ ├── part-00041 │ │ │ ├── part-00042 │ │ │ ├── part-00043 │ │ │ ├── part-00044 │ │ │ ├── part-00045 │ │ │ ├── part-00046 │ │ │ ├── part-00047 │ │ │ ├── part-00048 │ │ │ ├── part-00049 │ │ │ ├── part-00050 │ │ │ ├── part-00051 │ │ │ ├── part-00052 │ │ │ ├── part-00053 │ │ │ ├── part-00054 │ │ │ ├── part-00055 │ │ │ ├── part-00056 │ │ │ ├── part-00057 │ │ │ ├── part-00058 │ │ │ ├── part-00059 │ │ │ ├── part-00060 │ │ │ ├── part-00061 │ │ │ ├── part-00062 │ │ │ ├── part-00063 │ │ │ ├── part-00064 │ │ │ ├── part-00065 │ │ │ ├── part-00066 │ │ │ ├── part-00067 │ │ │ ├── part-00068 │ │ │ ├── part-00069 │ │ │ ├── part-00070 │ │ │ ├── part-00071 │ │ │ ├── part-00072 │ │ │ ├── part-00073 │ │ │ ├── part-00074 │ │ │ ├── part-00075 │ │ │ ├── part-00076 │ │ │ ├── part-00077 │ │ │ ├── part-00078 │ │ │ ├── part-00079 │ │ │ ├── part-00080 │ │ │ ├── part-00081 │ │ │ ├── part-00082 │ │ │ ├── part-00083 │ │ │ ├── part-00084 │ │ │ ├── part-00085 │ │ │ ├── part-00086 │ │ │ ├── part-00087 │ │ │ ├── part-00088 │ │ │ ├── part-00089 │ │ │ ├── part-00090 │ │ │ ├── part-00091 │ │ │ ├── part-00092 │ │ │ ├── part-00093 │ │ │ ├── part-00094 │ │ │ ├── part-00095 │ │ │ ├── part-00096 │ │ │ ├── part-00097 │ │ │ ├── part-00098 │ │ │ ├── part-00099 │ │ │ ├── part-00100 │ │ │ ├── part-00101 │ │ │ ├── part-00102 │ │ │ ├── part-00103 │ │ │ ├── part-00104 │ │ │ ├── part-00105 │ │ │ ├── part-00106 │ │ │ ├── part-00107 │ │ │ ├── part-00108 │ │ │ ├── part-00109 │ │ │ ├── part-00110 │ │ │ ├── part-00111 │ │ │ ├── part-00112 │ │ │ ├── part-00113 │ │ │ ├── part-00114 │ │ │ ├── part-00115 │ │ │ ├── part-00116 │ │ │ ├── part-00117 │ │ │ ├── part-00118 │ │ │ └── part-00119 │ │ ├── test_correct_number_of_references.py │ │ ├── test_get_data.py │ │ └── test_helpers.py └── test │ └── README.md ├── LICENSE.md ├── Pusher ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── config.py ├── entities │ ├── BibliographicWDEntity.py │ ├── EnWikiPageWDEntity.py │ ├── HumanWDEntity.py │ ├── OrganizationWDEntity.py │ ├── WDEntity.py │ └── __init__.py ├── id_extractor.py ├── id_utils │ ├── __init__.py │ ├── isbn_utils.py │ ├── issn_utils.py │ └── orcid_utils.py ├── process_bibliographic_resource.py ├── process_wikipedia_page.py ├── reconciliator.py ├── requirements.txt ├── run_process.py ├── run_process_citations.py ├── test │ ├── README.md │ ├── __init__.py │ ├── test_id_extractor.py │ ├── test_isbn_utils.py │ ├── test_issn_utils.py │ └── test_orcid_utils.py └── uploader.py ├── README.md └── resources ├── WorkflowDiagram.pdf └── workflow.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/.gitignore -------------------------------------------------------------------------------- /Converter/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/.gitattributes -------------------------------------------------------------------------------- /Converter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/.gitignore -------------------------------------------------------------------------------- /Converter/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/LICENSE.md -------------------------------------------------------------------------------- /Converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/README.md -------------------------------------------------------------------------------- /Converter/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/conf/__init__.py -------------------------------------------------------------------------------- /Converter/conf/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/conf/conf.py -------------------------------------------------------------------------------- /Converter/conf/conf_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/conf/conf_citations.py -------------------------------------------------------------------------------- /Converter/meta/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/.gitignore -------------------------------------------------------------------------------- /Converter/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/LICENSE -------------------------------------------------------------------------------- /Converter/meta/LICENSE.md/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/LICENSE.md/LICENSE.md -------------------------------------------------------------------------------- /Converter/meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/README.md -------------------------------------------------------------------------------- /Converter/meta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Converter/meta/crossref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Converter/meta/crossref/crossrefProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/crossref/crossrefProcessing.py -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/CSV/Dumontier.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/CSV/Dumontier.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/CSVe/2020-02-15T17_44_48.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/CSVe/2020-02-15T17_44_48.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_ar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_ar.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_id_br.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_id_br.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_id_ra.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_id_ra.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_re.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_re.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/CSVe/indices/2020-02-15T17_44_48/index_vi.json -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/auxiliary/auxiliary.txt: -------------------------------------------------------------------------------- 1 | Dumontier.csv 2 | -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/ar/2/10000/1000.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/ar/2/10000/1000.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/ar/2/10000/1000/prov/se.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/ar/2/10000/1000/prov/se.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/br/2/10000/1000.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/br/2/10000/1000.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/br/2/10000/1000/prov/se.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/br/2/10000/1000/prov/se.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/ar.txt: -------------------------------------------------------------------------------- 1 | 61 2 | -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/br.txt: -------------------------------------------------------------------------------- 1 | 55 2 | -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_ar/2/10000/1000/prov/se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_ar/2/10000/1000/prov/se.txt -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_br/2/10000/1000/prov/se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_br/2/10000/1000/prov/se.txt -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_id/2/10000/1000/prov/se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_id/2/10000/1000/prov/se.txt -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_ra/2/10000/1000/prov/se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_ra/2/10000/1000/prov/se.txt -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_re/2/10000/1000/prov/se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/counter/id-counter/counter_prov/counter_re/2/10000/1000/prov/se.txt -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/id.txt: -------------------------------------------------------------------------------- 1 | 46 2 | -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/ra.txt: -------------------------------------------------------------------------------- 1 | 36 2 | -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/counter/id-counter/re.txt: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/id/2/10000/1000.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/id/2/10000/1000.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/id/2/10000/1000/prov/se.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/id/2/10000/1000/prov/se.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/ra/2/10000/1000.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/ra/2/10000/1000.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/ra/2/10000/1000/prov/se.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/ra/2/10000/1000/prov/se.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/re/2/10000/1000.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/re/2/10000/1000.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/corpus/re/2/10000/1000/prov/se.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/corpus/re/2/10000/1000/prov/se.ttl -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/doi/anted_doi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/doi/anted_doi.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/doi/preprocess/doi_index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/doi/preprocess/doi_index.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/json/Dumontier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/json/Dumontier.json -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/orcid/oi_orcid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/orcid/oi_orcid.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Dumontier/summaries/0000-0003-4727-9435.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Dumontier/summaries/0000-0003-4727-9435.xml -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/CSV/Peroni.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/CSV/Peroni.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/CSV/Vitali.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/CSV/Vitali.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/auxiliary/auxiliary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/auxiliary/auxiliary.txt -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/doi/valid_doi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/doi/valid_doi.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/doi/wanted_doi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/doi/wanted_doi.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/example.txt -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/json/Peroni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/json/Peroni.json -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/json/Vitali.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/json/Vitali.json -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/orcid/doi_orcid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/orcid/doi_orcid.csv -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/summaries/160/0000-0002-9380-5160.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/summaries/160/0000-0002-9380-5160.xml -------------------------------------------------------------------------------- /Converter/meta/demo/Peroni/summaries/203/0000-0002-7562-5203.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/demo/Peroni/summaries/203/0000-0002-7562-5203.xml -------------------------------------------------------------------------------- /Converter/meta/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/example.csv -------------------------------------------------------------------------------- /Converter/meta/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Converter/meta/lib/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/conf.py -------------------------------------------------------------------------------- /Converter/meta/lib/csvmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/csvmanager.py -------------------------------------------------------------------------------- /Converter/meta/lib/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/finder.py -------------------------------------------------------------------------------- /Converter/meta/lib/id_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Converter/meta/lib/id_manager/doimanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/id_manager/doimanager.py -------------------------------------------------------------------------------- /Converter/meta/lib/id_manager/identifiermanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/id_manager/identifiermanager.py -------------------------------------------------------------------------------- /Converter/meta/lib/id_manager/isbnmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/id_manager/isbnmanager.py -------------------------------------------------------------------------------- /Converter/meta/lib/id_manager/issnmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/id_manager/issnmanager.py -------------------------------------------------------------------------------- /Converter/meta/lib/id_manager/orcidmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/id_manager/orcidmanager.py -------------------------------------------------------------------------------- /Converter/meta/lib/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/lib/reporter.py -------------------------------------------------------------------------------- /Converter/meta/orcid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Converter/meta/orcid/index_orcid_doi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/orcid/index_orcid_doi.py -------------------------------------------------------------------------------- /Converter/meta/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/requirements.txt -------------------------------------------------------------------------------- /Converter/meta/run_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/run_preprocess.py -------------------------------------------------------------------------------- /Converter/meta/run_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/run_process.py -------------------------------------------------------------------------------- /Converter/meta/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Converter/meta/scripts/creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/scripts/creator.py -------------------------------------------------------------------------------- /Converter/meta/scripts/curator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/scripts/curator.py -------------------------------------------------------------------------------- /Converter/meta/tdd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Converter/meta/tdd/creator_TDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/creator_TDD.py -------------------------------------------------------------------------------- /Converter/meta/tdd/curator_TDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/curator_TDD.py -------------------------------------------------------------------------------- /Converter/meta/tdd/curator_counter/ar.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Converter/meta/tdd/curator_counter/br.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Converter/meta/tdd/curator_counter/id.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Converter/meta/tdd/curator_counter/ra.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Converter/meta/tdd/curator_counter/re.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Converter/meta/tdd/new_test_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/new_test_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_01.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_01.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_02.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_02.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_03.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_03.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_04.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_04.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_05.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_05.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_06.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_06.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_07.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_07.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_08.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_08.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_09.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_09.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_10.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_10.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_X.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_X.ttl -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/01/index_ar_01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/01/index_ar_01.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/01/index_id_br_01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/01/index_id_br_01.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/01/index_id_ra_01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/01/index_id_ra_01.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/01/index_re_01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/01/index_re_01.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/01/index_vi_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/01/index_vi_01.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/02/index_ar_02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/02/index_ar_02.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/02/index_id_br_02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/02/index_id_br_02.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/02/index_id_ra_02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/02/index_id_ra_02.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/02/index_re_02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/02/index_re_02.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/02/index_vi_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/02/index_vi_02.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/03/index_ar_03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/03/index_ar_03.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/03/index_id_br_03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/03/index_id_br_03.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/03/index_id_ra_03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/03/index_id_ra_03.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/03/index_re_03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/03/index_re_03.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/03/index_vi_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/03/index_vi_03.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/04/index_ar_04.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/04/index_ar_04.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/04/index_id_br_04.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/04/index_id_br_04.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/04/index_id_ra_04.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/04/index_id_ra_04.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/04/index_re_04.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/04/index_re_04.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/04/index_vi_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/04/index_vi_04.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/05/index_ar_05.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/05/index_ar_05.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/05/index_id_br_05.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/05/index_id_ra_05.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/05/index_re_05.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/05/index_re_05.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/05/index_vi_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/05/index_vi_05.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/06/index_ar_06.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/06/index_ar_06.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/06/index_id_br_06.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/06/index_id_ra_06.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/06/index_id_ra_06.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/06/index_re_06.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/06/index_vi_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/06/index_vi_06.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/07/index_ar_07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/07/index_ar_07.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/07/index_id_br_07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/07/index_id_br_07.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/07/index_id_ra_07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/07/index_id_ra_07.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/07/index_re_07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/07/index_re_07.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/07/index_vi_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/07/index_vi_07.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/08/index_ar_08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/08/index_ar_08.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/08/index_id_br_08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/08/index_id_br_08.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/08/index_id_ra_08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/08/index_id_ra_08.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/08/index_re_08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/08/index_re_08.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/08/index_vi_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/08/index_vi_08.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/09/index_ar_09.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/09/index_ar_09.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/09/index_id_br_09.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/09/index_id_br_09.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/09/index_id_ra_09.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/09/index_id_ra_09.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/09/index_re_09.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/09/index_vi_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/09/index_vi_09.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/10/index_ar_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/10/index_ar_10.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/10/index_id_br_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/10/index_id_br_10.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/10/index_id_ra_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/10/index_id_ra_10.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/10/index_re_10.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/10/index_vi_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/10/index_vi_10.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/11/index_ar_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/11/index_ar_11.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/11/index_id_br_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/11/index_id_br_11.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/11/index_id_ra_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/11/index_id_ra_11.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/11/index_re_11.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/11/index_vi_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/11/index_vi_11.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/12/index_ar_12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/12/index_ar_12.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/12/index_id_br_12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/12/index_id_br_12.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/12/index_id_ra_12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/12/index_id_ra_12.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/12/index_re_12.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/12/index_vi_12.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_ar_13.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_ar_13.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_id_br_13.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_id_br_13.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_id_ra_13.1.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_re_13.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_re_13.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_vi_13.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.1/index_vi_13.1.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_ar_13.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_ar_13.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_id_br_13.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_id_br_13.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_id_ra_13.2.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_re_13.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_re_13.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_vi_13.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.2/index_vi_13.2.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.3/index_ar_13.3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/13.3/index_ar_13.3.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.3/index_id_br_13.3.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "doi:3","0601" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.3/index_id_ra_13.3.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.3/index_re_13.3.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/13.3/index_vi_13.3.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_ar_14.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_ar_14.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_id_br_14.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_id_br_14.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_id_ra_14.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_id_ra_14.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_re_14.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_re_14.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_vi_14.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.1/index_vi_14.1.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_ar_14.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_ar_14.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_id_br_14.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_id_br_14.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_id_ra_14.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_id_ra_14.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_re_14.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_re_14.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_vi_14.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.2/index_vi_14.2.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.3/index_ar_14.3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.3/index_ar_14.3.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.3/index_id_br_14.3.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.3/index_id_ra_14.3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.3/index_id_ra_14.3.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.3/index_re_14.3.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.3/index_vi_14.3.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.4/index_ar_14.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.4/index_ar_14.4.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.4/index_id_br_14.4.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.4/index_id_ra_14.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/14.4/index_id_ra_14.4.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.4/index_re_14.4.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/14.4/index_vi_14.4.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_ar_15.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_ar_15.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_id_br_15.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_id_br_15.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_id_ra_15.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_id_ra_15.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_re_15.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_re_15.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_vi_15.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.1/index_vi_15.1.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_ar_15.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_ar_15.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_id_br_15.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_id_br_15.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_id_ra_15.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_id_ra_15.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_re_15.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_re_15.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_vi_15.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.2/index_vi_15.2.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.3/index_ar_15.3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.3/index_ar_15.3.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.3/index_id_br_15.3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.3/index_id_br_15.3.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.3/index_id_ra_15.3.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "viaf:5","0601" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.3/index_re_15.3.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.3/index_vi_15.3.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_ar_15.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_ar_15.4.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_id_br_15.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_id_br_15.4.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_id_ra_15.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_id_ra_15.4.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_re_15.4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_re_15.4.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_vi_15.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.4/index_vi_15.4.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.5/index_ar_15.5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.5/index_ar_15.5.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.5/index_id_br_15.5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.5/index_id_br_15.5.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.5/index_id_ra_15.5.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "viaf:5","0602" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.5/index_re_15.5.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.5/index_vi_15.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.5/index_vi_15.5.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_ar_15.6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_ar_15.6.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_id_br_15.6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_id_br_15.6.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_id_ra_15.6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_id_ra_15.6.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_re_15.6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_re_15.6.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_vi_15.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.6/index_vi_15.6.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.7/index_ar_15.7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.7/index_ar_15.7.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.7/index_id_br_15.7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.7/index_id_br_15.7.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.7/index_id_ra_15.7.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "viaf:5","0602" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.7/index_re_15.7.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.7/index_vi_15.7.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_ar_15.8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_ar_15.8.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_id_br_15.8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_id_br_15.8.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_id_ra_15.8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_id_ra_15.8.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_re_15.8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_re_15.8.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_vi_15.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/15.8/index_vi_15.8.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.1/index_ar_16.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.1/index_ar_16.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.1/index_id_br_16.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.1/index_id_br_16.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.1/index_id_ra_16.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.1/index_id_ra_16.1.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.1/index_re_16.1.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.1/index_vi_16.1.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_ar_16.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_ar_16.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_id_br_16.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_id_br_16.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_id_ra_16.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_id_ra_16.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_re_16.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_re_16.2.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_vi_16.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.2/index_vi_16.2.json -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.3/index_ar_16.3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/indices/16.3/index_ar_16.3.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.3/index_id_br_16.3.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "doi:007","0601" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.3/index_id_ra_16.3.csv: -------------------------------------------------------------------------------- 1 | "id","meta" 2 | "wikidata:Q2009573","060007" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.3/index_re_16.3.csv: -------------------------------------------------------------------------------- 1 | "br","re" 2 | "","" 3 | -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/indices/16.3/index_vi_16.3.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_01_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_01_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_02_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_02_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_03_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_03_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_04_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_04_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_05_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_05_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_06_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_06_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_07_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_07_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_08_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_08_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_09_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_09_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_10_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_10_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_11_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_11_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_12_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_12_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_13.1_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_13.1_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_13.2_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_13.2_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_13.3_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_13.3_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_14.1_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_14.1_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_14.2_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_14.2_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_14.3_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_14.3_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_14.4_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_14.4_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_15.1_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_15.1_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_15.2_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_15.2_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_15.3_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_15.3_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_15.4_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_15.4_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_15.5_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_15.5_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_15.6_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_15.6_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_15.7_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_15.7_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_15.8_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_15.8_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_16.1_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_16.1_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_16.2_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_16.2_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_16.3_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_16.3_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/testcase_data/testcase_X_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/testcase_data/testcase_X_data.csv -------------------------------------------------------------------------------- /Converter/meta/tdd/testcases/ts/testcase_ts-13.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/tdd/testcases/ts/testcase_ts-13.ttl -------------------------------------------------------------------------------- /Converter/meta/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/meta/timer.py -------------------------------------------------------------------------------- /Converter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/requirements.txt -------------------------------------------------------------------------------- /Converter/run_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/run_process.py -------------------------------------------------------------------------------- /Converter/run_process_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/run_process_citations.py -------------------------------------------------------------------------------- /Converter/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/scripts/__init__.py -------------------------------------------------------------------------------- /Converter/scripts/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/scripts/classifier.py -------------------------------------------------------------------------------- /Converter/scripts/process_bibliographic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/scripts/process_bibliographic.py -------------------------------------------------------------------------------- /Converter/scripts/process_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/scripts/process_citations.py -------------------------------------------------------------------------------- /Converter/scripts/process_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/scripts/process_wiki.py -------------------------------------------------------------------------------- /Converter/scripts/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/scripts/reader.py -------------------------------------------------------------------------------- /Converter/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/test/README.md -------------------------------------------------------------------------------- /Converter/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/test/__init__.py -------------------------------------------------------------------------------- /Converter/test/test_authors_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/test/test_authors_utils.py -------------------------------------------------------------------------------- /Converter/test/test_id_list_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/test/test_id_list_utils.py -------------------------------------------------------------------------------- /Converter/test/test_invisible_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/test/test_invisible_chars.py -------------------------------------------------------------------------------- /Converter/test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/test/test_utils.py -------------------------------------------------------------------------------- /Converter/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/utils/__init__.py -------------------------------------------------------------------------------- /Converter/utils/authors_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/utils/authors_utils.py -------------------------------------------------------------------------------- /Converter/utils/id_list_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/utils/id_list_utils.py -------------------------------------------------------------------------------- /Converter/utils/invisible_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/utils/invisible_chars.py -------------------------------------------------------------------------------- /Converter/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Converter/utils/utils.py -------------------------------------------------------------------------------- /Enricher/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Enricher/.gitattributes -------------------------------------------------------------------------------- /Enricher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Enricher/.gitignore -------------------------------------------------------------------------------- /Enricher/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Enricher/LICENSE.md -------------------------------------------------------------------------------- /Enricher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Enricher/README.md -------------------------------------------------------------------------------- /Enricher/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Enricher/conf.py -------------------------------------------------------------------------------- /Enricher/requirements.txt: -------------------------------------------------------------------------------- 1 | oc_ocdm==6.0.1 2 | rdflib==5.0.0 3 | oc_graphenricher==0.2.3 4 | -------------------------------------------------------------------------------- /Enricher/run_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Enricher/run_process.py -------------------------------------------------------------------------------- /Enricher/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Enricher/test/README.md -------------------------------------------------------------------------------- /Extractor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/LICENSE.md -------------------------------------------------------------------------------- /Extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/README.md -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/.gitattributes -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/.gitignore -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/LICENSE.md -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/README.md -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/.coveragerc -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/.gitignore -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/.travis.yml -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/CHANGELOG -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/LICENSE -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/MANIFEST.in -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/README.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/appveyor.yml -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/Makefile -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/modules.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/mwparserfromhell.nodes.extras.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/mwparserfromhell.nodes.extras.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/mwparserfromhell.nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/mwparserfromhell.nodes.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/mwparserfromhell.parser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/mwparserfromhell.parser.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/mwparserfromhell.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/api/mwparserfromhell.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/changelog.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/conf.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/index.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/integration.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/limitations.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/docs/usage.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/example.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/__init__.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/compat.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/definitions.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/__init__.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/argument.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/comment.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/external_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/external_link.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/extras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/extras/__init__.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/extras/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/extras/attribute.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/extras/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/extras/parameter.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/heading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/heading.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/html_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/html_entity.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/tag.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/template.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/text.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/wikilink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/nodes/wikilink.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/__init__.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/builder.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/contexts.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/avl_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/avl_tree.c -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/avl_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/avl_tree.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/common.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/contexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/contexts.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/definitions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/definitions.c -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/definitions.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tag_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tag_data.c -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tag_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tag_data.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/textbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/textbuffer.c -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/textbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/textbuffer.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tok_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tok_parse.c -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tok_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tok_parse.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tok_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tok_support.c -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tok_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tok_support.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tokenizer.c -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tokenizer.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tokens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tokens.c -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/ctokenizer/tokens.h -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/tokenizer.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/parser/tokens.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/smart_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/smart_list.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/string_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/string_mixin.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/utils.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/wikicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/mwparserfromhell/wikicode.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/scripts/README -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/scripts/memtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/scripts/memtest.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/scripts/release.sh -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/scripts/win_wrapper.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/scripts/win_wrapper.cmd -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/setup.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/MWPFHTestCase.tmlanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/MWPFHTestCase.tmlanguage -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/_test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/_test_tokenizer.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/_test_tree_equality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/_test_tree_equality.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/compat.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_argument.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_attribute.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_builder.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_comment.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_ctokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_ctokenizer.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_docs.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_external_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_external_link.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_heading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_heading.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_html_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_html_entity.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_parameter.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_parser.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_pytokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_pytokenizer.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_roundtripping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_roundtripping.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_smart_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_smart_list.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_string_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_string_mixin.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_tag.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_template.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_text.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_tokens.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_utils.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_wikicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_wikicode.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_wikilink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/test_wikilink.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/arguments.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/arguments.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/comments.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/comments.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/external_links.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/external_links.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/headings.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/headings.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/html_entities.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/html_entities.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/integration.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/integration.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/tables.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/tables.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/tags.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/tags.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/tags_wikimarkup.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/tags_wikimarkup.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/templates.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/templates.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/text.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/text.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/wikilinks.mwtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/mwparserfromhell/tests/tokenizer/wikilinks.mwtest -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/.gitignore: -------------------------------------------------------------------------------- 1 | # Python 2 | *.pyc 3 | .virtualenv 4 | build/ 5 | dist/ 6 | *.egg-info/ 7 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/.travis.yml -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/README.md -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/README.rst -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/requirements.txt: -------------------------------------------------------------------------------- 1 | lupa 2 | mwparserfromhell 3 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/setup.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/cs1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/cs1.lua -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/en/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/en/__init__.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/it/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/it/__init__.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/parser.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/libraries/wikiciteparser/wikiciteparser/tests.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/lookup/crossref_eval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/lookup/crossref_eval.ipynb -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/lookup/get_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/lookup/get_metadata.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/lookup/run_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/lookup/run_apis.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/lookup/selected_citations_for_evaluation_10000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/lookup/selected_citations_for_evaluation_10000.csv -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/minimal_dataset_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/minimal_dataset_demo.ipynb -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/notebooks/Feature_Data_Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/notebooks/Feature_Data_Analysis.ipynb -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/notebooks/Sanity_Check_Citations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/notebooks/Sanity_Check_Citations.ipynb -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/notebooks/citation_network_model_3_labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/notebooks/citation_network_model_3_labels.ipynb -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/notebooks/results_predication_lookup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/notebooks/results_predication_lookup.ipynb -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/notebooks/wild_examples_lookup_journal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/notebooks/wild_examples_lookup_journal.ipynb -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/requirements.txt -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/const.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/features/extract_nlp_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/features/extract_nlp_features.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/features/filter_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/features/filter_contents.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/features/get_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/features/get_content.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/features/get_dataset_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/features/get_dataset_features.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/features/get_newspapers_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/features/get_newspapers_features.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/features/get_videos_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/features/get_videos_features.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/get_book_journal_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/get_book_journal_features.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/get_citation_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/get_citation_keys.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/get_data.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/get_generic_tmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/get_generic_tmpl.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/get_newspaper_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/get_newspaper_citations.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/get_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/get_test_data.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/helpers.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/scripts/predict_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/scripts/predict_citations.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/_SUCCESS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00000: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00001: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00002: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00003: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00004: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00005: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00006: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00007: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00009: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00011: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00012: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00013: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00014: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00015: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00016: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00017: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00018: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00019: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00020: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00021: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00022: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00023 -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00024: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00025: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00026: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00027: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00028: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00029: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00030: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00031: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00032: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00033: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00034: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00035: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00036: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00037: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00038: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00039: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00040: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00041: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00042: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00043: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00044: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00045: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00046: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00047: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00047 -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00048: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00049: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00050: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00051: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00052: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00053: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00054: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00055: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00056: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00057: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00058: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00059: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00060: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00061: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00062: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00063: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00064: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00065: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00066: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00067: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00068: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00069: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00070: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00071: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00071 -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00072: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00073: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00074: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00075: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00076: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00077: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00078: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00079: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00080: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00081: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00082: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00083: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00084: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00085: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00086: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00087: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00088: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00089: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00090: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00091: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00092: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00093: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00094: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00095: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00095 -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00096: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00097: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00098: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00099: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00100: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00101: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00102: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00103: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00104: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00105: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00106: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00107: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00108: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00109: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00110: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00111: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00112: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00113: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00114: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00115: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00116: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00117: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00118: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/tests/data/random_pages.csv/part-00119 -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/test_correct_number_of_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/tests/test_correct_number_of_references.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/test_get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/tests/test_get_data.py -------------------------------------------------------------------------------- /Extractor/cite-classifications-wiki/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/cite-classifications-wiki/tests/test_helpers.py -------------------------------------------------------------------------------- /Extractor/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Extractor/test/README.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Pusher/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/.gitattributes -------------------------------------------------------------------------------- /Pusher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/.gitignore -------------------------------------------------------------------------------- /Pusher/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/LICENSE.md -------------------------------------------------------------------------------- /Pusher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/README.md -------------------------------------------------------------------------------- /Pusher/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/config.py -------------------------------------------------------------------------------- /Pusher/entities/BibliographicWDEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/entities/BibliographicWDEntity.py -------------------------------------------------------------------------------- /Pusher/entities/EnWikiPageWDEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/entities/EnWikiPageWDEntity.py -------------------------------------------------------------------------------- /Pusher/entities/HumanWDEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/entities/HumanWDEntity.py -------------------------------------------------------------------------------- /Pusher/entities/OrganizationWDEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/entities/OrganizationWDEntity.py -------------------------------------------------------------------------------- /Pusher/entities/WDEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/entities/WDEntity.py -------------------------------------------------------------------------------- /Pusher/entities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/entities/__init__.py -------------------------------------------------------------------------------- /Pusher/id_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/id_extractor.py -------------------------------------------------------------------------------- /Pusher/id_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/id_utils/__init__.py -------------------------------------------------------------------------------- /Pusher/id_utils/isbn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/id_utils/isbn_utils.py -------------------------------------------------------------------------------- /Pusher/id_utils/issn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/id_utils/issn_utils.py -------------------------------------------------------------------------------- /Pusher/id_utils/orcid_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/id_utils/orcid_utils.py -------------------------------------------------------------------------------- /Pusher/process_bibliographic_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/process_bibliographic_resource.py -------------------------------------------------------------------------------- /Pusher/process_wikipedia_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/process_wikipedia_page.py -------------------------------------------------------------------------------- /Pusher/reconciliator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/reconciliator.py -------------------------------------------------------------------------------- /Pusher/requirements.txt: -------------------------------------------------------------------------------- 1 | SPARQLWrapper==1.8.5 2 | rdflib==5.0.0 3 | oc-ocdm==6.0.1 4 | -------------------------------------------------------------------------------- /Pusher/run_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/run_process.py -------------------------------------------------------------------------------- /Pusher/run_process_citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/run_process_citations.py -------------------------------------------------------------------------------- /Pusher/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/test/README.md -------------------------------------------------------------------------------- /Pusher/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/test/__init__.py -------------------------------------------------------------------------------- /Pusher/test/test_id_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/test/test_id_extractor.py -------------------------------------------------------------------------------- /Pusher/test/test_isbn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/test/test_isbn_utils.py -------------------------------------------------------------------------------- /Pusher/test/test_issn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/test/test_issn_utils.py -------------------------------------------------------------------------------- /Pusher/test/test_orcid_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/test/test_orcid_utils.py -------------------------------------------------------------------------------- /Pusher/uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/Pusher/uploader.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/README.md -------------------------------------------------------------------------------- /resources/WorkflowDiagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/resources/WorkflowDiagram.pdf -------------------------------------------------------------------------------- /resources/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencitations/wcw/HEAD/resources/workflow.png --------------------------------------------------------------------------------