Skip to main content

Python client for Nanopublications

Project description

nanopub Tests Coverage Status PyPI version CII Best Practices fair-software.eu DOI semantic-release: angular

nanopub

The nanopub library provides a high-level, user-friendly Python interface for searching, publishing and retracting nanopublications.

Nanopublications are a formalized and machine-readable way of communicating the smallest possible units of publishable information. See the documentation for more information.

Documentation

Checkout the user documentation 📖

Setup

Install using pip:

pip install nanopub

To publish to the nanopublication network you need to set up your profile. This allows the nanopublication services to identify you. Run the following command in the terminal:

np setup

This will ask you a few questions, then it will use that information to add and store RSA keys to sign your nanopublications with, (optionally) publish a nanopublication with your name and ORCID iD to declare that you are using these RSA keys, and store your ORCID iD to automatically add as author to the provenance of any nanopublication you will publish using this library.

Quick Start

Publishing nanopublications

from rdflib import Graph
from nanopub import Nanopub, NanopubConf, load_profile

# 1. Create the config
np_conf = NanopubConf(
    use_test_server=True,
    profile=load_profile(),  # Loads the user profile that was created with `np setup`
    add_prov_generated_time=True,
    attribute_publication_to_profile=True,
)

# 2. Construct a desired assertion (a graph of RDF triples) using rdflib
my_assertion = Graph()
my_assertion.add((
    rdflib.URIRef('www.example.org/timbernerslee'),
    rdflib.RDF.type,
    rdflib.FOAF.Person
))

# 2. Make a Nanopub object with this assertion
np = Nanopub(
    conf=np_conf,
    assertion=my_assertion
)

# 3. Publish the Nanopub object
np.publish()
print(np)

Searching for nanopublications

from nanopub import NanopubClient

# Search for all nanopublications containing the text 'fair'
client = NanopubClient()
results = client.find_nanopubs_with_text('fair')
print(results)

Fetching nanopublications and inspecting them

# Fetch the nanopublication at the specified URI
publication = client.fetch('http://purl.org/np/RApJG4fwj0szOMBMiYGmYvd5MCtRle6VbwkMJUb1SxxDM')

# Print the RDF contents of the nanopublication
print(publication)

# Iterate through all triples in the assertion graph
for s, p, o in publication.assertion:
    print(s, p, o)

Development

See the development page on the documentation website.

Tests

To run tests:

Install dependencies (if not already installed):

uv sync

Run tests:

uv run pytest

Test coverage

Run the tests with coverage tracking:

uv run pytest --cov

View a terminal summary:

uv run coverage report

Or generate a detailed HTML report

uv run coverage html

License

nanopub is free software under the Apache License. See LICENSE.

Copyright

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

nanopub-2.2.0.tar.gz (998.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nanopub-2.2.0-py3-none-any.whl (57.9 kB view details)

Uploaded Python 3

File details

Details for the file nanopub-2.2.0.tar.gz.

File metadata

  • Download URL: nanopub-2.2.0.tar.gz
  • Upload date:
  • Size: 998.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nanopub-2.2.0.tar.gz
Algorithm Hash digest
SHA256 3ec25574d766deed65c849562bb21b23f48fc55463119ebffe41d324eae6d188
MD5 91bb188c8c72bde5c631134db953dad3
BLAKE2b-256 be7d5613f821870324f557eac975845fb6d6a940aa98a280086afaf43cef6c62

See more details on using hashes here.

File details

Details for the file nanopub-2.2.0-py3-none-any.whl.

File metadata

  • Download URL: nanopub-2.2.0-py3-none-any.whl
  • Upload date:
  • Size: 57.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nanopub-2.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cb0e89678d732076fe77f01acee790a3a1d6b3b4941e7d67cbb3390d1be74a90
MD5 f45a76479740dc9b9ed5564f4b2ecf2a
BLAKE2b-256 078e149c799a8b9550bd4d0056d7df9eb722deb5885172d518ed1ad9dc2ff0cd

See more details on using hashes here.

Supported by

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