redisconfig
Simple, robust Redis configuration for Python
Installation
pip install redisconfig
Basic Usage
>>> import redisconfig
>>> config = redisconfig.RedisConfig()
RedisConfig(host='127.0.0.1', port=6379, db=0, ssl=False, password=None)
>>> config.host
'127.0.0.1'
>>> config.url()
'redis://127.0.0.1:6379/0'
>>> config.connection()
Redis<ConnectionPool<Connection<host=127.0.0.1,port=6379,db=0>>>
REDIS_URL Environment Variable
In many cases the Redis connection URL is stored in the REDIS_URL environment variable. redisconfig will use that value as a default for several operations, such as the module-level config() and connection() methods. With an environment variable of REDIS_URL=rediss://noop:badpassword@10.0.0.1/2:
>>> redisconfig.config()
RedisConfig(host='10.0.0.1', port=6379, db=2, ssl=True, password='badpassword')
>>> redisconfig.connection()
Redis<ConnectionPool<SSLConnection<host=10.0.0.1,port=6379,db=2>>>
Update Configuration Values
You can update values directly like config.db = 5 but sometimes you want to change values without changing the underlying configuration. The url() and replace() methods on RedisConfig allow you to make new urls or configs without changing the original values.
Create a new URL:
>>> config = redisconfig.RedisConfig()
>>> config.url()
'redis://127.0.0.1:6379/0'
>>> config.url(db=2)
'redis://127.0.0.1:6379/2'
Create a new RedisConfig instance:
>>> config.replace(db='10.0.0.1')
RedisConfig(host='10.0.0.1', port=6379, db=0, ssl=False, password=None)
Developing
The following things are needed to use this repository:
Once you have the prerequisites installed and have cloned the repository you can ready your development environment with poetry install -E dev. You should see output similar to:
$ poetry install -E dev
Creating virtualenv redisconfig in /tmp/redisconfig/.venv
Installing dependencies from lock file
...
Installing the current project: redisconfig (0.1.1)
Testing
poetry run pytest
Changelog
0.1.1
- Fix typing-extensions import on Python >=3.8
0.1.0
- Initial release
Release files for redisconfig 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| redisconfig-0.1.1.tar.gz | 5.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| redisconfig-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 11.4 kB
Release files / redisconfig-0.1.1.tar.gz
| Download URL | redisconfig-0.1.1.tar.gz |
|---|---|
| Size | 5.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
94395a65b6d09fae00c8947f27aff61b5c9f13c066d66ed242c772c7c5ea4211
|
|
BLAKE2b-256 checksum How to use checksums |
a795daa8d2e2c54a7206887870b9ac18133fc98e05f56285f5fd3e59f4177d16
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.1.13 CPython/3.10.4 Darwin/21.5.0
|
Release files / redisconfig-0.1.1-py3-none-any.whl
| Download URL | redisconfig-0.1.1-py3-none-any.whl |
|---|---|
| Size | 5.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2bfce2b77d4876ae9c732bb4b6875a18f601b91a7babc821def89d1468bc9fe2
|
|
BLAKE2b-256 checksum How to use checksums |
a3b818de312a7ef40ed5abc04bad522865beeebaca9af8e314aca8cd76c28637
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.1.13 CPython/3.10.4 Darwin/21.5.0
|