Metadata-Version: 2.4
Name: aia-utilities
Version: 0.1.1
Summary: Small utilities for Redis
Home-page: https://github.com/surgelove/aia_utilities
Author: surgelove
Author-email: 
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: redis>=4.0
Dynamic: license-file

# aia_utilities
Utilities that are shared between Aia microservices.

## Building and publishing to PyPI

1. Build distributions:

```bash
python -m pip install --upgrade build twine
python -m build
```

2. (Optional) Test upload to Test PyPI:

```bash
python -m twine upload --repository testpypi dist/*
```

3. Upload to production PyPI:

```bash
python -m twine upload dist/*
```

4. Install and verify:

```bash
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:

1. 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.

2. Use the token as your password and `__token__` as username.

Recommended (temporary) environment variables:

```bash
export TWINE_USERNAME='__token__'
export TWINE_PASSWORD='pypi-AgENd...your-token-here'
python -m twine upload --repository testpypi dist/*
```

Or store credentials in `~/.pypirc`:

```ini
[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:

```bash
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 testpypi` uses the Test PyPI endpoint).

## Basic usage example

```python
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.
