Compose complex notion formulas in Python.
Project description
Notion Formulas
Notion Formulas is a Python library designed for composing and manipulating complex formulas for Notion programmatically. Enhance your Notion workspace by leveraging the power of Python to create and manage formulas.
Installation
To get started with Notion Formulas, you can install the package using pip:
pip install notion-formulas
Usage
from notion_formulas import Number, prop
x: Number = prop("x")
y: Number = prop("y")
print(x + y) # Prints `prop("x") + prop("y")`
API
The complete Notion Formulas API maintains consistency with the original names, with the following adjustments:
- Camel casing is converted to snake case (e.g.,
replaceAll()
becomesreplace_all()
). - Functions matching python keywords are modified with a trailing underscore: (i.g.
if()
becomesif_()
). - Constants are uppercased (i.g.
e
becomesE
).
Data types
The api is fully typed and defines following data types for expressions: Boolean
, Number
, String
, and Date
, allowing your formulas to be typed checked by mypy.
Examples
For a comprehensive example, refer to the code that generates a Taskwarrior style urgency score for a Notion task database in examples/urgency.py and the associated output examples/urgency.txt.
Contributing
Contributions to Notion Formulas are welcome and appreciated. If you'd like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch for your changes.
- Make your changes and update the tests as needed.
- Submit a pull request with your changes.
For major changes, please open an issue first to discuss what you would like to change.
License
Notion Formulas is released under the MIT license, which allows for free and open use, modification, and distribution.
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 notion_formulas-1.0.1.tar.gz
.
File metadata
- Download URL: notion_formulas-1.0.1.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.23.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b8db152fc782962936fe0c3be4d69ce7ebce04e6ded833e5d3d90047a34400e |
|
MD5 | cc0be9080e828ed9188828a12354fbaa |
|
BLAKE2b-256 | 701b1af352eb23dd2ef7faa67cf9719a9b7c077042cd5da36cd2660fd842554f |
Provenance
File details
Details for the file notion_formulas-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: notion_formulas-1.0.1-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.23.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54ffee659b85dcf419f785562da7224518ae000db1c79c48be05405602794140 |
|
MD5 | 109abdbbf7276d170775771100fad5ca |
|
BLAKE2b-256 | 3d55cbba77d4c45c1ca2872ccc2e5a71f8b0c501eefa6eb660b3ef05f8169d61 |