SDK for Momento
Project description
Momento Python Client Library
Momento Cache is a fast, simple, pay-as-you-go caching solution without any of the operational overhead required by traditional caching solutions. This repo contains the source code for the Momento Python client library.
To get started with Momento you will need a Momento Auth Token. You can get one from the Momento Console.
- Website: https://www.gomomento.com/
- Momento Documentation: https://docs.momentohq.com/
- Getting Started: https://docs.momentohq.com/getting-started
- Python SDK Documentation: https://docs.momentohq.com/sdks/python
- Discuss: Momento Discord
Packages
The Momento Python SDK package is available on pypi: momento.
Usage
The examples below require an environment variable named MOMENTO_API_KEY
which must
be set to a valid Momento API key. You can get one from the Momento Console.
Python 3.10 introduced the match
statement, which allows for structural pattern matching on objects.
If you are running python 3.10 or greater, here is a quickstart you can use in your own project:
from datetime import timedelta
from momento import CacheClient, Configurations, CredentialProvider
from momento.responses import CacheGet
cache_client = CacheClient(
Configurations.Laptop.v1(), CredentialProvider.from_environment_variable("MOMENTO_API_KEY"), timedelta(seconds=60)
)
cache_client.create_cache("cache")
cache_client.set("cache", "my-key", "my-value")
get_response = cache_client.get("cache", "my-key")
match get_response:
case CacheGet.Hit() as hit:
print(f"Got value: {hit.value_string}")
case _:
print(f"Response was not a hit: {get_response}")
The above code uses structural pattern matching, a feature introduced in Python 3.10. Using a Python version less than 3.10? No problem. Here is the same example compatible across all versions of Python:
from datetime import timedelta
from momento import CacheClient, Configurations, CredentialProvider
from momento.responses import CacheGet
cache_client = CacheClient(
configuration=Configurations.Laptop.v1(),
credential_provider=CredentialProvider.from_environment_variable("MOMENTO_API_KEY"),
default_ttl=timedelta(seconds=60),
)
cache_client.create_cache("cache")
cache_client.set("cache", "myKey", "myValue")
get_response = cache_client.get("cache", "myKey")
if isinstance(get_response, CacheGet.Hit):
print(f"Got value: {get_response.value_string}")
Getting Started and Documentation
Documentation is available on the Momento Docs website.
Examples
Working example projects, with all required build configuration files, are available for both Python 3.10 and up and Python versions before 3.10:
Developing
If you are interested in contributing to the SDK, please see the CONTRIBUTING docs.
For more info, visit our website at https://gomomento.com!
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 momento-1.24.0.tar.gz
.
File metadata
- Download URL: momento-1.24.0.tar.gz
- Upload date:
- Size: 80.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.12.3 Linux/6.8.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dda27470d4946b76cb588ef04ae09e99cb30b95747f738d81f4321339c03a6a3 |
|
MD5 | c7d62a5452ad7f31d32d7433e5a1f37c |
|
BLAKE2b-256 | fece18c693a730df232aa1ab5627b559066efc106301dc28cbfdcc6acc3ec049 |
File details
Details for the file momento-1.24.0-py3-none-any.whl
.
File metadata
- Download URL: momento-1.24.0-py3-none-any.whl
- Upload date:
- Size: 133.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.12.3 Linux/6.8.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d885a38c607eccc23227e05e09b673cd743d88b468ee52b23daf7df4e6c2d456 |
|
MD5 | 3d7363af539ae42ec355b390a4a9f710 |
|
BLAKE2b-256 | ada2df5b98067e010ed94bde3c7a0650de488287d9b1418c76e2a2f864f6e664 |