File: __init__.py

package info (click to toggle)
python-rdflib-jsonld 0.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,832 kB
  • sloc: python: 1,800; makefile: 132
file content (13 lines) | stat: -rw-r--r-- 334 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
"""
__version__ = "0.6.1"

import warnings

with warnings.catch_warnings():
    warnings.simplefilter("default")
    warnings.warn(
        "The rdflib-jsonld package has been integrated into rdflib as of rdflib==6.0.0.  "
        "Please remove rdflib-jsonld from your project's dependencies.",
        DeprecationWarning,
    )