pip install tapioca-teamculture
from tapioca_teamculture import TeamCulture
api = TeamCulture(token='your_token', dev=True)
from tapioca_teamculture import TeamCulture
api = TeamCulture(token='your_token', dev=True)
users = api.users().get(params={'offset': 0, 'limit': 10})
for user in users().pages(max_pages=2):
print(user)
from tapioca_teamculture import TeamCulture
api = TeamCulture(token='your_token', dev=True)
groups = api.groups().get()
print(groups)
from tapioca_teamculture import TeamCulture
api = TeamCulture(token='your_token', dev=True)
action_plans = api.action_plans().get(params={'page': 1, 'perPage': 10})
for action_plan in action_plans().pages(max_pages=2):
print(action_plan)
No more documentation needed.
- Learn how Tapioca works here
- Explore this package using iPython
- Have fun!