You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check out [the client API reference](https://ipfs.io/ipns/QmZ86ow1byeyhNRJEatWxGPJKcnQKG7s51MtbHdxxUddTH/Software/Python/ipfsapi/) for the full command reference.
11
+
Check out [the HTTP Client reference](https://ipfs.io/ipns/QmZ86ow1byeyhNRJEatWxGPJKcnQKG7s51MtbHdxxUddTH/Software/Python/ipfshttpclient/) for the full command reference.
12
12
13
-
**Important:** The `py-ipfs-api` PIP package and Python module have both been renamed to `ipfsapi` (no dash, lower-case `a`).
13
+
**Important:** The `ipfsapi` PIP package and Python module have both been renamed to `ipfshttpclient`
14
14
The legacy `ipfs-api`/`ipfsApi` package/module will only work for IPFS 0.3.x and Python 2 and is deprecated. [Please upgrade](#important-changes-from-ipfsapi-02x)!
15
15
16
16
**Note:** This library constantly has to change to stay compatible with the IPFS HTTP API.
@@ -35,27 +35,27 @@ You may experience compatibility issues when attempting to use it with other ver
35
35
Install with pip:
36
36
37
37
```sh
38
-
pip install ipfsapi
38
+
pip install ipfshttpclient
39
39
```
40
40
41
41
## Usage
42
42
43
43
Basic use-case (requires a running instance of IPFS daemon):
@@ -105,9 +105,9 @@ This module also contains some helper functions for adding strings and JSON to I
105
105
106
106
```py
107
107
>>> lst = [1, 77, 'lol']
108
-
>>>client.add_json(lst)
108
+
>>>http_client.add_json(lst)
109
109
'QmQ4R5cCUYBWiJpNL7mFe4LDrwD6qBr5Re17BoRAY9VNpd'
110
-
>>>client.get_json(_)
110
+
>>>http_client.get_json(_)
111
111
[1, 77, 'lol']
112
112
```
113
113
@@ -137,7 +137,7 @@ The `ipfs` [command-line Client documentation](https://ipfs.io/docs/commands/) m
137
137
138
138
## Featured Projects
139
139
140
-
Projects that currently use py-ipfs-api. If your project isn't here, feel free to submit a PR to add it!
140
+
Projects that currently use py-ipfs-http-client. If your project isn't here, feel free to submit a PR to add it!
141
141
142
142
- [git-remote-ipfs](https://github.com/larsks/git-remote-ipfs) allows users to push and pull git repositories from the IPFS network.
143
143
- [InterPlanetary Wayback](https://github.com/oduwsdl/ipwb) interfaces web archive ([WARC](https://www.iso.org/standard/44717.html)) files for distributed indexing and replay using IPFS.
@@ -151,7 +151,7 @@ or if you just want to discuss IPFS and python.
151
151
152
152
### Bug reports
153
153
154
-
You can submit bug reports using the [GitHub issue tracker](https://github.com/ipfs/python-ipfs-api/issues).
154
+
You can submit bug reports using the [GitHub issue tracker](https://github.com/ipfs/py-ipfs-http-client/issues).
0 commit comments