ipfslib-fix


Nameipfslib-fix JSON
Version 0.1.1 PyPI version JSON
download
home_page
SummaryIPFS Library for Python Fix
upload_time2023-09-26 18:44:03
maintainer
docs_urlNone
authorChristian Remboldt
requires_python
license
keywords python ipfs api decentral networking ipns
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# ipfslib - Python IPFS Library
Simple wrapper for IPFS Kubo RPC API in Python

## Installation
    py -m pip install ipfslib

## Connect to API
First you need to create an object of the Connect class. For most usecases you don't need to specify any parameter as it's taking IPFS standard values:

    import ipfslib
    api = ipfslib.Connect()

If your API doesn't run on 127.0.0.1:5001, you can specify your own API endpoint:

    import ipfslib
    api = ipfslib.Connect("127.0.0.1", 5001)

## Interacting with IPFS
There are some tools to interact with the IPFS network. But as this library is still in development some of the functions could change in behaviour any time.

---
### IPFS.add()
Adding files to IPFS is simple.

    import ipfslib
    api = ipfslib.Connect()

    cid = ipfslib.IPFS.add(api, "helloworld.txt")
    print(cid)

This function can take the parameter `mode`. If `'t'` is passed, the file is opened in read mode (r). If `'b'` is passed, then the file is opened in read byte mode (rb).

---
### IPFS.cat()
Getting files from IPFS by the IPFS-Path. IPFS-Paths start with `/ipfs/` or `/ipns/`.

    import ipfslib
    api = ipfslib.Connect()

    path = "/ipfs/QmQrXZ4iXdEKQMiQT6GRg2Wy3vxb9exR25sYdaqoHwWWuR"
    text = ipfslib.IPFS.cat(api, path)

    print(text)

This function can also take a `mode` Parameter. It can either be set to `'t'` for "Text Mode", which returns a string in plain text. The other mode is `'b'`, which returns a string with byte data. This can be useful to retreive imagages from IPFS.

    import ipfslib
    api = ipfslib.Connect()

    path = "/ipfs/bafkreibih73gfbpgkmskacqtlsr4vtp47lmx24skh7jv27bnhsmhtivbeq"
    data = ipfslib.IPFS.cat(api, path, mode='b')

    with open('cat.png', 'wb') as img:
        img.write(data)

---

### IPFS.get()
With this function you can retreive data from an IPFS content identifier (CID).

    import ipfslib
    api = ipfslib.Connect()

    cid = "QmQrXZ4iXdEKQMiQT6GRg2Wy3vxb9exR25sYdaqoHwWWuR"
    text = ipfslib.IPFS.get(api, cid)

    print(text)

This function can also take the `mode` parameter, which can be either set to `'t'` or `'b'`. Read *IPFS.cat()* above to learn more.

---
### IPFS.rem()
Remove files from being provided to IPFS by their CID.

    import ipfslib
    api = ipfslib.Connect()

    cid = "QmQrXZ4iXdEKQMiQT6GRg2Wy3vxb9exR25sYdaqoHwWWuR"
    ipfslib.IPFS.rem(cid)

---
### IPFS.resolve()
Resolve IPNS names to get the CID they're pointing to.

    import ipfslib
    api = ipfslib.Connect()

    ipns_name = "k51qzi5uqu5dk37cdlr3ztr4457txgqmukmiex8ohkzyeeqpwfph2e21sks16s"
    cid = ipfslib.IPFS.resolve(api, ipns_name)

    print(cid)

## Interacting with IPNS Keys
Most of these tools can be used while offline, except of course `ipfslib.Key.publish()`.

---
### Key.generate()
This let's you generate a new IPNS Key.

    import ipfslib
    api = ipfslib.Connect()

    ipns_name = ipfslib.Key.generate(api, "test_key")

    print(ipns_name)

---
### Key.list()
Returns a list with dictionaries for every key. Each entry in the list has two keys (`Name` and `Id`). `Name` is the local name under which the key is stored. `Id` is the public IPNS Name of the key.

    import ipfslib
    api = ipfslib.Connect()

    keys = ipfslib.Key.list(api)

    # Get the IPNS name of the Key with the name "test_key"
    for key in keys:
        if key['Name'] == 'test_key':
            ipns_name = key['Id']
            break
    
    print(ipns_name)

---
### Key.publish()
This let's you link a CID to your IPNS Name.

    import ipfslib
    api = ipfslib.Connect()

    cid = "QmQrXZ4iXdEKQMiQT6GRg2Wy3vxb9exR25sYdaqoHwWWuR"

    ipfslib.Key.publish(api, cid, key_name='test_key')

If no key name is given to publish to, it will automatically publish to the 'self' key, which is your node's main key.

---
### Key.rename()
This let's you rename your IPNS keys locally. 

    import ipfslib
    api = ipfslib.Connect()

    old_name = "test_key"
    new_name = "project_key"

    ipfslib.Key.rename(api, old_name, new_name)

---

## Note
That's actually it for Version 0.1, thank you for considering to use my library. You can check out my blog to find out how I made this.

Blog: https://blog.remboldt.eu/ipfslib/  
GitHub: https://github.com/remboldt/ipfslib/

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ipfslib-fix",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,ipfs,api,decentral,networking,ipns",
    "author": "Christian Remboldt",
    "author_email": "society@csec.eu.org",
    "download_url": "https://files.pythonhosted.org/packages/3f/49/cb743a70ac81cfad8b24dd7fd72ba419c55747ef98b2f7652359bfb2d113/ipfslib-fix-0.1.1.tar.gz",
    "platform": null,
    "description": "\r\n# ipfslib - Python IPFS Library\r\nSimple wrapper for IPFS Kubo RPC API in Python\r\n\r\n## Installation\r\n    py -m pip install ipfslib\r\n\r\n## Connect to API\r\nFirst you need to create an object of the Connect class. For most usecases you don't need to specify any parameter as it's taking IPFS standard values:\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\nIf your API doesn't run on 127.0.0.1:5001, you can specify your own API endpoint:\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect(\"127.0.0.1\", 5001)\r\n\r\n## Interacting with IPFS\r\nThere are some tools to interact with the IPFS network. But as this library is still in development some of the functions could change in behaviour any time.\r\n\r\n---\r\n### IPFS.add()\r\nAdding files to IPFS is simple.\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    cid = ipfslib.IPFS.add(api, \"helloworld.txt\")\r\n    print(cid)\r\n\r\nThis function can take the parameter `mode`. If `'t'` is passed, the file is opened in read mode (r). If `'b'` is passed, then the file is opened in read byte mode (rb).\r\n\r\n---\r\n### IPFS.cat()\r\nGetting files from IPFS by the IPFS-Path. IPFS-Paths start with `/ipfs/` or `/ipns/`.\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    path = \"/ipfs/QmQrXZ4iXdEKQMiQT6GRg2Wy3vxb9exR25sYdaqoHwWWuR\"\r\n    text = ipfslib.IPFS.cat(api, path)\r\n\r\n    print(text)\r\n\r\nThis function can also take a `mode` Parameter. It can either be set to `'t'` for \"Text Mode\", which returns a string in plain text. The other mode is `'b'`, which returns a string with byte data. This can be useful to retreive imagages from IPFS.\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    path = \"/ipfs/bafkreibih73gfbpgkmskacqtlsr4vtp47lmx24skh7jv27bnhsmhtivbeq\"\r\n    data = ipfslib.IPFS.cat(api, path, mode='b')\r\n\r\n    with open('cat.png', 'wb') as img:\r\n        img.write(data)\r\n\r\n---\r\n\r\n### IPFS.get()\r\nWith this function you can retreive data from an IPFS content identifier (CID).\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    cid = \"QmQrXZ4iXdEKQMiQT6GRg2Wy3vxb9exR25sYdaqoHwWWuR\"\r\n    text = ipfslib.IPFS.get(api, cid)\r\n\r\n    print(text)\r\n\r\nThis function can also take the `mode` parameter, which can be either set to `'t'` or `'b'`. Read *IPFS.cat()* above to learn more.\r\n\r\n---\r\n### IPFS.rem()\r\nRemove files from being provided to IPFS by their CID.\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    cid = \"QmQrXZ4iXdEKQMiQT6GRg2Wy3vxb9exR25sYdaqoHwWWuR\"\r\n    ipfslib.IPFS.rem(cid)\r\n\r\n---\r\n### IPFS.resolve()\r\nResolve IPNS names to get the CID they're pointing to.\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    ipns_name = \"k51qzi5uqu5dk37cdlr3ztr4457txgqmukmiex8ohkzyeeqpwfph2e21sks16s\"\r\n    cid = ipfslib.IPFS.resolve(api, ipns_name)\r\n\r\n    print(cid)\r\n\r\n## Interacting with IPNS Keys\r\nMost of these tools can be used while offline, except of course `ipfslib.Key.publish()`.\r\n\r\n---\r\n### Key.generate()\r\nThis let's you generate a new IPNS Key.\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    ipns_name = ipfslib.Key.generate(api, \"test_key\")\r\n\r\n    print(ipns_name)\r\n\r\n---\r\n### Key.list()\r\nReturns a list with dictionaries for every key. Each entry in the list has two keys (`Name` and `Id`). `Name` is the local name under which the key is stored. `Id` is the public IPNS Name of the key.\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    keys = ipfslib.Key.list(api)\r\n\r\n    # Get the IPNS name of the Key with the name \"test_key\"\r\n    for key in keys:\r\n        if key['Name'] == 'test_key':\r\n            ipns_name = key['Id']\r\n            break\r\n    \r\n    print(ipns_name)\r\n\r\n---\r\n### Key.publish()\r\nThis let's you link a CID to your IPNS Name.\r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    cid = \"QmQrXZ4iXdEKQMiQT6GRg2Wy3vxb9exR25sYdaqoHwWWuR\"\r\n\r\n    ipfslib.Key.publish(api, cid, key_name='test_key')\r\n\r\nIf no key name is given to publish to, it will automatically publish to the 'self' key, which is your node's main key.\r\n\r\n---\r\n### Key.rename()\r\nThis let's you rename your IPNS keys locally. \r\n\r\n    import ipfslib\r\n    api = ipfslib.Connect()\r\n\r\n    old_name = \"test_key\"\r\n    new_name = \"project_key\"\r\n\r\n    ipfslib.Key.rename(api, old_name, new_name)\r\n\r\n---\r\n\r\n## Note\r\nThat's actually it for Version 0.1, thank you for considering to use my library. You can check out my blog to find out how I made this.\r\n\r\nBlog: https://blog.remboldt.eu/ipfslib/  \r\nGitHub: https://github.com/remboldt/ipfslib/\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "IPFS Library for Python Fix",
    "version": "0.1.1",
    "project_urls": null,
    "split_keywords": [
        "python",
        "ipfs",
        "api",
        "decentral",
        "networking",
        "ipns"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f49cb743a70ac81cfad8b24dd7fd72ba419c55747ef98b2f7652359bfb2d113",
                "md5": "101c51d152bc9367b0d6e196861e70cd",
                "sha256": "4b09ecde28aa6c9b831ed31d56d37706f5066a642dcc41a3c68e990594527005"
            },
            "downloads": -1,
            "filename": "ipfslib-fix-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "101c51d152bc9367b0d6e196861e70cd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6909,
            "upload_time": "2023-09-26T18:44:03",
            "upload_time_iso_8601": "2023-09-26T18:44:03.413058Z",
            "url": "https://files.pythonhosted.org/packages/3f/49/cb743a70ac81cfad8b24dd7fd72ba419c55747ef98b2f7652359bfb2d113/ipfslib-fix-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-26 18:44:03",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ipfslib-fix"
}
        
Elapsed time: 0.13435s