Skip to content

The Standup & Prosper SDK for interacting with standups programmatically.

License

Notifications You must be signed in to change notification settings

Standup-and-Prosper/standup-and-prosper-sdk-py

Repository files navigation

Standup & Prosper SDK

Standup & Prosper SDK for Python.

NuGet version Build Status

This is the Standup & Prosper SDK used to integrate with programmatic standups at https://standup-and-prosper.com.

Usage

pip install standup-and-prosper-sdk

(you may need to run pip with root permission: sudo pip install standup-and-prosper-sdk)

Then import the package:

import standup_and_prosper_sdk

Getting Started

Get Standup Threads

from standup_and_prosper_sdk import ApiClient, StandupsApi

access_key = "eyARB5k-..." # Create on at https://standup-and-prosper.com/app/#/api
team_id = "TEAM_ID"
standup_id = "STANDUP_ID" # Can be found on the https://standup-and-prosper.com/app/#/standups page or by querying the existing standups

api_client = ApiClient(access_key)
api = StandupsApi(api_client)
threadResponse = api.get_standup_threads(team_id, standup_id)
print(threadResponse.threads)

About

The Standup & Prosper SDK for interacting with standups programmatically.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages