Metadata-Version: 2.4
Name: apache-iggy
Version: 0.7.4.dev1
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Distributed Computing
Requires-Dist: pytest>=7.0,<9.0 ; extra == 'all'
Requires-Dist: pytest-asyncio>=0.21.0,<1.0 ; extra == 'all'
Requires-Dist: pytest-cov>=4.0,<7.0 ; extra == 'all'
Requires-Dist: pytest-xdist>=3.0,<4.0 ; extra == 'all'
Requires-Dist: pytest-timeout>=2.0,<3.0 ; extra == 'all'
Requires-Dist: loguru>=0.7.0,<1.0 ; extra == 'all'
Requires-Dist: testcontainers[docker]>=3.7.0,<5.0 ; extra == 'all'
Requires-Dist: maturin>=1.2,<2.0 ; extra == 'all'
Requires-Dist: black>=23.0,<27.0 ; extra == 'all'
Requires-Dist: isort>=5.12.0,<6.0 ; extra == 'all'
Requires-Dist: mypy>=1.5.0,<2.0 ; extra == 'all'
Requires-Dist: ruff>=0.1.0,<1.0 ; extra == 'all'
Requires-Dist: maturin>=1.2,<2.0 ; extra == 'dev'
Requires-Dist: black>=23.0,<27.0 ; extra == 'dev'
Requires-Dist: isort>=5.12.0,<6.0 ; extra == 'dev'
Requires-Dist: mypy>=1.5.0,<2.0 ; extra == 'dev'
Requires-Dist: ruff>=0.1.0,<1.0 ; extra == 'dev'
Requires-Dist: pytest>=7.0,<9.0 ; extra == 'testing'
Requires-Dist: pytest-asyncio>=0.21.0,<1.0 ; extra == 'testing'
Requires-Dist: pytest-cov>=4.0,<7.0 ; extra == 'testing'
Requires-Dist: pytest-xdist>=3.0,<4.0 ; extra == 'testing'
Requires-Dist: pytest-timeout>=2.0,<3.0 ; extra == 'testing'
Requires-Dist: testcontainers[docker]>=3.7.0,<5.0 ; extra == 'testing-docker'
Provides-Extra: all
Provides-Extra: dev
Provides-Extra: testing
Provides-Extra: testing-docker
License-File: LICENSE
License-File: NOTICE
Summary: Apache Iggy is the persistent message streaming platform written in Rust, supporting QUIC, TCP and HTTP transport protocols, capable of processing millions of messages per second.
Keywords: streaming,messaging,pubsub,iggy,rust,performance
Author-email: Iggy Committers <dev@iggy.apache.org>
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Bug Tracker, https://github.com/apache/iggy/issues
Project-URL: Discord, https://discord.gg/C5Sux5NcRa
Project-URL: Documentation, https://iggy.apache.org/docs/
Project-URL: Homepage, https://iggy.apache.org
Project-URL: Repository, https://github.com/apache/iggy

# apache-iggy

[![discord-badge](https://img.shields.io/discord/1144142576266530928)](https://discord.gg/C5Sux5NcRa)

Apache Iggy is the persistent message streaming platform written in Rust, supporting QUIC, TCP and HTTP transport protocols, capable of processing millions of messages per second.

## Installation

### Basic Installation

```bash
# Using uv
uv add apache-iggy

# Using pip
python3 -m venv .venv
source .venv/bin/activate
pip install apache-iggy
```

### Supported Python Versions

- Python 3.10+

### Local Development

```bash
# Start server for testing using docker
docker compose -f docker-compose.test.yml up --build

# Or use cargo
cargo run --bin iggy-server -- --with-default-root-credentials --fresh

# Using uv:
uv sync --all-extras
uv run maturin develop
uv run pytest tests/ -v # Run tests (requires iggy-server running)

# Using pip:
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[all]"
maturin develop
pytest tests/ -v # Run tests (requires iggy-server running)
```

## Examples

Refer to the [examples/python/](https://github.com/apache/iggy/tree/master/examples/python) directory for usage examples.

## Contributing

See [CONTRIBUTING.md](https://github.com/apache/iggy/blob/master/foreign/python/CONTRIBUTING.md) for development setup and guidelines.

## License

Licensed under the Apache License 2.0. See [LICENSE](https://github.com/apache/iggy/blob/master/foreign/python/LICENSE) for details.

