gitextract_yhao7vs7/ ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── DCO1.1.txt ├── Jenkinsfile ├── LICENSE ├── MANIFEST.in ├── MIGRATION.md ├── README.md ├── VERSION ├── docs/ │ ├── Makefile │ ├── adapters.rst │ ├── client.rst │ ├── cloudant.rst │ ├── compatibility.rst │ ├── conf.py │ ├── database.rst │ ├── design_document.rst │ ├── document.rst │ ├── error.rst │ ├── feed.rst │ ├── getting_started.rst │ ├── index.rst │ ├── make.bat │ ├── module_index.rst │ ├── modules.rst │ ├── query.rst │ ├── replicator.rst │ ├── result.rst │ ├── security_document.rst │ └── view.rst ├── pylintrc ├── requirements.txt ├── setup.py ├── src/ │ └── cloudant/ │ ├── _2to3.py │ ├── __init__.py │ ├── _client_session.py │ ├── _common_util.py │ ├── _messages.py │ ├── adapters.py │ ├── client.py │ ├── database.py │ ├── design_document.py │ ├── document.py │ ├── error.py │ ├── feed.py │ ├── index.py │ ├── query.py │ ├── replicator.py │ ├── result.py │ ├── scheduler.py │ ├── security_document.py │ └── view.py ├── test-requirements.txt └── tests/ ├── __init__.py ├── credentials.py ├── integration/ │ ├── __init__.py │ ├── changes_test.py │ ├── document_test.py │ ├── end_to_end_example_test.py │ ├── iter_test.py │ └── replicator_test.py └── unit/ ├── __init__.py ├── _test_util.py ├── adapter_tests.py ├── auth_renewal_tests.py ├── changes_tests.py ├── client_tests.py ├── cloud_foundry_tests.py ├── database_partition_tests.py ├── database_tests.py ├── db_updates_tests.py ├── design_document_tests.py ├── document_tests.py ├── document_validation_tests.py ├── fixtures/ │ └── __init__.py ├── iam_auth_tests.py ├── index_tests.py ├── infinite_feed_tests.py ├── param_translation_tests.py ├── query_result_tests.py ├── query_tests.py ├── replicator_mock_tests.py ├── replicator_tests.py ├── result_tests.py ├── scheduler_tests.py ├── security_document_tests.py ├── unit_t_db_base.py ├── view_execution_tests.py └── view_tests.py