├── .codacy.yml ├── .coveragerc ├── .dockerignore ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── _config.yml ├── codecov.yml ├── docs ├── .gitignore ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── etcd3.apis.rst ├── etcd3.errors.rst ├── etcd3.stateful.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── modules.rst └── usage.rst ├── etcd3 ├── __init__.py ├── aio_client.py ├── apis │ ├── __init__.py │ ├── auth.py │ ├── base.py │ ├── cluster.py │ ├── extra.py │ ├── kv.py │ ├── lease.py │ ├── lock.py │ ├── maintenance.py │ └── watch.py ├── baseclient.py ├── client.py ├── contrib │ └── __init__.py ├── errors │ ├── __init__.py │ ├── errors.py │ ├── go_etcd_rpctypes_error.py │ ├── go_grpc_codes.py │ ├── go_grpc_gateway_errors.py │ └── go_net_http_status.py ├── models.py ├── stateful │ ├── __init__.py │ ├── lease.py │ ├── lock.py │ ├── transaction.py │ └── watch.py ├── swagger_helper.py ├── swaggerdefs │ ├── README.md │ ├── __init__.py │ ├── v3_2_x │ │ ├── __init__.py │ │ ├── rpc.swagger.json │ │ ├── v3election.swagger.json │ │ └── v3lock.swagger.json │ └── v3_3_x │ │ ├── __init__.py │ │ ├── rpc.swagger.json │ │ ├── v3election.swagger.json │ │ └── v3lock.swagger.json ├── utils.py └── version.py ├── readthedocs.yml ├── requirements.txt ├── requirements_dev.txt ├── requirements_dev_py3.txt ├── requirements_doc.txt ├── requirements_py3.txt ├── scripts ├── basemodel.py ├── extract_apis.py ├── extract_models.py ├── generate_swagger_defs.py └── model-template.jinja2 ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── certs │ ├── ca-config.json │ ├── ca-csr.json │ ├── ca-key.pem │ ├── ca.csr │ ├── ca.pem │ ├── client-key.pem │ ├── client.csr │ ├── client.json │ ├── client.pem │ ├── server-key.pem │ ├── server.csr │ ├── server.json │ └── server.pem ├── conftest.py ├── docker_cli.py ├── envs.py ├── etcd_go_cli.py ├── mocks.py ├── test_auth_apis.py ├── test_client.py ├── test_cluster_apis.py ├── test_extra_apis.py ├── test_kv_apis.py ├── test_lease_apis.py ├── test_lease_util.py ├── test_lock_apis.py ├── test_lock_util.py ├── test_maintenance_apis.py ├── test_py3 │ ├── __init__.py │ ├── test_aio_auth_apis.py │ └── test_aio_client.py ├── test_swagger_helper.py ├── test_swaggerdefs.py ├── test_transaction_util.py ├── test_watch_apis.py └── test_watch_util.py ├── tox.ini └── travis_pypi_setup.py /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/_config.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | token: 0eef715f-ce0c-451f-bb2f-9f1806d3d95b 3 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/etcd3.apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/etcd3.apis.rst -------------------------------------------------------------------------------- /docs/etcd3.errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/etcd3.errors.rst -------------------------------------------------------------------------------- /docs/etcd3.stateful.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/etcd3.stateful.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../CHANGELOG.md 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /etcd3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/__init__.py -------------------------------------------------------------------------------- /etcd3/aio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/aio_client.py -------------------------------------------------------------------------------- /etcd3/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/__init__.py -------------------------------------------------------------------------------- /etcd3/apis/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/auth.py -------------------------------------------------------------------------------- /etcd3/apis/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/base.py -------------------------------------------------------------------------------- /etcd3/apis/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/cluster.py -------------------------------------------------------------------------------- /etcd3/apis/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/extra.py -------------------------------------------------------------------------------- /etcd3/apis/kv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/kv.py -------------------------------------------------------------------------------- /etcd3/apis/lease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/lease.py -------------------------------------------------------------------------------- /etcd3/apis/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/lock.py -------------------------------------------------------------------------------- /etcd3/apis/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/maintenance.py -------------------------------------------------------------------------------- /etcd3/apis/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/apis/watch.py -------------------------------------------------------------------------------- /etcd3/baseclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/baseclient.py -------------------------------------------------------------------------------- /etcd3/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/client.py -------------------------------------------------------------------------------- /etcd3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etcd3/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/errors/__init__.py -------------------------------------------------------------------------------- /etcd3/errors/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/errors/errors.py -------------------------------------------------------------------------------- /etcd3/errors/go_etcd_rpctypes_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/errors/go_etcd_rpctypes_error.py -------------------------------------------------------------------------------- /etcd3/errors/go_grpc_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/errors/go_grpc_codes.py -------------------------------------------------------------------------------- /etcd3/errors/go_grpc_gateway_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/errors/go_grpc_gateway_errors.py -------------------------------------------------------------------------------- /etcd3/errors/go_net_http_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/errors/go_net_http_status.py -------------------------------------------------------------------------------- /etcd3/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/models.py -------------------------------------------------------------------------------- /etcd3/stateful/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/stateful/__init__.py -------------------------------------------------------------------------------- /etcd3/stateful/lease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/stateful/lease.py -------------------------------------------------------------------------------- /etcd3/stateful/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/stateful/lock.py -------------------------------------------------------------------------------- /etcd3/stateful/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/stateful/transaction.py -------------------------------------------------------------------------------- /etcd3/stateful/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/stateful/watch.py -------------------------------------------------------------------------------- /etcd3/swagger_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swagger_helper.py -------------------------------------------------------------------------------- /etcd3/swaggerdefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/README.md -------------------------------------------------------------------------------- /etcd3/swaggerdefs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/__init__.py -------------------------------------------------------------------------------- /etcd3/swaggerdefs/v3_2_x/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/v3_2_x/__init__.py -------------------------------------------------------------------------------- /etcd3/swaggerdefs/v3_2_x/rpc.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/v3_2_x/rpc.swagger.json -------------------------------------------------------------------------------- /etcd3/swaggerdefs/v3_2_x/v3election.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/v3_2_x/v3election.swagger.json -------------------------------------------------------------------------------- /etcd3/swaggerdefs/v3_2_x/v3lock.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/v3_2_x/v3lock.swagger.json -------------------------------------------------------------------------------- /etcd3/swaggerdefs/v3_3_x/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/v3_3_x/__init__.py -------------------------------------------------------------------------------- /etcd3/swaggerdefs/v3_3_x/rpc.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/v3_3_x/rpc.swagger.json -------------------------------------------------------------------------------- /etcd3/swaggerdefs/v3_3_x/v3election.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/v3_3_x/v3election.swagger.json -------------------------------------------------------------------------------- /etcd3/swaggerdefs/v3_3_x/v3lock.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/swaggerdefs/v3_3_x/v3lock.swagger.json -------------------------------------------------------------------------------- /etcd3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/utils.py -------------------------------------------------------------------------------- /etcd3/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/etcd3/version.py -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_dev_py3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/requirements_dev_py3.txt -------------------------------------------------------------------------------- /requirements_doc.txt: -------------------------------------------------------------------------------- 1 | -r requirements_dev_py3.txt 2 | Sphinx>=1.4.8 3 | #cryptography>=1.7 4 | -------------------------------------------------------------------------------- /requirements_py3.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | aiohttp>=3.0.0 3 | -------------------------------------------------------------------------------- /scripts/basemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/scripts/basemodel.py -------------------------------------------------------------------------------- /scripts/extract_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/scripts/extract_apis.py -------------------------------------------------------------------------------- /scripts/extract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/scripts/extract_models.py -------------------------------------------------------------------------------- /scripts/generate_swagger_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/scripts/generate_swagger_defs.py -------------------------------------------------------------------------------- /scripts/model-template.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/scripts/model-template.jinja2 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/certs/ca-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/ca-config.json -------------------------------------------------------------------------------- /tests/certs/ca-csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/ca-csr.json -------------------------------------------------------------------------------- /tests/certs/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/ca-key.pem -------------------------------------------------------------------------------- /tests/certs/ca.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/ca.csr -------------------------------------------------------------------------------- /tests/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/ca.pem -------------------------------------------------------------------------------- /tests/certs/client-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/client-key.pem -------------------------------------------------------------------------------- /tests/certs/client.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/client.csr -------------------------------------------------------------------------------- /tests/certs/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/client.json -------------------------------------------------------------------------------- /tests/certs/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/client.pem -------------------------------------------------------------------------------- /tests/certs/server-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/server-key.pem -------------------------------------------------------------------------------- /tests/certs/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/server.csr -------------------------------------------------------------------------------- /tests/certs/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/server.json -------------------------------------------------------------------------------- /tests/certs/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/certs/server.pem -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/docker_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/docker_cli.py -------------------------------------------------------------------------------- /tests/envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/envs.py -------------------------------------------------------------------------------- /tests/etcd_go_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/etcd_go_cli.py -------------------------------------------------------------------------------- /tests/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/mocks.py -------------------------------------------------------------------------------- /tests/test_auth_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_auth_apis.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_cluster_apis.py: -------------------------------------------------------------------------------- 1 | # TODO: cluster apis test 2 | -------------------------------------------------------------------------------- /tests/test_extra_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_extra_apis.py -------------------------------------------------------------------------------- /tests/test_kv_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_kv_apis.py -------------------------------------------------------------------------------- /tests/test_lease_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_lease_apis.py -------------------------------------------------------------------------------- /tests/test_lease_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_lease_util.py -------------------------------------------------------------------------------- /tests/test_lock_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_lock_apis.py -------------------------------------------------------------------------------- /tests/test_lock_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_lock_util.py -------------------------------------------------------------------------------- /tests/test_maintenance_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_maintenance_apis.py -------------------------------------------------------------------------------- /tests/test_py3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_py3/__init__.py -------------------------------------------------------------------------------- /tests/test_py3/test_aio_auth_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_py3/test_aio_auth_apis.py -------------------------------------------------------------------------------- /tests/test_py3/test_aio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_py3/test_aio_client.py -------------------------------------------------------------------------------- /tests/test_swagger_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_swagger_helper.py -------------------------------------------------------------------------------- /tests/test_swaggerdefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_swaggerdefs.py -------------------------------------------------------------------------------- /tests/test_transaction_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_transaction_util.py -------------------------------------------------------------------------------- /tests/test_watch_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_watch_apis.py -------------------------------------------------------------------------------- /tests/test_watch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tests/test_watch_util.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/tox.ini -------------------------------------------------------------------------------- /travis_pypi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revolution1/etcd3-py/HEAD/travis_pypi_setup.py --------------------------------------------------------------------------------