RTM API wrapper
Project description
Python wrapper for "Remember the Milk" API
- Asynchronous and synchronous APIs
- Subscription support
Usage of client
from rtmilk.client import Client
from rtmmilk.models import RTMError
# These are the equivalent objects, created differently
client = Client.Create(API_KEY, SHARED_SECRET, TOKEN)
client2 = await Client.CreateAsync(API_KEY, SHARED_SECRET, TOKEN)
try:
task = client.Add(name='name 1')
assert task.complete.value is False
task.tags.Set({'tag1', 'tag2'})
assert task.tags.value == {'tag1', 'tag2'}
task = await client.AddAsync(name='name 2')
await task.tags.SetAsync({'tag1', 'tag2'})
tasks = client2.Get('name:"name 1"')
assert tasks[0].tags.value == {'tag1', 'tag2'}
except RTMError as e:
print(e)
Usage of API functions directly
from rtmilk.api_sync import API
from rtmmilk.models import RTMError
api = API(API_KEY, SHARED_SECRET, TOKEN)
timeline = api.TimelinesCreate().timeline
try:
api.TasksAdd(timeline, 'task name')
except RTMError as e:
print(e)
from rtmilk.api_async import APIAsync
from rtmmilk.models import RTMError
apiAsync = APIAsync(API_KEY, SHARED_SECRET, TOKEN)
timeline = await apiAsync.TimelinesCreate().timeline
try:
await apiAsync.TasksAdd(timeline, 'task name')
except RTMError as e:
print(e)
Authorization
from rtmilk.authorization import AuthorizationSession
authenticationSession = AuthorizationSession(API_KEY, SHARED_SECRET, 'delete')
input(f'Go to {authenticationSession.url} and authorize. Then Press ENTER')
token = authenticationSession.Done()
print(f'Authorization token is {token}')
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
rtmilk-1.0.3.tar.gz
(14.4 kB
view details)
Built Distribution
rtmilk-1.0.3-py3-none-any.whl
(18.4 kB
view details)
File details
Details for the file rtmilk-1.0.3.tar.gz
.
File metadata
- Download URL: rtmilk-1.0.3.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.1 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 790e264a3e9f822350fe448c3facaccaf7450cf806603df8f9f128de6325426a |
|
MD5 | 9a0efd4160a7ba56f90209c852c4c419 |
|
BLAKE2b-256 | f151bae5cec61dc22285ee55202c1893d1d75cb360f853d6d2170e1bf0a771cc |
File details
Details for the file rtmilk-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: rtmilk-1.0.3-py3-none-any.whl
- Upload date:
- Size: 18.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.1 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9178870600f5426a5ef2e8d86e3d1db25ba88efaa476d5cace6c22c41254782e |
|
MD5 | e5ff8766c14b9ddba46fa1766db7c9be |
|
BLAKE2b-256 | f2769a9f9968b854620b3db7d569cce0bc653106a478f4fc3ee468d63cb7b9a4 |