Metadata-Version: 2.1
Name: dweather-client
Version: 1.4.1
Summary: Python client for interacting with weather data on IPFS.
Home-page: https://github.com/Arbol-Project/dWeather-Python-Client.git
Author: Arbol
Author-email: info@arbolmarket.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# dWeather-Python-Client

## Install Go-IPFS version 0.6.0

### Download
See Assets list at the bottom of this page: https://github.com/ipfs/go-ipfs/releases/tag/v0.6.0
Download the build appropriate for your machine, or just Download the source tar if you're not sure.

### Install

Unzip the file that you downloaded.
    tar xvfz {filename}.tar.gz

Move the binary into your path. sudo may be required for this.
    mv go-ipfs/ipfs /usr/local/bin/ipfs

Initialize a ~/.ipfs directory. This is where your files and config will be saved.
    ipfs init

Remove default peers for performance.
    ipfs bootstrap rm --all

Add the dWeather server as a peer
    ipfs bootstrap add  "/ip4/198.211.104.50/tcp/4001/p2p/QmWsAFSDajELyneR7LkMsgfaRk2ib1y3SEU7nQuXSNPsQV"

Start the IPFS daemon. You will need to have the daemon running to use some functionality of the client.
    ipfs daemon

In a new window, confirm that you can pull content.
    ipfs cat QmVsy2HZCi39ePJRpNqXEJvHgRMqjcyu1FLqgiFkPTMknq/USW00014704.csv.gz

Confirm that the dWeather server is a peer.
    ipfs swarm peers

## Install the Python dWeather Client.

Create an isolated python installation and install the dependencies.
    python3 -m venv .
    bin/pip3 install -r requirements.txt

Run the tests, if you want (takes a while).
    bin/python3 -m pytest -s --log-cli-level=20 dweather_client/tests

## Local data

Certain dweather functions will try to save query results locally to disk for faster performance on load. This can be overridden by setting pin=False in these function calls.

Load the ipfs UI to browse what files are stored locally.

Paste the following into a web browser. http://127.0.0.1:5001/webui

Navigate to Files, then click "pins." Content can be unpinned via the UI.

If you just want to remove everything, delete ~/.ipfs and rerun the installation from ipfs init.

    rm -rf ~/.ipfs

## Further documentation

See `tests` directory for example usage. Documented examples of usage should appear in a docs repository or in product-dev-notebook.


