Skip to main content

Python client for FindWAtt's API

Project description

findwatt-python

Python client for FindWAtt's API

Installation

pip install findwatt

Usage

import findwatt

api_key = 'my-api-key'
client = findwatt.Client(api_key)

Uploading a file to a new Catalog

p = '/path/to/file.xlsx'
upload = client.upload_file(p, catalog_name='My New Catalog')

Uploading a file to an existing Catalog

p = '/path/to/file.xlsx'
upload = client.upload_file(p, catalog_id='my-existing-catalog-id')

Listing and searching your Catalogs

my_catalogs = client.catalogs.search()
my_filtered_catalogs = client.catalogs.search(name="Dummy Catalog")

Fetching a particular Catalog

my_catalog = client.catalogs.get('dummy-catalog')

Fetching a particular Dataset

my_dataset = client.datasets.get('my-dataset')

Advanced Usage

findwatt.Client takes an optional api_url parameter that can be set to use a mock or staging API

import findwatt

api_key = 'my-api-key'
client = findwatt.Client(api_key, api_url='http://localhost:3000/')

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

findwatt-1.0.2.tar.gz (6.4 kB view hashes)

Uploaded Source

Built Distributions

findwatt-1.0.2-py3.6.egg (24.5 kB view hashes)

Uploaded Source

findwatt-1.0.2-py3-none-any.whl (9.9 kB view hashes)

Uploaded Python 3

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