pyjelly 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyjelly might be problematic. Click here for more details.
- pyjelly-0.2.1.dist-info/METADATA +100 -0
- {pyjelly-0.2.0.dist-info → pyjelly-0.2.1.dist-info}/RECORD +5 -5
- pyjelly-0.2.0.dist-info/METADATA +0 -43
- {pyjelly-0.2.0.dist-info → pyjelly-0.2.1.dist-info}/WHEEL +0 -0
- {pyjelly-0.2.0.dist-info → pyjelly-0.2.1.dist-info}/entry_points.txt +0 -0
- {pyjelly-0.2.0.dist-info → pyjelly-0.2.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyjelly
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Jelly-RDF implementation for Python
|
|
5
|
+
Project-URL: Homepage, https://w3id.org/jelly/pyjelly
|
|
6
|
+
Project-URL: Documentation, https://w3id.org/jelly/pyjelly
|
|
7
|
+
Project-URL: Repository, https://github.com/Jelly-RDF/pyjelly
|
|
8
|
+
Project-URL: Issues, https://github.com/Jelly-RDF/pyjelly/issues
|
|
9
|
+
Project-URL: Changelog, https://github.com/Jelly-RDF/pyjelly/releases
|
|
10
|
+
Author-email: "NeverBlink et al." <contact@neverblink.eu>
|
|
11
|
+
License-Expression: Apache-2.0
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Keywords: Jelly,Knowledge graph,RDF,Serialization format
|
|
14
|
+
Classifier: Development Status :: 4 - Beta
|
|
15
|
+
Classifier: Environment :: Console
|
|
16
|
+
Classifier: Environment :: Plugins
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: Intended Audience :: Information Technology
|
|
19
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Topic :: Database
|
|
27
|
+
Classifier: Topic :: File Formats
|
|
28
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
|
+
Requires-Python: >=3.9
|
|
31
|
+
Requires-Dist: protobuf>=5.29.3
|
|
32
|
+
Requires-Dist: typing-extensions>=4.12.2
|
|
33
|
+
Provides-Extra: rdflib
|
|
34
|
+
Requires-Dist: rdflib>=7.1.4; extra == 'rdflib'
|
|
35
|
+
Description-Content-Type: text/markdown
|
|
36
|
+
|
|
37
|
+
[](https://w3id.org/jelly/pyjelly) [](https://pypi.org/project/pyjelly/) [](https://pypi.org/project/pyjelly/) [](https://opensource.org/licenses/Apache-2.0) [](https://github.com/Jelly-RDF/pyjelly/actions/workflows/ci.yml) [](https://discord.gg/A8sN5XwVa5)
|
|
38
|
+
|
|
39
|
+
# pyjelly
|
|
40
|
+
|
|
41
|
+
**pyjelly** is a Python implementation of [Jelly](http://w3id.org/jelly), a high-performance binary serialization format and streaming protocol for RDF knowledge graphs.
|
|
42
|
+
|
|
43
|
+
**Documentation, usage guide and more: https://w3id.org/jelly/pyjelly**
|
|
44
|
+
|
|
45
|
+
## Features
|
|
46
|
+
|
|
47
|
+
- **Fast reading and writing** of RDF knowledge graphs in the [Jelly format](http://w3id.org/jelly)
|
|
48
|
+
- **Seamless integration with [rdflib](https://rdflib.readthedocs.io/)**
|
|
49
|
+
- **Stream processing support** for large datasets or streams of many RDF graphs/datasets
|
|
50
|
+
|
|
51
|
+
## Getting started
|
|
52
|
+
|
|
53
|
+
To get started with pyjelly, you can install it via pip:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
pip install pyjelly[rdflib]
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
To write an RDF graph to a Jelly file, you can use the following code:
|
|
60
|
+
|
|
61
|
+
```python
|
|
62
|
+
from rdflib import Graph
|
|
63
|
+
|
|
64
|
+
g = Graph()
|
|
65
|
+
g.parse("http://xmlns.com/foaf/spec/index.rdf")
|
|
66
|
+
g.serialize(destination="foaf.jelly", format="jelly")
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
To read a Jelly file and convert it to an rdflib Graph, you can use:
|
|
70
|
+
|
|
71
|
+
```python
|
|
72
|
+
from rdflib import Graph
|
|
73
|
+
|
|
74
|
+
g = Graph()
|
|
75
|
+
g.parse("foaf.jelly", format="jelly")
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**See more examples, [API reference](https://w3id.org/jelly/pyjelly/dev/api), and more in the [documentation](https://w3id.org/jelly/pyjelly).**
|
|
79
|
+
|
|
80
|
+
## Contributing and support
|
|
81
|
+
|
|
82
|
+
This project is being actively developed – you can stay tuned by [watching this repository](https://docs.github.com/en/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications#subscription-options).
|
|
83
|
+
|
|
84
|
+
You can also join the **[Jelly Discord chat](https://discord.gg/A8sN5XwVa5)** to ask questions about pyjelly and to be up-to-date with the development activities.
|
|
85
|
+
|
|
86
|
+
### Commercial support
|
|
87
|
+
|
|
88
|
+
**[NeverBlink](https://neverblink.eu)** provides commercial support services for Jelly, including implementing custom features, system integrations, implementations for new frameworks, benchmarking, and more.
|
|
89
|
+
|
|
90
|
+
## Contributing
|
|
91
|
+
|
|
92
|
+
If you'd like to contribute, check out our [contributing guidelines](CONTRIBUTING.md).
|
|
93
|
+
|
|
94
|
+
## License
|
|
95
|
+
|
|
96
|
+
The pyjelly library is licensed under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0).
|
|
97
|
+
|
|
98
|
+
----
|
|
99
|
+
|
|
100
|
+
The development of the Jelly protocol, its implementations, and supporting tooling was co-funded by the European Union. **[More details](https://w3id.org/jelly/dev/licensing/projects)**.
|
|
@@ -21,8 +21,8 @@ pyjelly/serialize/flows.py,sha256=mCGJnR7UyuAPn4EArXaBt3llpZ3_iwLq90bQwRTbhpg,39
|
|
|
21
21
|
pyjelly/serialize/ioutils.py,sha256=2_NaadLfHO3jKR1ZV7aK6jQ09sPKBar9iLFHYwourz8,400
|
|
22
22
|
pyjelly/serialize/lookup.py,sha256=h0lYFjdB6CIuN2DzAW6EE4ILJFUuto3paAK6DG1DZYg,4091
|
|
23
23
|
pyjelly/serialize/streams.py,sha256=JiYHZc2YkyWuSspsLBybGimBpTOPZJSrzC8fRVYQ2p8,6117
|
|
24
|
-
pyjelly-0.2.
|
|
25
|
-
pyjelly-0.2.
|
|
26
|
-
pyjelly-0.2.
|
|
27
|
-
pyjelly-0.2.
|
|
28
|
-
pyjelly-0.2.
|
|
24
|
+
pyjelly-0.2.1.dist-info/METADATA,sha256=L-9nN34XpAcL3WHsLg1yZIW40DSif9iw1WC4x-sILrw,4585
|
|
25
|
+
pyjelly-0.2.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
26
|
+
pyjelly-0.2.1.dist-info/entry_points.txt,sha256=kUG0p9zso7HpitdMaQaXEj_KSqgOGsL0Ky9ARbecN1g,339
|
|
27
|
+
pyjelly-0.2.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
28
|
+
pyjelly-0.2.1.dist-info/RECORD,,
|
pyjelly-0.2.0.dist-info/METADATA
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: pyjelly
|
|
3
|
-
Version: 0.2.0
|
|
4
|
-
Summary: Jelly RDF implementation for Python
|
|
5
|
-
Author-email: Bartosz Sławecki <bartosz@neverblink.eu>, Anastasiya Danilenka <anastasiya@neverblink.eu>
|
|
6
|
-
License-File: LICENSE
|
|
7
|
-
Requires-Python: >=3.9
|
|
8
|
-
Requires-Dist: protobuf>=5.29.3
|
|
9
|
-
Requires-Dist: typing-extensions>=4.12.2
|
|
10
|
-
Provides-Extra: rdflib
|
|
11
|
-
Requires-Dist: rdflib>=7.1.4; extra == 'rdflib'
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
|
|
14
|
-
# pyjelly
|
|
15
|
-
|
|
16
|
-
> [!Warning]
|
|
17
|
-
> pyjelly is in early development! The API is unstable and breaking changes may occur in the coming weeks.
|
|
18
|
-
|
|
19
|
-
**pyjelly** is a Python implementation of [Jelly](http://w3id.org/jelly), a high-performance binary serialization format and streaming protocol for RDF knowledge graphs.
|
|
20
|
-
|
|
21
|
-
**Documentation, usage guide and more: https://w3id.org/jelly/pyjelly**
|
|
22
|
-
|
|
23
|
-
## Contributing and support
|
|
24
|
-
|
|
25
|
-
This project is still in early development—you can stay tuned by [watching this repository](https://docs.github.com/en/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications#subscription-options).
|
|
26
|
-
|
|
27
|
-
You can also join the **[Jelly Discord chat](https://discord.gg/A8sN5XwVa5)** to ask questions about pyjelly and to be up-to-date with the development activities.
|
|
28
|
-
|
|
29
|
-
### Commercial support
|
|
30
|
-
|
|
31
|
-
**[NeverBlink](https://neverblink.eu)** provides commercial support services for Jelly, including implementing custom features, system integrations, implementations for new frameworks, benchmarking, and more.
|
|
32
|
-
|
|
33
|
-
## Contributing
|
|
34
|
-
|
|
35
|
-
If you'd like to contribute, check out our [contributing guidelines](CONTRIBUTING.md).
|
|
36
|
-
|
|
37
|
-
## License
|
|
38
|
-
|
|
39
|
-
The pyjelly library is licensed under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0).
|
|
40
|
-
|
|
41
|
-
----
|
|
42
|
-
|
|
43
|
-
The development of the Jelly protocol, its implementations, and supporting tooling was co-funded by the European Union. **[More details](https://w3id.org/jelly/dev/licensing/projects)**.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|