Notion API Client
This is the python client for the Notion API. Use this client to report on ingredients, and create new ingredients.
Install
pip install notion-python
Usage
Get your API Token, and ingredient information from here: https://app.usenotion.com/api_control_panel
import notion
# create a client
client = notion.NotionClient('YOUR_API_KEY')
# make a report
client.report(datetime.now(), 20, ingredient_id='AN_INGREDIENT_KEY')
# make many reports
client.batch_report('AN_INGREDIENT_KEY', [
{'date': datetime.now() - timedelta(days=1), 'value': 2},
{'date': datetime.now(), 'value': 3},
])
# create a new ingredient
client.create_ingredient('Ingredient Name', [
{'date': datetime.now() - timedelta(days=1), 'value': 2},
{'date': datetime.now(), 'value': 3},
])
Error Handling
All methods will raise a subclass of notion.NotionError in the event that the request could not be made, or an error occurred.
Development
Install
git clone https://github.com/notion-data/notion-python.git
cd notion-python
pip install -e .
Tests
env NOTION_TOKEN=FOOBAR NOTION_API_ROOT=https://app.usenotion.com python -m unittest discover
pylint --output-format parseable --disable C0111 notion tests
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file notion_python-1.0.2-py2.py3-none-any.whl.
File metadata
- Download URL: notion_python-1.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1de15b3a1bbcc4abdf3b2d173e22ae29f63d8ce5157decba7597d6c8b435c5ca
|
|
| MD5 |
c8a01d8ae662857473e0dff14486f5d5
|
|
| BLAKE2b-256 |
693af20eea4eac7df383371c73ed96561000139fd3e22bb73d31551e882feb56
|