A package designed to facilitate easy interaction with TeamUp API.
Project description
Teamup
A package designed to facilitate easy interaction with TeamUp API.
Quickstart
Installation 🛠️
From PyPI
py_teamup is available on PyPI. To install with pip
, just run
pip install py_teamup
Setup 🔨
Review the .env.example
file for the required/optional environment variables.
- The email and password are not actually used currently.
- Filling in all others are required beside
TEAMUP_DEFAULT_CALENDAR_ID
which is optional.- Working with one calendar and multiple sub_calendars seems more likely. Which is why I have it set statically in
TEAMUP_DEFAULT_CALDENDAR_ID
. Can get this value here from your own calendar:
- Working with one calendar and multiple sub_calendars seems more likely. Which is why I have it set statically in
Get token and api key from teamup: https://teamup.com/api-keys/request
Usage - Commands/Features
This covers the main use cases for the library.
from py_teamup import TeamUP
teamup = TeamUP()
# # Get calendar - returns dict full of calendar info.
calendar_info = teamup.get_calendar(calendar_key_or_id=DEFAULT_CALENDAR_ID)
# Get list of subcalendars - returns dict of subcalendars and their info.
sub_calendars = teamup.get_subcalendars(calendar_key_or_id=DEFAULT_CALENDAR_ID)
sub_calendar_ids = [calendar["id"] for calendar in sub_calendars]
# Or get a subcalendar by its name
sub_calendar_id = teamup.get_subcalendar_id_from_name(
calendar_key_or_id=DEFAULT_CALENDAR_ID, calendar_name="Daily Routine"
)
# With a sub_calendar_id, we can now create an event for that calendar.
# Note: the teamup class has a CalendarEvent data class that is required
# to create an event (for ease of use and validation).
event_to_create = teamup.CalendarEvent(subcalendar_ids=[sub_calendar_id], title="Test Event")
created_event = teamup.create_calendar_event(
calendar_key_or_id=DEFAULT_CALENDAR_ID, calendar_event=event_to_create
)
created_event_id = created_event["id"]
# Delete the event created
event_undo_id = teamup.delete_calendar_event(
calendar_key_or_id=DEFAULT_CALENDAR_ID, event_id=created_event_id
)
# Get all events for the subcalendar - This example uses the optional parameter with a date range
optional_params = {
"startDate": "2024-07-18",
"endDate": "2024-08-10",
}
events = teamup.get_calendar_events(calendar_key_or_id=DEFAULT_CALENDAR_ID, query=optional_params)
Development 🔧
Project details
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
File details
Details for the file teamup_connect-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: teamup_connect-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c27fc8c531a4fb98050ee99775dfc83646d549dc16a1d8a30bb8dc3ba3c7917 |
|
MD5 | 242d151bb58d444e28dd76a5fc5623e5 |
|
BLAKE2b-256 | 2ad737264ea1a5c93849db77918d60b8f27873b332364907f0d87065dda32d44 |