├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── identitytoolkit ├── __init__.py ├── errors.py ├── gitkitclient.py └── rpchelper.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_gitkitclient.py └── test_rpchelper.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Build artifacts 2 | *.py[cod] 3 | dist/ 4 | identity_toolkit_python_client.egg-info/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/README.md -------------------------------------------------------------------------------- /identitytoolkit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /identitytoolkit/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/identitytoolkit/errors.py -------------------------------------------------------------------------------- /identitytoolkit/gitkitclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/identitytoolkit/gitkitclient.py -------------------------------------------------------------------------------- /identitytoolkit/rpchelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/identitytoolkit/rpchelper.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_gitkitclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/tests/test_gitkitclient.py -------------------------------------------------------------------------------- /tests/test_rpchelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/identity-toolkit-python-client/HEAD/tests/test_rpchelper.py --------------------------------------------------------------------------------