Python connector to download information collected in SmartCitizen API
Project description
Smart Citizen Connector
This is a connector written in python
to get and post data from the Smart Citizen API. It can be used in conjunction with other scripts such as scdata.
Installation
Simply do:
pip install smartcitizen-connector
Development
Or clone the repo and install in editable mode:
git clone git@github.com:fablabbcn/smartcitizen-connector.git
cd smartcitizen-connector
pip install -e .
Usage
Device (create and get data - blazingly fast!):
from smartcitizen_connector import SCDevice
import asyncio
d = SCDevice(16549)
print (d.json.name)
print (d.json.owner)
await d.get_data(freq = '1Min') # returns pandas dataframe
print (d.data)
Search (see docs)
from smartcitizen_connector import search_by_query
# Users whose username contains "osc"
search_by_query(endpoint = 'users', key="username", search_matcher="cont", value="osc")
# Devices in which
search_by_query(endpoint = 'devices', key="name", search_matcher="cont", value="air")
# Devices created after (date greater than) "2023-08-11"
search_by_query(endpoint = 'devices', key="created_at", search_matcher="gt", value="2023-08-11")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for smartcitizen_connector-1.0.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4afecd59c489f3bcd759fc5873d607dcdf719a8de607f6f7d012da522029c36c |
|
MD5 | fd050c4ec8e674a74fe823095de55a22 |
|
BLAKE2b-256 | 689f42908a036fbdea72a7de9e1502d3ae942d3df638e1a7d652fa7d65bbccd1 |
Close
Hashes for smartcitizen_connector-1.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a31a8823c71ec5bda6c6e7582b450b15c2721abc1347e98a7b9b5469e36b748 |
|
MD5 | 77b6f4869783b9b8867c988ece51b67c |
|
BLAKE2b-256 | 23d0f3ebdffb6499f807ca2bad53732346c1da4575633e4eaad923df46183ce2 |