├── .gitignore ├── LICENSE.md └── LICENSE.md ├── OCtoWikidata.py ├── OCtoWikidataNoNewItems.py ├── README.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /wikidata_doi.tsv 2 | -------------------------------------------------------------------------------- /LICENSE.md/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csisc/OpenCitations-Bot/HEAD/LICENSE.md/LICENSE.md -------------------------------------------------------------------------------- /OCtoWikidata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csisc/OpenCitations-Bot/HEAD/OCtoWikidata.py -------------------------------------------------------------------------------- /OCtoWikidataNoNewItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csisc/OpenCitations-Bot/HEAD/OCtoWikidataNoNewItems.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csisc/OpenCitations-Bot/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.26.0 2 | wikibaseintegrator==0.11.0 3 | datetime==4.3 4 | --------------------------------------------------------------------------------