Microsoft Azure Cosmos Client Library for Python
Project description
Azure Cosmos client library for Python
Welcome to the repo containing all things Python for the Azure Cosmos DB API which is published with name azure-cosmos. For documentation please see the Microsoft Azure link.
Getting started
Pre-requirements
Python 2.7, Python 3.3, Python 3.4, or Python 3.5 https://www.python.org/downloads/
If you use Microsoft Visual Studio as IDE (we use 2015), please install the following extension for Python. http://microsoft.github.io/PTVS/
Install Cosmos DB emulator Follow instruction at https://docs.microsoft.com/en-us/azure/cosmos-db/local-emulator
Installation
$ python setup.py install
or
$ pip install azure-cosmos
Key concepts
Examples
Troubleshooting
Next steps
Contributing
Running Testing
Clone the repo
git clone https://github.com/Azure/azure-cosmos-python.git
cd azure-cosmos-python
Most of the test files under test sub-folder require you to enter your Azure Cosmos master key and host endpoint:
masterKey = '[YOUR_KEY_HERE]'
host = '[YOUR_ENDPOINT_HERE]'
To run the tests:
$ python -m unittest discover -s .\test -p "*.py"
If you use Microsoft Visual Studio, open the project file python.pyproj,
and run all the tests in Test Explorer.
Note:
Most of the test cases create containers in your Cosmos account. Containers are billing entities. By running these test cases, you may incur monetary costs on your account.
Documentation generation
Install Sphinx: http://sphinx-doc.org/install.html
$ cd doc
$ sphinx-apidoc -f -e -o api ..\azure\cosmos
$ make.bat html
Changes in 4.0.0b1 :
- Alpha release for new object model.
Changes in 3.0.2 :
- Added Support for MultiPolygon Datatype
- Bug Fix in Session Read Retry Policy
- Bug Fix for Incorrect padding issues while decoding base 64 strings
Changes in 3.0.1 :
- Bug fix in LocationCache
- Bug fix endpoint retry logic
- Fixed documentation
Changes in 3.0.0 :
- Multi-region write support added
- Naming changes
- DocumentClient to CosmosClient
- Collection to Container
- Document to Item
- Package name updated to "azure-cosmos"
- Namespace updated to "azure.cosmos"
Changes in 2.3.3 :
- Added support for proxy
- Added support for reading change feed
- Added support for collection quota headers
- Bugfix for large session tokens issue
- Bugfix for ReadMedia API
- Bugfix in partition key range cache
Changes in 2.3.2 :
- Added support for default retries on connection issues.
Changes in 2.3.1 :
- Updated documentation to reference Azure Cosmos DB instead of Azure DocumentDB.
Changes in 2.3.0 :
- This SDK version requires the latest version of Azure Cosmos DB Emulator available for download from https://aka.ms/cosmosdb-emulator.
Changes in 2.2.1 :
- bugfix for aggregate dict
- bugfix for trimming slashes in the resource link
- tests for unicode encoding
Changes in 2.2.0 :
- Added support for Request Unit per Minute (RU/m) feature.
- Added support for a new consistency level called ConsistentPrefix.
Changes in 2.1.0 :
- Added support for aggregation queries (COUNT, MIN, MAX, SUM, and AVG).
- Added an option for disabling SSL verification when running against DocumentDB Emulator.
- Removed the restriction of dependent requests module to be exactly 2.10.0.
- Lowered minimum throughput on partitioned collections from 10,100 RU/s to 2500 RU/s.
- Added support for enabling script logging during stored procedure execution.
- REST API version bumped to '2017-01-19' with this release.
Changes in 2.0.1 :
- Made editorial changes to documentation comments.
Changes in 2.0.0 :
- Added support for Python 3.5.
- Added support for connection pooling using the requests module.
- Added support for session consistency.
- Added support for TOP/ORDERBY queries for partitioned collections.
Changes in 1.9.0 :
-
Added retry policy support for throttled requests. (Throttled requests receive a request rate too large exception, error code 429.) By default, DocumentDB retries nine times for each request when error code 429 is encountered, honoring the retryAfter time in the response header. A fixed retry interval time can now be set as part of the RetryOptions property on the ConnectionPolicy object if you want to ignore the retryAfter time returned by server between the retries. DocumentDB now waits for a maximum of 30 seconds for each request that is being throttled (irrespective of retry count) and returns the response with error code 429. This time can also be overriden in the RetryOptions property on ConnectionPolicy object.
-
DocumentDB now returns x-ms-throttle-retry-count and x-ms-throttle-retry-wait-time-ms as the response headers in every request to denote the throttle retry count and the cummulative time the request waited between the retries.
-
Removed the RetryPolicy class and the corresponding property (retry_policy) exposed on the document_client class and instead introduced a RetryOptions class exposing the RetryOptions property on ConnectionPolicy class that can be used to override some of the default retry options.
Changes in 1.8.0 :
- Added the support for geo-replicated database accounts.
- Test fixes to move the global host and masterKey into the individual test classes.
Changes in 1.7.0 :
- Added the support for Time To Live(TTL) feature for documents.
Changes in 1.6.1 :
- Bug fixes related to server side partitioning to allow special characters in partitionkey path.
Changes in 1.6.0 :
- Added the support for server side partitioned collections feature.
Changes in 1.5.0 :
- Added Client-side sharding framework to the SDK. Implemented HashPartionResolver and RangePartitionResolver classes.
Changes in 1.4.2 :
- Implement Upsert. New UpsertXXX methods added to support Upsert feature.
- Implement ID Based Routing. No public API changes, all changes internal.
Changes in 1.3.0 :
- Release skipped to bring version number in alignment with other SDKs
Changes in 1.2.0 :
- Supports GeoSpatial index.
- Validates id property for all resources. Ids for resources cannot contain ?, /, #, \, characters or end with a space.
- Adds new header "index transformation progress" to ResourceResponse.
Changes in 1.1.0 :
- Implements V2 indexing policy
Changes in 1.0.1 :
- Supports proxy connection
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file azure-cosmos-4.0.0b1.zip
.
File metadata
- Download URL: azure-cosmos-4.0.0b1.zip
- Upload date:
- Size: 223.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abe04236e28017e000ae83fc07772cf56b259ec5bd81ff4abfb9c36152471514 |
|
MD5 | 36dcd0b9f46e315bc1559ffab2112c51 |
|
BLAKE2b-256 | 5125ebd1bbad9a08d0daeb78ab5060c563899333b6e9a92e46ccee314d5cf15d |
File details
Details for the file azure_cosmos-4.0.0b1-py2.py3-none-any.whl
.
File metadata
- Download URL: azure_cosmos-4.0.0b1-py2.py3-none-any.whl
- Upload date:
- Size: 126.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9a8422991be532a2a6d6f7e7a7315b6a78c9057906c441c7262693580f64d76 |
|
MD5 | 6050fed2f03fab3eda57c4173e8ac356 |
|
BLAKE2b-256 | b9b869f98f2c9f150a6a33a20ac85f36cccb6be8810b09cb54f67a4b6256e64e |