1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
Metadata-Version: 2.4
Name: pykka
Version: 4.2.0
Summary: Pykka is a Python implementation of the actor model
Project-URL: Source code, https://github.com/jodal/pykka
Project-URL: Documentation, https://pykka.readthedocs.io/
Author-email: Stein Magnus Jodal <stein.magnus@jodal.no>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: actor,concurrency,threading
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Requires-Dist: typing-extensions>=4.0.0; python_version < '3.10'
Description-Content-Type: text/markdown
# 🌀 Pykka
_Pykka makes it easier to build concurrent applications._
[](https://github.com/jodal/pykka/actions/workflows/ci.yml)
[](https://pykka.readthedocs.io/en/latest/)
[](https://codecov.io/gh/jodal/pykka)
[](https://pypi.org/project/pykka/)
---
Pykka is a Python implementation of the
[actor model](https://en.wikipedia.org/wiki/Actor_model).
The actor model introduces some simple rules to control
the sharing of state and cooperation between execution units,
which makes it easier to build concurrent applications.
For a quickstart guide and a complete API reference,
see the [documentation](https://pykka.readthedocs.io/).
## Installation
Pykka requires Python 3.9 or newer.
Pykka is available from [PyPI](https://pypi.org/project/pykka/):
```
python3 -m pip install pykka
```
## Project resources
- [Documentation](https://pykka.readthedocs.io/)
- [Source code](https://github.com/jodal/pykka)
- [Releases](https://github.com/jodal/pykka/releases)
- [Issue tracker](https://github.com/jodal/pykka/issues)
- [Contributors](https://github.com/jodal/pykka/graphs/contributors)
- [Users](https://github.com/jodal/pykka/wiki/Users)
## License
Pykka is copyright 2010-2025 Stein Magnus Jodal and contributors.
Pykka is licensed under the
[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|