├── .gitignore ├── LICENSE ├── README.md ├── dist └── pypodio2-0.2.tar.gz ├── example.py ├── pypodio2 ├── __init__.py ├── adapters.py ├── api.py ├── areas.py ├── client.py ├── encode.py └── transport.py ├── setup.py ├── tests ├── __init__.py ├── test_areas_item.py ├── test_areas_stream.py ├── test_areas_view.py └── utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/README.md -------------------------------------------------------------------------------- /dist/pypodio2-0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/dist/pypodio2-0.2.tar.gz -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/example.py -------------------------------------------------------------------------------- /pypodio2/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /pypodio2/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/pypodio2/adapters.py -------------------------------------------------------------------------------- /pypodio2/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/pypodio2/api.py -------------------------------------------------------------------------------- /pypodio2/areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/pypodio2/areas.py -------------------------------------------------------------------------------- /pypodio2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/pypodio2/client.py -------------------------------------------------------------------------------- /pypodio2/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/pypodio2/encode.py -------------------------------------------------------------------------------- /pypodio2/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/pypodio2/transport.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_areas_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/tests/test_areas_item.py -------------------------------------------------------------------------------- /tests/test_areas_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/tests/test_areas_stream.py -------------------------------------------------------------------------------- /tests/test_areas_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/tests/test_areas_view.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/podio-py/HEAD/tox.ini --------------------------------------------------------------------------------