2024-02-17 10:46:07 +00:00
|
|
|
import wikidata.client
|
|
|
|
|
|
|
|
import datagraph.schemeld
|
|
|
|
import datagraph.wikidata_ext
|
|
|
|
|
|
|
|
import requests_cache
|
|
|
|
|
|
|
|
datagraph.wikidata_ext.REQUEST_SESSION = requests_cache.CachedSession('testing')
|
|
|
|
|
|
|
|
def test_version():
|
|
|
|
assert datagraph.__version__ is not None
|
2023-03-06 22:41:49 +00:00
|
|
|
|
2023-12-12 22:20:58 +00:00
|
|
|
def test_get_triples():
|
2023-03-06 22:41:49 +00:00
|
|
|
client = wikidata.client.Client()
|
|
|
|
|
|
|
|
EQV_PROPERTY = client.get('P1628')
|
|
|
|
schema_root = "https://schema.org/"
|
|
|
|
schema_prop = "image"
|
|
|
|
|
2024-02-17 10:46:07 +00:00
|
|
|
triples_iter = datagraph.wikidata_ext.get_triples(
|
|
|
|
client = client,
|
|
|
|
predicate = EQV_PROPERTY,
|
|
|
|
object = "{}{}".format(schema_root, schema_prop),
|
|
|
|
)
|
|
|
|
assert triples_iter is not None
|