Skip to content

wbrp/podio-py

This branch is 41 commits ahead of podio/podio-py:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0446be9 · Feb 21, 2022
Feb 21, 2022
Feb 21, 2022
Feb 21, 2022
Oct 27, 2016
Jan 29, 2012
Feb 1, 2018
Jan 31, 2018
Jul 9, 2018
Feb 21, 2022
Feb 21, 2022

Repository files navigation

PyPodio

Python wrapper for the Podio API.

Example

from pypodio2 import api
from client_settings import *

client = api.OAuthClient(
    client_id,
    client_secret,
    username,
    password,    
)
print(client.Item.find(22342))

Notes

It is possible to override the default response handler by passing handler as a keyword argument to a transport function call. For example:

handler = lambda response, data: (response, data)
response, data = client.Item.find(11007, basic=True, handler=handler)

Tests

To run the tests on python 2 & 3:

$ tox

For quicker tests only with your local interpreter:

$ nosetests

About

Podio Python client

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%