All Projects → Garee → Pytodoist

Garee / Pytodoist

Licence: mit
Use Todoist with Python ✅

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Pytodoist

Foxify
The fast, easy to use & typescript ready web framework for Node.js
Stars: ✭ 138 (-1.43%)
Mutual labels:  api
Twitter Streaming Api
Easily work with the Twitter Streaming API
Stars: ✭ 139 (-0.71%)
Mutual labels:  api
Apisix Ingress Controller
ingress controller for K8s
Stars: ✭ 139 (-0.71%)
Mutual labels:  api
Poloniex Api Node
Poloniex API client for REST and WebSocket API
Stars: ✭ 138 (-1.43%)
Mutual labels:  api
Tastyworks api
An unofficial, reverse-engineered Python API for tastyworks.
Stars: ✭ 138 (-1.43%)
Mutual labels:  api
Postman Bdd
A BDD test framework for Postman and Newman
Stars: ✭ 139 (-0.71%)
Mutual labels:  api
Fastify Api
A blazing fast REST APIs with Node.js, MongoDB, Fastify and Swagger.
Stars: ✭ 138 (-1.43%)
Mutual labels:  api
Archiveis
A simple Python wrapper for the archive.is capturing service
Stars: ✭ 140 (+0%)
Mutual labels:  api
Pithy Test
简化接口测试
Stars: ✭ 139 (-0.71%)
Mutual labels:  api
Librouteros
Python implementation of MikroTik RouterOS API
Stars: ✭ 139 (-0.71%)
Mutual labels:  api
Pure Http
✨ The simple web framework for Node.js with zero dependencies.
Stars: ✭ 139 (-0.71%)
Mutual labels:  api
Flutter Tiktok Ui Api Clone
Flutter Tiktok UI API Clone
Stars: ✭ 139 (-0.71%)
Mutual labels:  api
Telegram Bot Api
Telegram Bot API PHP
Stars: ✭ 139 (-0.71%)
Mutual labels:  api
Laravel Fractal
An easy to use Fractal wrapper built for Laravel and Lumen applications
Stars: ✭ 1,748 (+1148.57%)
Mutual labels:  api
Migrationminer
A tool to detect migration code between two Java third-party libraries
Stars: ✭ 140 (+0%)
Mutual labels:  api
Laravel Api Explorer
API explorer for laravel applications
Stars: ✭ 138 (-1.43%)
Mutual labels:  api
Conari
🧬 Platform for unmanaged memory, pe-modules, related PInvoke features, and more for: Libraries, Executable Modules, enjoy using of the unmanaged native C/C++ in .NET world, and other raw binary data …
Stars: ✭ 138 (-1.43%)
Mutual labels:  api
Unit Api
Units of Measurement API
Stars: ✭ 140 (+0%)
Mutual labels:  api
Awesome Documentation Tools
🔥 📚 All the tools, processes and resources you need to create an awesome API & Project documentation
Stars: ✭ 138 (-1.43%)
Mutual labels:  api
Cityengine Sdk
CityEngine is a 3D city modeling software for urban design, visual effects, and VR/AR production. With its C++ SDK you can create plugins and standalone apps capable to execute CityEngine CGA procedural modeling rules.
Stars: ✭ 137 (-2.14%)
Mutual labels:  api

PyPI Python versions License Build status

PyTodoist is a Python package for interacting with Todoist. It hides the underlying API calls with higher-level abstractions that make it easy to use Todoist with Python.

Quick Start

Install the latest version:

$ pip install pytodoist

Have fun:

>>> from pytodoist import todoist
>>> user = todoist.login('[email protected]', 'pa$$w0rd')
>>> projects = user.get_projects()
>>> for project in projects:
...     print(project.name)
...
Inbox
Books to read
Movies to watch
Shopping
Work
Personal
Health
>>> inbox = user.get_project('Inbox')
>>> task = inbox.add_task('Install PyTodoist',
...                        priority=todoist.Priority.VERY_HIGH)
>>> task.complete()

Documentation

Comprehensive online documentation can be found at https://pytodoist.readthedocs.org

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].