An alternative Azure Cosmos library with orjson, polars, and fastapi in mind
Project description
Cosmos PL: Alternative Azure Cosmos library
What this library addresses that I don't like about MS library.
-
The MS library does excessive logging so (in my case), Azure Functions logs have to be turned off or are too costly https://github.com/Azure/azure-sdk-for-python/issues/12776
-
The MS library always converts the raw json into python lists and dicts immediately using built-in base
json
. -
If running FastAPI then there is often no point to parsing cosmos results to python objects only for FastAPI to convert them right back to json.
-
Other libraries can parse json faster such as orjson for python lists and dicts or polars to DataFrames. In my experience, polars is better at parsing raw json then row oriented python objects anyway.
-
When you try to read an item that doesn't exist, the MS lib raises an Error so checking if an item exists requires try/except blocks. I'd refer it return None or an empty list.
Quick use example
Create a Cosmos DB instance
from cosmospl import Cosmos
cosdb = Cosmos('your_db_name', 'your_container_name', 'your_connection_string')
# if you have an environment variable called 'cosmos' then leave that arg blank.
df = await cosdb.query("select * from c", return_as='pl')
Usage overview and differences from MS
All functionality is inside the Cosmos
class which is similar to the container client in the MS SDK.
For details please refer to the source.
To initialize the class pass a database name, container name, and (optionally) the connection string to Cosmos
as ordered arguments. If the connection string is omitted it'll use the cosmos
environment variable.
The methods in that class are:
query
: execute a query against the container. Use the return_as
parameter to specify pl
for polars dataframe, dict
for dict/list, resp
for the httpx response. Unlike MS, it returns everything in one call, it isn't an Async generator.
query_stream
: executes a query against the container. It returns an async generator of raw json. It is intended to be used in FastAPI streaming responses so it doesn't have to parse json or accumulate results before sending to end-user.
In the case of both query methods, Cosmos returns a nested json where the data is inside a Documents key. In order to avoid parsing this in its entirety while only returning data, it looks for Documents":[
and then only returns from there. Similarly at the end it truncates from ,"_count"
.
create
: creates (not upserts) a record
upsert
: upserts a record
delete
: deletes a record
read
: will read one record based on input id and partition_key
get_container_meta
: returns meta data about the container
get_pk_ranges
: returns the pk ranges of the container. Can be useful for doing cross partition query requests in chunks using the pk_id
parameter
Warning
On the Cosmos python sdk page it says:
[WARNING] Using the asynchronous client for concurrent operations like shown in this sample will consume a lot of RUs very fast. We strongly recommend testing this out against the cosmos emulator first to verify your code works well and avoid incurring charges.
Future polars enhancements (maybe)
- (optionally) detect datetime columns and automatically convert to pl.Date or pl.Datetime
- save a df to cosmos directly (possibly) with metadata so columns can be restored to same types when loaded
Future General Enhancements (maybe)
- Add top level and database classes
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 cosmospl-0.0.12.tar.gz
.
File metadata
- Download URL: cosmospl-0.0.12.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3ec99e338f019a672d81231e043cc897bc3b79aefa50736b96ee65523afe6e0 |
|
MD5 | 064ecf232b332d76c65ce8865866d47b |
|
BLAKE2b-256 | 53c89fa8167c5b5814fd8e3c6d2073c49b9e39d4f74201cbcf8d12dfe7912213 |
File details
Details for the file cosmospl-0.0.12-py3-none-any.whl
.
File metadata
- Download URL: cosmospl-0.0.12-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdd165d31d744adb0ff8ac2d25b73067396ff6108d6b72950d8c72f835651787 |
|
MD5 | 5f2473de9952570f6c1db3a9341cb1f7 |
|
BLAKE2b-256 | 7993e14c2dd6e916f86a34b0fc0e778d889e6b74146b15dac54bc5015aa3beee |