Skip to main content

An easy way to mix together OWL and Jena Fuseki.

Project description

PyFuseki

pyfuseki - An easy way to mix together OWL and Jena Fuseki.

A library that uses Python to connect and manipulate Jena Fuseki, which provides sync and async methods.

By using PyFuseki, you can easily store data from your program into Jena Fuseki, following the ontology model, and then query and parse Jena.


Documentation: https://yubincloud.github.io/pyfuseki/

Source Code: https://github.com/yubinCloud/pyfuseki


Requirements

Python 3.6+

PyFuseki stands on the shoulders of giants:

Installation

$ pip install pyfuseki

---> 100%

Example

  • First, we define the classes of the ontology predesigned:
from pyfuseki.ontology_mapper import rdf_prefix, BaseRdfPrefixEnum
from rdflib import Namespace
from pyfuseki import config

@rdf_prefix
class RdfPrefix(BaseRdfPrefixEnum):
    BrandProject = Namespace(config.COMMON_PREFIX + 'BrandProject')
    Firm = Namespace(config.COMMON_PREFIX + 'Firm')
  • Next, we define the data properties and object properties of the ontology predesigned:
from pyfuseki.ontology_mapper import BaseProperty
from rdflib import Namespace
from pyfuseki import config

yb = Namespace(config.COMMON_PREFIX)

class ObjectProperty(BaseProperty):
    """
    本体中所有Object properties的枚举
    name 为该 property 的 display name, value 为包装了该 property IRI 的 URIRef 对象
    """
    brandAgencyObjectProperty = yb.brandAgencyObjectProperty
    subordinateTo = yb.subordinateTo   # 从属于


class DataProperty(BaseProperty):
    """
    本体中所有Data properties的枚举
    name 为该 property 的 display name, value 为包装了该 property IRI 的 URIRef 对象
    """
    brandAgencyDataProperty = yb.brandAgencyDataProperty
    createTime = yb.createTime
    enName = yb.enName
  • Finally, we can insert data which we collected into Jena Fuseki:
async def insert_test():
    pyfuseki.register.register_common_prefix("http://www.yubin.com/kg/")
    fuseki = AsyncFuseki('http://localhost:3030', 'pyfuseki_db')
    g = Graph()

    """测试整个过程"""
    # RdfUtils.bind_prefixes_to_graph(cls.g, [rp.BrandProject, rp.Firm])  # 绑定前缀
    # 假设获取的数据为rev_data
    rev_data = {
        'band_project': '腾讯',
        '所属企业': '深圳市腾讯计算机系统有限公司',
        '成立日期': '1998-11-11',
        '英文名称': 'QQ'
    }
    # 将rev_data转化成RDF三元组并加入graph中
    tencent = rp.BrandProject.val('腾讯')
    RdfUtils.add_dict_to_graph(g, tencent, {
        op.subordinateTo.value: rp.Firm.val('深圳市腾讯计算机系统有限公司'),
        dp.createTime.value: Literal(rev_data['成立日期'], datatype=XSD.date),
        dp.enName.value: Literal(rev_data['英文名称'], datatype=XSD.string)
    })
    print(g)
    # 将graph插入
    await fuseki.insert_graph(g)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyfuseki-1.1.1.tar.gz (18.2 kB view details)

Uploaded Source

Built Distribution

pyfuseki-1.1.1-py3-none-any.whl (26.2 kB view details)

Uploaded Python 3

File details

Details for the file pyfuseki-1.1.1.tar.gz.

File metadata

  • Download URL: pyfuseki-1.1.1.tar.gz
  • Upload date:
  • Size: 18.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6

File hashes

Hashes for pyfuseki-1.1.1.tar.gz
Algorithm Hash digest
SHA256 1f4136c1f0184d7894ab19c9afbbfe1945646597da92250c5f75efcde7920ce2
MD5 31ffe172cd7a2b49cdd56569fbfcf670
BLAKE2b-256 e46c9da1c36a9bef42e7dbb915ffd3e924acfbd1df74c1687b3fbb520ba41cd5

See more details on using hashes here.

File details

Details for the file pyfuseki-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: pyfuseki-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 26.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6

File hashes

Hashes for pyfuseki-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ff327f7b60d4bd80938324412f76148cb9c92cccf0af3ca9bf00d5a43b51dd7d
MD5 bda5a292692917d77256bf878bc76846
BLAKE2b-256 49152b4530bbdcda24c0e400cb7dda7e746a80707bf3a5227df2aac6fac3e33d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page