Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jodal/pykka
🌀 Pykka makes it easier to build concurrent Python applications.
https://github.com/jodal/pykka
actor-model concurrency python
Last synced: 4 days ago
JSON representation
🌀 Pykka makes it easier to build concurrent Python applications.
- Host: GitHub
- URL: https://github.com/jodal/pykka
- Owner: jodal
- License: apache-2.0
- Created: 2010-11-14T23:45:50.000Z (about 14 years ago)
- Default Branch: main
- Last Pushed: 2024-11-19T23:02:47.000Z (24 days ago)
- Last Synced: 2024-11-26T07:02:20.826Z (18 days ago)
- Topics: actor-model, concurrency, python
- Language: Python
- Homepage: https://pykka.readthedocs.io
- Size: 1020 KB
- Stars: 1,222
- Watchers: 34
- Forks: 106
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-actor - Pykka - Pykka is a Python implementation of the actor model, which makes it easier to build concurrent applications [www.pykka.org](https://www.pykka.org) (Frameworks, Libraries and Tools / Application Frameworks)
README
# 🌀 Pykka
_Pykka makes it easier to build concurrent applications._
[![CI](https://img.shields.io/github/actions/workflow/status/jodal/pykka/ci.yml?branch=main)](https://github.com/jodal/pykka/actions/workflows/ci.yml)
[![Docs](https://img.shields.io/readthedocs/pykka)](https://pykka.readthedocs.io/en/latest/)
[![Coverage](https://img.shields.io/codecov/c/gh/jodal/pykka)](https://codecov.io/gh/jodal/pykka)
[![PyPI](https://img.shields.io/pypi/v/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-2024 Stein Magnus Jodal and contributors.
Pykka is licensed under the
[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).