Python wrapper for the Trello API
Project description
pytrello2
Python wrapper for the Trello API
pytrello2
is a Python wrapper and ORM that provides an easy way to interact
with the Trello API. Trello serves as a visual tool that enables teams to
effectively oversee various projects, workflows, or task tracking via boards
that can have files, checklists, and automation. pytrello2
handles
authentication, mapping Python objects to Trello JSON, and provides a clean
interface for all API endpoints.
Installation
You can install pytrello2
using pip:
pip install pytrello2
You can also install pytrello2
using Poetry:
cd pytrello2/
poetry install
poetry shell
Authentication
A Trello API key and token is needed to use pytrello2. To set up authentication, follow these steps:
- Obtain your Trello API key by logging into Trello, and then visiting https://trello.com/1/appKey/generate.
- Generate a token using the key, and grant the necessary permissions.
Example
import os
from pytrello2 import TrelloClient
# Replace 'YOUR_API_KEY' and 'YOUR_TOKEN' with your Trello API key and token.
token = os.environ["TRELLO_TOKEN"]
api_key = os.environ["TRELLO_API_KEY"]
client = TrelloClient(token, api_key)
# Get all boards of the authenticated user
boards = client.board.get_all_boards()
for board in boards:
print(f"Board Name: {board.name}, Board ID: {board.id}")
Contributing
Contributions are welcome!
Check out the Contributing Guidelines for more details.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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 pytrello2-0.1.0.tar.gz
.
File metadata
- Download URL: pytrello2-0.1.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.9.18 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a57893d97802c57764b4f8ee97bf7c3a141a138e79b09a3a627232a128a615c |
|
MD5 | ac45a439d9138d0f2b5a89f9b5a35f21 |
|
BLAKE2b-256 | f41ba9b9bdd44bdfb967ac5f78dd788310de8fc139e976b9b28a97469d691237 |
File details
Details for the file pytrello2-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pytrello2-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.9.18 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed19ccd947418c768763b5a01e909d71b5501e8b4e9b3c889c99e7dd8d5f47c4 |
|
MD5 | 5d48d4a9c9b6e34efef635c9d021e6bb |
|
BLAKE2b-256 | 0f51d8dc3952900d21f252296f91e5b038c37759a7e15309f313d328c891e3fb |