{ "info": { "author": "Thomas Amland", "author_email": "thomas.amland@googlemail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries" ], "description": "============\nPythonActors\n============\n\nA python actor framework.\n\n.. image:: https://img.shields.io/pypi/v/actors.svg\n :target: https://pypi.python.org/pypi/actors\n\n\nFeatures\n--------\n\n* Easy to build concurrency with the actor model.\n* Lightweight. Can run millions of actors on a single thread.\n* Integrated supervision for managing actor lifetime and faults.\n* Extensible with new executors and dispatchers.\n* An Akka-like API.\n\n\nInstallation\n------------\n\nInstall from `PyPI `_ using ``pip``:\n\n.. code-block:: bash\n\n $ pip install actors\n\n\nObligatory greeter\n------------------\n\n.. code-block:: python\n\n from actors import Actor, ActorSystem\n\n class Greeter(Actor):\n def receive(self, message):\n print(\"Hello %s\" % message)\n\n system = ActorSystem()\n greeter = system.actor_of(GreetingActor)\n greeter.tell(\"world\")\n system.terminate()\n\n\nDocumentation\n-------------\n\nDocumentation is available at http://pythonhosted.org/actors/.", "description_content_type": null, "docs_url": "https://pythonhosted.org/actors/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/tamland/python-actors/", "keywords": "actors,reactive,concurrent,threading,message passing,asynchronous", "license": "Apache License 2.0", "maintainer": null, "maintainer_email": null, "name": "actors", "package_url": "https://pypi.org/project/actors/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/actors/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/tamland/python-actors/" }, "release_url": "https://pypi.org/project/actors/0.5.1b1/", "requires_dist": null, "requires_python": null, "summary": "Lightweight actor framework with supervision", "version": "0.5.1b1" }, "last_serial": 1833543, "releases": { "0.5.0b1": [ { "comment_text": "", "digests": { "md5": "efb91f4d6930191c6d1a7dfd89e92bdd", "sha256": "825ada36c446cec51e8296185aee287d8c321c98efa14606df906f773b7b95ed" }, "downloads": -1, "filename": "actors-0.5.0b1.tar.gz", "has_sig": false, "md5_digest": "efb91f4d6930191c6d1a7dfd89e92bdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19529, "upload_time": "2015-10-29T09:57:31", "url": "https://files.pythonhosted.org/packages/53/5c/381dc2602ac8378228947dccd55b3ac3a2ff21a1d5729744f3401ccbc7d0/actors-0.5.0b1.tar.gz" } ], "0.5.1b1": [ { "comment_text": "", "digests": { "md5": "b02021d43a7078267433c3bac7a08a79", "sha256": "2030cbc2c1c8729bd7c044e44085a2b13e923b633f36855c75d1d335d7125452" }, "downloads": -1, "filename": "actors-0.5.1b1.tar.gz", "has_sig": false, "md5_digest": "b02021d43a7078267433c3bac7a08a79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21331, "upload_time": "2015-11-25T17:55:40", "url": "https://files.pythonhosted.org/packages/43/d8/3db8131a52cf4ee1db46da738fb48484dbdf9132730143af8ed753fc9e76/actors-0.5.1b1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b02021d43a7078267433c3bac7a08a79", "sha256": "2030cbc2c1c8729bd7c044e44085a2b13e923b633f36855c75d1d335d7125452" }, "downloads": -1, "filename": "actors-0.5.1b1.tar.gz", "has_sig": false, "md5_digest": "b02021d43a7078267433c3bac7a08a79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21331, "upload_time": "2015-11-25T17:55:40", "url": "https://files.pythonhosted.org/packages/43/d8/3db8131a52cf4ee1db46da738fb48484dbdf9132730143af8ed753fc9e76/actors-0.5.1b1.tar.gz" } ] }