painless access to the netatmo weather api
Project description
This package is unfortunately currently broken due to changes in the [authentication](https://dev.netatmo.com/apidocumentation/oauth#authorization-code). Apparently, a program accessing the API now needs human interaction to authenticate, which is not implemented (yet) in patatmo. I don’t have time to do this, contributions welcome.
patatmo Python package
This package provides easy access to the Netatmo API. It is painless as it completely and intelligently hides the OAuth2 authentication from you.
Disclaimer
This software to access the Netatmo Weather API emerged as part of thesis and also out of private interest. The author is not in any way affiliated with Netatmo (SAS).
Capabilities
Currently, the weather API’s methods Getpublicdata, Getstationsdata and Getmeasure are implemented.
Example usage
An example of obtaining all public station’s data in the region of Hamburg/Germany:
From the command-line
The smart way is to set up a configuration file ~/.patatmo/settings.conf:
[account]
username=user.email@internet.com
password=5uP3rP45sW0rD
client_id=03012823b3fd2e420fbf980b
client_secret=YXNkZmFzZGYgamFzamYgbGFzIG
Then on the command-line:
netatmo-getpublicdata \
--lat_ne 53.7499 \
--lat_sw 53.3809 \
--lon_ne 10.3471 \
--lon_sw 9.7085
As one-liner:
netatmo-getpublicdata \
--user "user.email@internet.com" \
--password "5uP3rP45sW0rD" \
--id "5uP3rP45sW0rD" \
--secret "YXNkZmFzZGYgamFzamYgbGFzIG" \
--lat_ne 53.7499 \
--lat_sw 53.3809 \
--lon_ne 10.3471 \
--lon_sw 9.7085
With environment variables (which you could also set elsewhere, e.g. in your .bashrc):
export NETATMO_USERNAME="user.email@internet.com"
export NETATMO_PASSWORD="5uP3rP45sW0rD"
export NETATMO_CLIENT_ID="03012823b3fd2e420fbf980b"
export NETATMO_CLIENT_SECRET="YXNkZmFzZGYgamFzamYgbGFzIG"
netatmo-getpublicdata \
--lat_ne 53.7499 \
--lat_sw 53.3809 \
--lon_ne 10.3471 \
--lon_sw 9.7085
From Python
An example of obtaining all public station’s data in the region of Hamburg/Germany:
import patatmo
# your netatmo connect developer credentials
credentials = {
"password":"5uP3rP45sW0rD",
"username":"user.email@internet.com",
"client_id": "03012823b3fd2e420fbf980b",
"client_secret":"YXNkZmFzZGYgamFzamYgbGFzIG"
}
# configure the authentication
authentication = patatmo.api.authentication.Authentication(
credentials=credentials,
tmpfile = "temp_auth.json"
)
# providing a path to a tmpfile is optionally.
# If you do so, the tokens are stored there for later reuse,
# e.g. next time you invoke this script.
# This saves time because no new tokens have to be requested.
# New tokens are then only requested if the old ones expire.
# create a api client
client = patatmo.api.client.NetatmoClient(authentication)
# lat/lon outline of Hamburg/Germany
hamburg_region = {
"lat_ne" : 53.7499,
"lat_sw" : 53.3809,
"lon_ne" : 10.3471,
"lon_sw" : 9.7085,
}
# issue the API request
hamburg = client.Getpublicdata(region = hamburg_region)
# convert the response to a pandas.DataFrame
print(hamburg.dataframe.to_csv())
,index,altitude,humidity,id,latitude,longitude,pressure,temperature,time_humidity,time_pressure,time_temperature,timezone
0,0,30.0,67.0,70:ee:50:12:9a:b8,53.51695,10.15599,1015.4,22.5,2017-08-26 16:36:19,2017-08-26 16:36:36,2017-08-26 16:36:19,Europe/Berlin
1,1,23.0,65.0,70:ee:50:03:da:4c,53.523361337741,10.16719281615,1013.2,22.8,2017-08-26 16:35:33,2017-08-26 16:36:11,2017-08-26 16:35:33,Europe/Berlin
2,2,25.0,80.0,70:ee:50:02:95:92,53.517903,10.165769,1016.9,21.5,2017-08-26 16:38:17,2017-08-26 16:38:23,2017-08-26 16:38:17,Europe/Berlin
3,3,,,70:ee:50:17:bd:96,53.530789,10.127101,1010.1,,,2017-08-26 16:35:01,,Europe/Berlin
4,4,15.0,83.0,70:ee:50:03:bc:2c,53.530948,10.134062,1013.5,20.6,2017-08-26 16:35:07,2017-08-26 16:35:25,2017-08-26 16:35:07,Europe/Berlin
5,5,29.0,72.0,70:ee:50:03:72:28,53.545417580965,10.160120337925,1013.7,22.5,2017-08-26 16:42:05,2017-08-26 16:42:40,2017-08-26 16:42:05,Europe/Berlin
6,6,24.0,70.0,70:ee:50:14:42:1c,53.5698669,10.1554532,1011.4,23.2,2017-08-26 16:33:11,2017-08-26 16:33:55,2017-08-26 16:33:11,Europe/Berlin
7,7,31.0,69.0,70:ee:50:06:92:40,53.57426932987,10.161323698426,1013.7,22.3,2017-08-26 16:35:02,2017-08-26 16:35:30,2017-08-26 16:35:02,Europe/Berlin
8,8,26.0,68.0,70:ee:50:01:3c:f6,53.5811,10.1485,1016.2,23.2,2017-08-26 16:40:57,2017-08-26 16:41:21,2017-08-26 16:40:57,Europe/Berlin
Install
This package is on PyPi. To install patatmo, run
pip install --user patatmo
Documentation
You can find detailed documentation of this package here on on Gitlab.
Development
The following might only be interesting for developers
Local installation
Install this module from the repository root via pip
:
# local user library under ~/.local
pip3 install --user .
# in "editable" mode
pip3 install --user -e .
Testing
To be able to run all tests, you need to specify valid credentials and a
device and model id of your test station. You can do so either in the file
tests/USER_DATA.json (e.g. copy the example file cp
tests/USER_DATA.json.example tests/USER_DATA.json
and adjust it) or via the
environment variables
NETATMO_CLIENT_ID
NETATMO_CLIENT_SECRET
NETATMO_USERNAME
NETATMO_PASSWORD
NETATMO_DEVICE_ID
NETATMO_MODULE_ID
Otherwise, only the possible tests are run.
Then:
make test to run all tests directly
make testverbose to run all tests directly with verbose output
make setup-test to run all tests via the ./setup.py test mechanism
make coverage to get a test coverage
Versioning
make increase-patch to increase the patch version number
make increase-minor to increase the minor version number
make increase-major to increase the major version number
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
File details
Details for the file patatmo-0.2.16.tar.gz
.
File metadata
- Download URL: patatmo-0.2.16.tar.gz
- Upload date:
- Size: 34.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/6.1.52
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63fda64151faf86f8e75009eeaa59d35e9e2fe78d2ba83f5251a181c44eb9aed |
|
MD5 | f0df0366f51a2fe2d391fbb8ac4e4413 |
|
BLAKE2b-256 | 085e80305791ec4b281502adc7dcfd3ae73ae221ce122ae8b8345a7ebebb36a6 |
File details
Details for the file patatmo-0.2.16-py3-none-any.whl
.
File metadata
- Download URL: patatmo-0.2.16-py3-none-any.whl
- Upload date:
- Size: 36.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/6.1.52
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 865e89dfb7b8cc75a83a93aca5dd863f686fad05ca70a46b8a4df49604aac058 |
|
MD5 | e6d62243f2849349345db6f7934fa6cb |
|
BLAKE2b-256 | 1a5f23bb453fbf4bba0eea3edb171cba3ba5917f032dcef994f3a4eef1e2b232 |