https://github.com/upstash/redis-py
HTTP based Python Redis Client for Serverless and Edge Functions
https://github.com/upstash/redis-py
redis upstash upstash-sdk
Last synced: 3 months ago
JSON representation
HTTP based Python Redis Client for Serverless and Edge Functions
- Host: GitHub
- URL: https://github.com/upstash/redis-py
- Owner: upstash
- License: mit
- Created: 2023-03-04T09:30:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-11T13:35:00.000Z (6 months ago)
- Last Synced: 2025-06-22T02:50:03.607Z (4 months ago)
- Topics: redis, upstash, upstash-sdk
- Language: Python
- Homepage: https://docs.upstash.com/redis
- Size: 497 KB
- Stars: 49
- Watchers: 9
- Forks: 10
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Upstash Redis Python SDK
> [!NOTE]
> **This project is in GA Stage.**
>
> The Upstash Professional Support fully covers this project. It receives regular updates, and bug fixes. The Upstash team is committed to maintaining and improving its functionality.upstash-redis is a connectionless, HTTP-based Redis client for Python, designed to be used in serverless and serverful environments such as:
- AWS Lambda
- Vercel Serverless
- Google Cloud Functions
- and other environments where HTTP is preferred over TCP.Inspired by other Redis clients like [@upstash/redis](https://github.com/upstash/upstash-redis) and [redis-py](https://github.com/redis/redis-py),
the goal of this SDK is to provide a simple way to use Redis over the [Upstash REST API](https://docs.upstash.com/redis/features/restapi).The SDK is currently compatible with Python 3.8 and above.
- [Upstash Redis Python SDK](#upstash-redis-python-sdk)
- [Quick Start](#quick-start)
- [Install](#install)
- [PyPI](#pypi)
- [Usage](#usage)
- [BITFIELD and BITFIELD\_RO](#bitfield-and-bitfield_ro)
- [Custom commands](#custom-commands)
- [Encoding](#encoding)
- [Retry mechanism](#retry-mechanism)
- [Contributing](#contributing)
- [Preparing the environment](#preparing-the-environment)
- [Running tests](#running-tests)# Quick Start
## Install
### PyPI
```bash
pip install upstash-redis
```## Usage
To be able to use upstash-redis, you need to create a database on [Upstash](https://console.upstash.com/)
and grab `UPSTASH_REDIS_REST_URL` and `UPSTASH_REDIS_REST_TOKEN` from the console.```python
# for sync client
from upstash_redis import Redisredis = Redis(url="UPSTASH_REDIS_REST_URL", token="UPSTASH_REDIS_REST_TOKEN")
# for async client
from upstash_redis.asyncio import Redisredis = Redis(url="UPSTASH_REDIS_REST_URL", token="UPSTASH_REDIS_REST_TOKEN")
```Or, if you want to automatically load the credentials from the environment:
```python
# for sync use
from upstash_redis import Redis
redis = Redis.from_env()# for async use
from upstash_redis.asyncio import Redis
redis = Redis.from_env()
```If you are in a serverless environment that allows it, it's recommended to initialise the client outside the request handler
to be reused while your function is still hot.Running commands might look like this:
```python
from upstash_redis import Redisredis = Redis.from_env()
def main():
redis.set("a", "b")
print(redis.get("a"))# or for async context:
from upstash_redis.asyncio import Redis
redis = Redis.from_env()
async def main():
await redis.set("a", "b")
print(await redis.get("a"))
```### BITFIELD and BITFIELD_RO
One particular case is represented by these two chained commands, which are available as functions that return an instance of
the `BITFIELD` and, respectively, `BITFIELD_RO` classes. Use the `execute` function to run the commands.```python
redis.bitfield("test_key") \
.incrby(encoding="i8", offset=100, increment=100) \
.overflow("SAT") \
.incrby(encoding="i8", offset=100, increment=100) \
.execute()redis.bitfield_ro("test_key_2") \
.get(encoding="u8", offset=0) \
.get(encoding="u8", offset="#1") \
.execute()
```### Custom commands
If you want to run a command that hasn't been implemented, you can use the `execute` function of your client instance
and pass the command as a `list`.```python
redis.execute(command=["XLEN", "test_stream"])
```### Pipelines & Transactions
If you want to submit commands in batches to reduce the number of roundtrips, you can utilize pipelining or
transactions. The difference between pipelines and transactions is that transactions are atomic: no other
command is executed during that transaction. In pipelines there is no such guarantee.To use a pipeline, simply call the `pipeline` method:
```python
pipeline = redis.pipeline()pipeline.set("foo", 1)
pipeline.incr("foo")
pipeline.get("foo")result = pipeline.exec()
print(result)
# prints [True, 2, '2']
```For transaction, use `mutli`:
```python
pipeline = redis.multi()pipeline.set("foo", 1)
pipeline.incr("foo")
pipeline.get("foo")result = pipeline.exec()
print(result)
# prints [True, 2, '2']
```You can also chain the commands:
```python
pipeline = redis.pipeline()pipeline.set("foo", 1).incr("foo").get("foo")
result = pipeline.exec()print(result)
# prints [True, 2, '2']
```# Encoding
Although Redis can store invalid JSON data, there might be problems with the deserialization.
To avoid this, the Upstash REST proxy is capable of encoding the data as base64 on the server and then sending it to the client to be
decoded.For very large data, this can add a few milliseconds in latency. So, if you're sure that your data is valid JSON, you can set
`rest_encoding` to `None`.# Retry mechanism
upstash-redis has a fallback mechanism in case of network or API issues. By default, if a request fails it'll retry once, 3 seconds
after the error. If you want to customize that, set `rest_retries` and `rest_retry_interval` (in seconds).# Contributing
## Preparing the environment
This project uses [Poetry](https://python-poetry.org) for packaging and dependency management. Make sure you are able to create the poetry shell with relevant dependencies.You will also need a database on [Upstash](https://console.upstash.com/).
## Running tests
To run all the tests, make sure the poetry virtual environment activated with all
the necessary dependencies. Set the `UPSTASH_REDIS_REST_URL` and `UPSTASH_REDIS_REST_TOKEN` environment variables and run:```bash
poetry run pytest
```