https://github.com/acdh-oeaw/acdh-id-reconciler
python package to reconcile GND and GeoNames IDs via WikiData
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 2 committers (50.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (5.9%) to scientific vocabulary
Repository
python package to reconcile GND and GeoNames IDs via WikiData
Basic Info
Statistics
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
- Releases: 9
Metadata Files
README.md
acdh-id-reconciler
python package to reconcile GND and GeoNames IDs via WikiData.
install
pip install acdh-id-reconciler
use
from GND to WikiData and GeoNames ID
```python from acdhidreconciler import gndtogeonames
test = "https://d-nb.info/gnd/4010858-2" results = gndtogeonames(test) print(results)
{'wikidata': 'http://www.wikidata.org/entity/Q261664', 'gnd': '4010858-2', 'geonames': '2781124'}
```
from GND to WikiData
```python from acdhidreconciler import gndtowikidata
test = "https://d-nb.info/gnd/4074255-6" results = gndtowikidata(test) print(results)
{'wikidata': 'http://www.wikidata.org/entity/Q41329', 'gnd': '4074255-6'}
```
from GND to WikiData plus Custom-ID
```python from acdhidreconciler import gndtowikidata_custom
test = "https://d-nb.info/gnd/118634712" custom = "P6194" # https://www.wikidata.org/wiki/Property:P6194 results = gndtowikidata_custom(test, custom) print(results)
{'wikidata': 'http://www.wikidata.org/entity/Q215747', 'gnd': '118634712', 'custom': 'W/WolfHugo1860_1903'}
```
from Geonames to WikiData
```python from acdhidreconciler import geonamestowikidata
test = "https://www.geonames.org/2761369" results = geonamestowikidata(test) print(results)
{'wikidata': 'http://www.wikidata.org/entity/Q1741', 'geonames': '2761369'}
```
from Geonames to GND
```python from acdhidreconciler import geonamestognd
test = "https://www.geonames.org/2761369" results = geonamestognd(test) print(results)
{'wikidata': 'http://www.wikidata.org/entity/Q1741', 'geonames': '2761369', 'gnd': '4066009-6'}
```
from Wikidata to Wikipedia
```python from acdhidreconciler import wikidatatowikipedia
test = "https://www.wikidata.org/wiki/Q1186567/" result = wikidatatowikipedia(test) print(result)
'https://de.wikipedia.org/wiki/Alexandrinski-Theater'
default language is set to german, can be changed by settings param result e.g. wiki_lang='enwiki'
result = wikidatatowikipedia(test, wiki_lang='enwiki') print(result)
'https://en.wikipedia.org/wiki/Alexandrinsky_Theatre'
Owner
- Name: Austrian Centre for Digital Humanities & Cultural Heritage
- Login: acdh-oeaw
- Kind: organization
- Email: acdh@oeaw.ac.at
- Location: Vienna, Austria
- Website: https://www.oeaw.ac.at/acdh
- Repositories: 476
- Profile: https://github.com/acdh-oeaw
GitHub Events
Total
- Issues event: 1
Last Year
- Issues event: 1
Committers
Last synced: about 1 year ago
Top Committers
| Name | Commits | |
|---|---|---|
| csae8092 | p****r@o****t | 11 |
| Daniel_Stoxreiter | d****r@o****e | 8 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 12 months ago
All Time
- Total issues: 7
- Total pull requests: 6
- Average time to close issues: 2 months
- Average time to close pull requests: 42 minutes
- Total issue authors: 2
- Total pull request authors: 2
- Average comments per issue: 0.14
- Average comments per pull request: 0.5
- Merged pull requests: 6
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- csae8092 (5)
- linxOD (2)
Pull Request Authors
- linxOD (3)
- csae8092 (3)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 508 last-month
- Total dependent packages: 1
- Total dependent repositories: 1
- Total versions: 8
- Total maintainers: 2
pypi.org: acdh-id-reconciler
Python package to reconcile GND, GeoNames IDs via WikiData
- Homepage: https://github.com/acdh-oeaw/acdh-id-reconciler
- Documentation: https://acdh-id-reconciler.readthedocs.io/
- License: MIT license
-
Latest release: 0.7.1
published over 2 years ago
Rankings
Maintainers (2)
Dependencies
- coverage >=6.4.4,<7 development
- flake8 >=5.0.4,<6 development
- pytest >=7.1.3,<8 development
- wheel * development
- actions/checkout v2 composite
- actions/setup-python v1 composite
- py-actions/flake8 v1 composite
- actions/checkout v2 composite
- actions/setup-python v2 composite
- actions/checkout v2 composite
- actions/setup-python v1 composite
- codecov/codecov-action v3 composite