Skip to main content

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: calendar_id

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

teamup_connect-0.1.1-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file teamup_connect-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for teamup_connect-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2c27fc8c531a4fb98050ee99775dfc83646d549dc16a1d8a30bb8dc3ba3c7917
MD5 242d151bb58d444e28dd76a5fc5623e5
BLAKE2b-256 2ad737264ea1a5c93849db77918d60b8f27873b332364907f0d87065dda32d44

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page