Skip to main content

Simple py driver for bundlr

Project description

⚠ Note: as of Feb 2023, this library is not being maintained. If you encounter a bug, feel free to report it, but do not expect it to be fixed. If you do a PR where tests pass, we're happy to merge it. And feel free to fork this repo and change it as you wish (including bug fixes).

pybundlr

Simple py driver for bundlr.

Installation

Ensure prerequisites:

  • Linux/MacOS
  • Python 3.8.5+
  • Bundlr CLI: npm install -g @bundlr-network/client

Open a new terminal and:

#Create & activate venv
python -m venv venv
source venv/bin/activate

#main install
pip3 install pybundlr

Using Pybundlr Library

First, a quick example that reads information from a bundlr node. In this case, a balance.

In terminal, go into Python console: python

In Python console:

from pybundlr import pybundlr
eth_address = "0x7BA3d8551A6f2C70a5d47bb448BcF7EF69661822"
bal = pybundlr.balance(eth_address, "matic")
print(f"{eth_address[:4]}'s MATIC balance in bundlr node: {bal} wei")

Exit the Python console for the next step.

Now, for more thorough example. We'll create a file, publish it online, then read it back.

The bundlr node will need funds to pay for storage. So, please ensure that you have a Polygon account that holds some MATIC. Just a few cents' worth should be enough.

In terminal, export the private key of your Polygon account:

export TEST_PRIVATE_KEY1=<your private key>

In terminal, go into Python console: python

In Python console:

import os
import requests
from pybundlr import pybundlr

eth_private_key = os.getenv('REMOTE_TEST_PRIVATE_KEY1')

#create test file
file_name = "/tmp/testfile.txt"
content_in = "test content" + "\n"
with open(file_name, 'a') as f:
    f.write(content_in)

#fund the node, and upload the file
url = pybundlr.fund_and_upload(file_name, "matic", eth_private_key)
print(f"Uploaded file. It's online at: {url}")

#retrieve the result
result = requests.get(url)
content_out = result.text
assert content_out == content_in

This example was on Polygon mainnet, with currency = "matic". Pybundlr also works on Ethereum mainnet ("ethereum"), Arweave ("arweave"), and more.

Development

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

pybundlr-0.1.12.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

pybundlr-0.1.12-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file pybundlr-0.1.12.tar.gz.

File metadata

  • Download URL: pybundlr-0.1.12.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for pybundlr-0.1.12.tar.gz
Algorithm Hash digest
SHA256 b7e0feb91996c32ffef9add0290027e6b3bafbac5942c41a48f6749b1cfc562f
MD5 ce7ea8baf3870035c25e78c7317d0dd9
BLAKE2b-256 7678cfc7b7d4376b337c88677e0b9f8673a3ca07fa5be90b3e8ac1cf9db74eb8

See more details on using hashes here.

File details

Details for the file pybundlr-0.1.12-py3-none-any.whl.

File metadata

  • Download URL: pybundlr-0.1.12-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for pybundlr-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 c8588d91e348acf4c865b2bf7b0210ab5e25672fa36f9ac3878d2e8680aed7f9
MD5 1340311e3efb326c8a0892e994b9a310
BLAKE2b-256 e78cb6a2e2a0c01a022f567f35d7168f94e78903f0ac4c962f956dc887002852

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