Small utilities for Redis
Project description
aia_utilities
Utilities that are shared between Aia microservices.
Building and publishing to PyPI
- Build distributions:
python -m pip install --upgrade build twine
python -m build
- (Optional) Test upload to Test PyPI:
python -m twine upload --repository testpypi dist/*
- Upload to production PyPI:
python -m twine upload dist/*
- Install and verify:
pip install aia-utilities
python -c "from aia_utilities import Redis_Utilities; print(Redis_Utilities)"
Troubleshooting Test PyPI 403 Forbidden errors
If twine upload to Test PyPI returns a 403 Forbidden with "Invalid or non-existent
authentication information", follow these steps:
-
Ensure you created an API token on Test PyPI: https://test.pypi.org/manage/account/#api-tokens
- When creating a token, copy it immediately. You cannot view it again.
-
Use the token as your password and
__token__as username.
Recommended (temporary) environment variables:
export TWINE_USERNAME='__token__'
export TWINE_PASSWORD='pypi-AgENd...your-token-here'
python -m twine upload --repository testpypi dist/*
Or store credentials in ~/.pypirc:
[distutils]
index-servers =
pypi
testpypi
[testpypi]
repository: https://test.pypi.org/legacy/
username: __token__
password: pypi-AgENd...your-token-here
[pypi]
repository: https://upload.pypi.org/legacy/
username: __token__
password: pypi-AgENd...your-token-here
Set ~/.pypirc permissions to be readable only by you:
chmod 600 ~/.pypirc
If you still get 403:
- Verify you used the Test PyPI token (tokens are separate between test and prod).
- Check for typos or truncated tokens when copying.
- Make sure the token hasn't been deleted or expired.
- Confirm you're pointing to the correct repository URL (
--repository testpypiuses the Test PyPI endpoint).
Basic usage example
from aia_utilities import Redis_Utilities
ru = Redis_Utilities()
ru.write('my:key:1', {'timestamp': 1, 'value': 'hello'})
print(ru.read_all('my:key'))
aia_utilities
Utilities that are shared between Aia microservices.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aia_utilities-0.1.4.tar.gz.
File metadata
- Download URL: aia_utilities-0.1.4.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
143b1717dc3e6fabe9894115b0f15512af4d3a65950b9f3a7af9f75183e5c448
|
|
| MD5 |
148ed21d81055ef95985d4a401cf68dc
|
|
| BLAKE2b-256 |
524df732ff0b148d5dd1eec96b185d81be7a65f60e6c3bafdc592d24c67be1ec
|
File details
Details for the file aia_utilities-0.1.4-py3-none-any.whl.
File metadata
- Download URL: aia_utilities-0.1.4-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cd88997d4195723bcc6496c03f9f2544ee0725d20efa0822a05bd6fd934ceb4
|
|
| MD5 |
097e3720bb7f484c5966d3ec7c195e91
|
|
| BLAKE2b-256 |
14ce2d705308efbb07074115ed0bf484ddb5956ee268259d63bbd261e7583fb4
|