{ "info": { "author": "Robinhood Markets, Inc.", "author_email": "contact@fauststream.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: AsyncIO", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: BSD", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: System :: Distributed Computing", "Topic :: System :: Networking" ], "description": ".. XXX Need to change this image to readthedocs before release\n\n.. image:: https://raw.githubusercontent.com/robinhood/faust/8ee5e209322d9edf5bdb79b992ef986be2de4bb4/artwork/banner-alt1.png\n\n===========================\n Python Stream Processing\n===========================\n\n|build-status| |coverage| |license| |wheel| |pyversion| |pyimp|\n\n:Version: 1.10.4\n:Web: http://faust.readthedocs.io/\n:Download: http://pypi.org/project/faust\n:Source: http://github.com/robinhood/faust\n:Keywords: distributed, stream, async, processing, data, queue, state management\n\n\n.. sourcecode:: python\n\n # Python Streams\n # Forever scalable event processing & in-memory durable K/V store;\n # as a library w/ asyncio & static typing.\n import faust\n\n**Faust** is a stream processing library, porting the ideas from\n`Kafka Streams`_ to Python.\n\nIt is used at `Robinhood`_ to build high performance distributed systems\nand real-time data pipelines that process billions of events every day.\n\nFaust provides both *stream processing* and *event processing*,\nsharing similarity with tools such as\n`Kafka Streams`_, `Apache Spark`_/`Storm`_/`Samza`_/`Flink`_,\n\nIt does not use a DSL, it's just Python!\nThis means you can use all your favorite Python libraries\nwhen stream processing: NumPy, PyTorch, Pandas, NLTK, Django,\nFlask, SQLAlchemy, ++\n\nFaust requires Python 3.6 or later for the new `async/await`_ syntax,\nand variable type annotations.\n\nHere's an example processing a stream of incoming orders:\n\n.. sourcecode:: python\n\n app = faust.App('myapp', broker='kafka://localhost')\n\n # Models describe how messages are serialized:\n # {\"account_id\": \"3fae-...\", \"amount\": 3}\n class Order(faust.Record):\n account_id: str\n amount: int\n\n @app.agent(value_type=Order)\n async def order(orders):\n async for order in orders:\n # process infinite stream of orders.\n print(f'Order for {order.account_id}: {order.amount}')\n\nThe Agent decorator defines a \"stream processor\" that essentially\nconsumes from a Kafka topic and does something for every event it receives.\n\nThe agent is an ``async def`` function, so can also perform\nother operations asynchronously, such as web requests.\n\nThis system can persist state, acting like a database.\nTables are named distributed key/value stores you can use\nas regular Python dictionaries.\n\nTables are stored locally on each machine using a super fast\nembedded database written in C++, called `RocksDB`_.\n\nTables can also store aggregate counts that are optionally \"windowed\"\nso you can keep track\nof \"number of clicks from the last day,\" or\n\"number of clicks in the last hour.\" for example. Like `Kafka Streams`_,\nwe support tumbling, hopping and sliding windows of time, and old windows\ncan be expired to stop data from filling up.\n\nFor reliability we use a Kafka topic as \"write-ahead-log\".\nWhenever a key is changed we publish to the changelog.\nStandby nodes consume from this changelog to keep an exact replica\nof the data and enables instant recovery should any of the nodes fail.\n\nTo the user a table is just a dictionary, but data is persisted between\nrestarts and replicated across nodes so on failover other nodes can take over\nautomatically.\n\nYou can count page views by URL:\n\n.. sourcecode:: python\n\n # data sent to 'clicks' topic sharded by URL key.\n # e.g. key=\"http://example.com\" value=\"1\"\n click_topic = app.topic('clicks', key_type=str, value_type=int)\n\n # default value for missing URL will be 0 with `default=int`\n counts = app.Table('click_counts', default=int)\n\n @app.agent(click_topic)\n async def count_click(clicks):\n async for url, count in clicks.items():\n counts[url] += count\n\nThe data sent to the Kafka topic is partitioned, which means\nthe clicks will be sharded by URL in such a way that every count\nfor the same URL will be delivered to the same Faust worker instance.\n\n\nFaust supports any type of stream data: bytes, Unicode and serialized\nstructures, but also comes with \"Models\" that use modern Python\nsyntax to describe how keys and values in streams are serialized:\n\n.. sourcecode:: python\n\n # Order is a json serialized dictionary,\n # having these fields:\n\n class Order(faust.Record):\n account_id: str\n product_id: str\n price: float\n quantity: float = 1.0\n\n orders_topic = app.topic('orders', key_type=str, value_type=Order)\n\n @app.agent(orders_topic)\n async def process_order(orders):\n async for order in orders:\n # process each order using regular Python\n total_price = order.price * order.quantity\n await send_order_received_email(order.account_id, order)\n\nFaust is statically typed, using the ``mypy`` type checker,\nso you can take advantage of static types when writing applications.\n\nThe Faust source code is small, well organized, and serves as a good\nresource for learning the implementation of `Kafka Streams`_.\n\n**Learn more about Faust in the** `introduction`_ **introduction page**\n to read more about Faust, system requirements, installation instructions,\n community resources, and more.\n\n**or go directly to the** `quickstart`_ **tutorial**\n to see Faust in action by programming a streaming application.\n\n**then explore the** `User Guide`_\n for in-depth information organized by topic.\n\n.. _`Robinhood`: http://robinhood.com\n.. _`async/await`:\n https://medium.freecodecamp.org/a-guide-to-asynchronous-programming-in-python-with-asyncio-232e2afa44f6\n.. _`Kafka Streams`: https://kafka.apache.org/documentation/streams\n.. _`Apache Spark`: http://spark.apache.org\n.. _`Storm`: http://storm.apache.org\n.. _`Samza`: http://samza.apache.org\n.. _`Flink`: http://flink.apache.org\n.. _`RocksDB`: http://rocksdb.org\n\n.. _`introduction`: http://faust.readthedocs.io/en/latest/introduction.html\n\n.. _`quickstart`: http://faust.readthedocs.io/en/latest/playbooks/quickstart.html\n\n.. _`User Guide`: http://faust.readthedocs.io/en/latest/userguide/index.html\n\nFaust is...\n===========\n\n**Simple**\n Faust is extremely easy to use. To get started using other stream processing\n solutions you have complicated hello-world projects, and\n infrastructure requirements. Faust only requires Kafka,\n the rest is just Python, so If you know Python you can already use Faust to do\n stream processing, and it can integrate with just about anything.\n\n Here's one of the easier applications you can make::\n\n import faust\n\n class Greeting(faust.Record):\n from_name: str\n to_name: str\n\n app = faust.App('hello-app', broker='kafka://localhost')\n topic = app.topic('hello-topic', value_type=Greeting)\n\n @app.agent(topic)\n async def hello(greetings):\n async for greeting in greetings:\n print(f'Hello from {greeting.from_name} to {greeting.to_name}')\n\n @app.timer(interval=1.0)\n async def example_sender(app):\n await hello.send(\n value=Greeting(from_name='Faust', to_name='you'),\n )\n\n if __name__ == '__main__':\n app.main()\n\n You're probably a bit intimidated by the `async` and `await` keywords,\n but you don't have to know how ``asyncio`` works to use\n Faust: just mimic the examples, and you'll be fine.\n\n The example application starts two tasks: one is processing a stream,\n the other is a background thread sending events to that stream.\n In a real-life application, your system will publish\n events to Kafka topics that your processors can consume from,\n and the background thread is only needed to feed data into our\n example.\n\n**Highly Available**\n Faust is highly available and can survive network problems and server\n crashes. In the case of node failure, it can automatically recover,\n and tables have standby nodes that will take over.\n\n**Distributed**\n Start more instances of your application as needed.\n\n**Fast**\n A single-core Faust worker instance can already process tens of thousands\n of events every second, and we are reasonably confident that throughput will\n increase once we can support a more optimized Kafka client.\n\n**Flexible**\n Faust is just Python, and a stream is an infinite asynchronous iterator.\n If you know how to use Python, you already know how to use Faust,\n and it works with your favorite Python libraries like Django, Flask,\n SQLAlchemy, NTLK, NumPy, SciPy, TensorFlow, etc.\n\nInstallation\n============\n\nYou can install Faust either via the Python Package Index (PyPI)\nor from source.\n\nTo install using `pip`:\n\n.. sourcecode:: console\n\n $ pip install -U faust\n\nBundles\n-------\n\nFaust also defines a group of ``setuptools`` extensions that can be used\nto install Faust and the dependencies for a given feature.\n\nYou can specify these in your requirements or on the ``pip``\ncommand-line by using brackets. Separate multiple bundles using the comma:\n\n.. sourcecode:: console\n\n $ pip install \"faust[rocksdb]\"\n\n $ pip install \"faust[rocksdb,uvloop,fast,redis]\"\n\nThe following bundles are available:\n\nStores\n~~~~~~\n\n:``faust[rocksdb]``:\n for using `RocksDB`_ for storing Faust table state.\n\n **Recommended in production.**\n\n\nCaching\n~~~~~~~\n\n:``faust[redis]``:\n for using `Redis_` as a simple caching backend (Memcached-style).\n\nCodecs\n~~~~~~\n\n:``faust[yaml]``:\n for using YAML and the ``PyYAML`` library in streams.\n\nOptimization\n~~~~~~~~~~~~\n\n:``faust[fast]``:\n for installing all the available C speedup extensions to Faust core.\n\nSensors\n~~~~~~~\n\n:``faust[datadog]``:\n for using the Datadog Faust monitor.\n\n:``faust[statsd]``:\n for using the Statsd Faust monitor.\n\nEvent Loops\n~~~~~~~~~~~\n\n:``faust[uvloop]``:\n for using Faust with ``uvloop``.\n\n:``faust[eventlet]``:\n for using Faust with ``eventlet``\n\nDebugging\n~~~~~~~~~\n\n:``faust[debug]``:\n for using ``aiomonitor`` to connect and debug a running Faust worker.\n\n:``faust[setproctitle]``:\n when the ``setproctitle`` module is installed the Faust worker will\n use it to set a nicer process name in ``ps``/``top`` listings.\n Also installed with the ``fast`` and ``debug`` bundles.\n\nDownloading and installing from source\n--------------------------------------\n\nDownload the latest version of Faust from\nhttp://pypi.org/project/faust\n\nYou can install it by doing:\n\n.. sourcecode:: console\n\n $ tar xvfz faust-0.0.0.tar.gz\n $ cd faust-0.0.0\n $ python setup.py build\n # python setup.py install\n\nThe last command must be executed as a privileged user if\nyou are not currently using a virtualenv.\n\nUsing the development version\n-----------------------------\n\nWith pip\n~~~~~~~~\n\nYou can install the latest snapshot of Faust using the following\n``pip`` command:\n\n.. sourcecode:: console\n\n $ pip install https://github.com/robinhood/faust/zipball/master#egg=faust\n\nFAQ\n===\n\nCan I use Faust with Django/Flask/etc.?\n---------------------------------------\n\nYes! Use ``eventlet`` as a bridge to integrate with ``asyncio``.\n\n\nUsing ``eventlet``\n~~~~~~~~~~~~~~~~~~~~~~\n\nThis approach works with any blocking Python library that can work with\n``eventlet``.\n\nUsing ``eventlet`` requires you to install the ``aioeventlet`` module,\nand you can install this as a bundle along with Faust:\n\n.. sourcecode:: console\n\n $ pip install -U faust[eventlet]\n\nThen to actually use eventlet as the event loop you have to either\nuse the ``-L `` argument to the ``faust`` program:\n\n.. sourcecode:: console\n\n $ faust -L eventlet -A myproj worker -l info\n\nor add ``import mode.loop.eventlet`` at the top of your entry point script:\n\n.. sourcecode:: python\n\n #!/usr/bin/env python3\n import mode.loop.eventlet # noqa\n\n.. warning::\n\n It's very important this is at the very top of the module,\n and that it executes before you import libraries.\n\nCan I use Faust with Tornado?\n-----------------------------\n\nYes! Use the ``tornado.platform.asyncio`` bridge:\nhttp://www.tornadoweb.org/en/stable/asyncio.html\n\nCan I use Faust with Twisted?\n-----------------------------\n\nYes! Use the ``asyncio`` reactor implementation:\nhttps://twistedmatrix.com/documents/17.1.0/api/twisted.internet.asyncioreactor.html\n\n\nWill you support Python 2.7 or Python 3.5?\n------------------------------------------\n\nNo. Faust requires Python 3.6 or later, since it heavily uses features that were\nintroduced in Python 3.6 (`async`, `await`, variable type annotations).\n\n\nI get a maximum number of open files exceeded error by RocksDB when running a Faust app locally. How can I fix this?\n--------------------------------------------------------------------------------------------------------------------\n\nYou may need to increase the limit for the maximum number of open files. The\nfollowing post explains how to do so on OS X:\nhttps://blog.dekstroza.io/ulimit-shenanigans-on-osx-el-capitan/\n\n\nWhat kafka versions faust supports?\n---------------------------------------\n\nFaust supports kafka with version >= 0.10.\n\nGetting Help\n============\n\nSlack\n-----\n\nFor discussions about the usage, development, and future of Faust,\nplease join the fauststream Slack.\n\n* https://fauststream.slack.com\n* Sign-up: https://join.slack.com/t/fauststream/shared_invite/enQtNDEzMTIyMTUyNzU2LTIyMjNjY2M2YzA2OWFhMDlmMzVkODk3YTBlYThlYmZiNTUwZDJlYWZiZTdkN2Q4ZGU4NWM4YWMyNTM5MGQ5OTg\n\nResources\n=========\n\nBug tracker\n-----------\n\nIf you have any suggestions, bug reports, or annoyances please report them\nto our issue tracker at https://github.com/robinhood/faust/issues/\n\nLicense\n=======\n\nThis software is licensed under the `New BSD License`. See the ``LICENSE``\nfile in the top distribution directory for the full license text.\n\n.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround\n\nContributing\n============\n\nDevelopment of `Faust` happens at GitHub: https://github.com/robinhood/faust\n\nYou're highly encouraged to participate in the development\nof `Faust`.\n\nBe sure to also read the `Contributing to Faust`_ section in the\ndocumentation.\n\n.. _`Contributing to Faust`:\n http://faust.readthedocs.io/en/latest/contributing.html\n\nCode of Conduct\n===============\n\nEveryone interacting in the project's code bases, issue trackers, chat rooms,\nand mailing lists is expected to follow the Faust Code of Conduct.\n\nAs contributors and maintainers of these projects, and in the interest of fostering\nan open and welcoming community, we pledge to respect all people who contribute\nthrough reporting issues, posting feature requests, updating documentation,\nsubmitting pull requests or patches, and other activities.\n\nWe are committed to making participation in these projects a harassment-free\nexperience for everyone, regardless of level of experience, gender,\ngender identity and expression, sexual orientation, disability,\npersonal appearance, body size, race, ethnicity, age,\nreligion, or nationality.\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery\n* Personal attacks\n* Trolling or insulting/derogatory comments\n* Public or private harassment\n* Publishing other's private information, such as physical\n or electronic addresses, without explicit permission\n* Other unethical or unprofessional conduct.\n\nProject maintainers have the right and responsibility to remove, edit, or reject\ncomments, commits, code, wiki edits, issues, and other contributions that are\nnot aligned to this Code of Conduct. By adopting this Code of Conduct,\nproject maintainers commit themselves to fairly and consistently applying\nthese principles to every aspect of managing this project. Project maintainers\nwho do not follow or enforce the Code of Conduct may be permanently removed from\nthe project team.\n\nThis code of conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community.\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by opening an issue or contacting one or more of the project maintainers.\n\nThis Code of Conduct is adapted from the Contributor Covenant,\nversion 1.2.0 available at http://contributor-covenant.org/version/1/2/0/.\n\n.. |build-status| image:: https://secure.travis-ci.org/robinhood/faust.png?branch=master\n :alt: Build status\n :target: https://travis-ci.org/robinhood/faust\n\n.. |coverage| image:: https://codecov.io/github/robinhood/faust/coverage.svg?branch=master\n :target: https://codecov.io/github/robinhood/faust?branch=master\n\n.. |license| image:: https://img.shields.io/pypi/l/faust.svg\n :alt: BSD License\n :target: https://opensource.org/licenses/BSD-3-Clause\n\n.. |wheel| image:: https://img.shields.io/pypi/wheel/faust.svg\n :alt: faust can be installed via wheel\n :target: http://pypi.org/project/faust/\n\n.. |pyversion| image:: https://img.shields.io/pypi/pyversions/faust.svg\n :alt: Supported Python versions.\n :target: http://pypi.org/project/faust/\n\n.. |pyimp| image:: https://img.shields.io/pypi/implementation/faust.svg\n :alt: Support Python implementations.\n :target: http://pypi.org/project/faust/\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://faust.readthedocs.io/", "keywords": "stream,processing,asyncio,distributed,queue,kafka", "license": "BSD 3-Clause", "maintainer": "", "maintainer_email": "", "name": "faust", "package_url": "https://pypi.org/project/faust/", "platform": "any", "project_url": "https://pypi.org/project/faust/", "project_urls": { "Bug Reports": "https://github.com/robinhood/faust/issues", "Documentation": "https://faust.readthedocs.io/", "Homepage": "http://faust.readthedocs.io/", "Source": "https://github.com/robinhood/faust" }, "release_url": "https://pypi.org/project/faust/1.10.4/", "requires_dist": [ "aiohttp (<4.0,>=3.5.2)", "aiohttp-cors (<2.0,>=0.7)", "robinhood-aiokafka (<1.2,>=1.1.6)", "click (<8.0,>=6.7)", "colorclass (<3.0,>=2.2)", "mode (<4.4,>=4.3.2)", "opentracing (<2.0.0,>=1.3.0)", "terminaltables (<4.0,>=3.1)", "venusian (<2.0,>=1.1)", "yarl (<2.0,>=1.0)", "croniter (>=0.3.16)", "mypy-extensions", "aiodns (>=1.1); extra == 'aiodns'", "aiomonitor (>=0.4.4); extra == 'aiomonitor'", "cchardet (>=2.1); extra == 'cchardet'", "ciso8601; extra == 'ciso8601'", "confluent-kafka (~=1.2.0); extra == 'ckafka'", "cython; extra == 'cython'", "datadog; extra == 'datadog'", "setproctitle (>=1.1); extra == 'debug'", "aiomonitor (>=0.4.4); extra == 'debug'", "aioeventlet (~=0.5.1); extra == 'eventlet'", "dnspython; extra == 'eventlet'", "aiodns (>=1.1); extra == 'fast'", "cchardet (>=2.1); extra == 'fast'", "ciso8601; extra == 'fast'", "cython; extra == 'fast'", "orjson (<3.0,>=2.0); extra == 'fast'", "setproctitle (>=1.1); extra == 'fast'", "orjson (<3.0,>=2.0); extra == 'orjson'", "aredis (<2.0,>=1.1.3); extra == 'redis'", "python-rocksdb (>=0.6.7); extra == 'rocksdb'", "setproctitle (>=1.1); extra == 'setproctitle'", "statsd (~=3.3.0); extra == 'statsd'", "uvloop (>=0.8.1); extra == 'uvloop'", "pyyaml (>=5.1); extra == 'yaml'" ], "requires_python": ">=3.6.0", "summary": "Python Stream processing.", "version": "1.10.4", "yanked": false, "yanked_reason": null }, "last_serial": 6699620, "releases": { "1.0.26": [ { "comment_text": "", "digests": { "md5": "4aa31a5c43b6a392afa3c12cd29c3fa2", "sha256": "4a59e753be711b0342c1af296488de53d5c6594a09e0feb47deed1de1a518265" }, "downloads": -1, "filename": "faust-1.0.26-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4aa31a5c43b6a392afa3c12cd29c3fa2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 219053, "upload_time": "2018-07-31T15:30:11", "upload_time_iso_8601": "2018-07-31T15:30:11.733257Z", "url": "https://files.pythonhosted.org/packages/6a/ad/3038f520a7874decfacdda2a4c5733bb278e1b4589afaf7fad42bd1d33d4/faust-1.0.26-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bef849306cd1963fa52cc25c19801cd8", "sha256": "1bd6595edc5bff1b19a9ec7be77c9e4195c8cbac03db9666ea1277e7e60c62cf" }, "downloads": -1, "filename": "faust-1.0.26.tar.gz", "has_sig": false, "md5_digest": "bef849306cd1963fa52cc25c19801cd8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 516385, "upload_time": "2018-07-31T15:30:14", "upload_time_iso_8601": "2018-07-31T15:30:14.770048Z", "url": "https://files.pythonhosted.org/packages/af/ba/a5b50fbde91bd919b9e9adee5b4d3b5140bee0e772d1854a4e468123d198/faust-1.0.26.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.27": [ { "comment_text": "", "digests": { "md5": "4878952788c7d662fbae6a9a6c9ce002", "sha256": "d556c822668efb5ac87a6451a42a591b2290c77f6320cfc3af5efb92a14fcf76" }, "downloads": -1, "filename": "faust-1.0.27-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4878952788c7d662fbae6a9a6c9ce002", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 218800, "upload_time": "2018-07-31T23:13:10", "upload_time_iso_8601": "2018-07-31T23:13:10.694264Z", "url": "https://files.pythonhosted.org/packages/72/6e/6d2ffa8fdecf932ddf0687c7e8d1e29f2ded1dbbdf11235cea0149df5f79/faust-1.0.27-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c520a6b38372baa789742521bb86d1f3", "sha256": "0dbea48de80a3c1f9d57763fb1545d648e0478eb845d90488b6e4e2c907c5787" }, "downloads": -1, "filename": "faust-1.0.27.tar.gz", "has_sig": false, "md5_digest": "c520a6b38372baa789742521bb86d1f3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 417053, "upload_time": "2018-07-31T23:13:12", "upload_time_iso_8601": "2018-07-31T23:13:12.600795Z", "url": "https://files.pythonhosted.org/packages/58/70/18cbeafa29d2c0c154e284a3d94a0bca45255d2c6476079ae8dd0016009e/faust-1.0.27.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.28": [ { "comment_text": "", "digests": { "md5": "9f6735bd4da822940e4a4975693c5b7b", "sha256": "ced80629e609205a1411d38dabca339c08c38c1940c51635fc30bc8b74edddad" }, "downloads": -1, "filename": "faust-1.0.28-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9f6735bd4da822940e4a4975693c5b7b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 220887, "upload_time": "2018-08-09T06:45:38", "upload_time_iso_8601": "2018-08-09T06:45:38.496427Z", "url": "https://files.pythonhosted.org/packages/1e/c7/9a06f92fc0d13c369822b681f092c05ae115a28d0af8692d841832d944ed/faust-1.0.28-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8eecf01a1fcd5e7e9a536e093075e4d9", "sha256": "fde5e27f8241b3c16fcce11d430f3867c66f642ea069a223b1dbf864dc819270" }, "downloads": -1, "filename": "faust-1.0.28.tar.gz", "has_sig": false, "md5_digest": "8eecf01a1fcd5e7e9a536e093075e4d9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 2108212, "upload_time": "2018-08-09T20:47:52", "upload_time_iso_8601": "2018-08-09T20:47:52.641029Z", "url": "https://files.pythonhosted.org/packages/d9/55/2cf29ee6685c1ebf7e3f70060165a98721fd3b4c6b8eb16db34aea923674/faust-1.0.28.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.29": [ { "comment_text": "", "digests": { "md5": "98b08f742cbb5550ea6a1820d11454b4", "sha256": "32081aec306a6cce099d28a9ac92145f96b483dfd551cc9d4555b0933afa8d20" }, "downloads": -1, "filename": "faust-1.0.29-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "98b08f742cbb5550ea6a1820d11454b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 221173, "upload_time": "2018-08-11T01:15:21", "upload_time_iso_8601": "2018-08-11T01:15:21.969904Z", "url": "https://files.pythonhosted.org/packages/0a/1e/00abf243516580d865885175fec3653d0cabc96905e1a6f5025f3e1692ab/faust-1.0.29-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e4128a7b82fce76c1571a5128d75bd6", "sha256": "c2ef3385654d9bed5e5b893630d32a447434014246b16283e22c6a5106128581" }, "downloads": -1, "filename": "faust-1.0.29.tar.gz", "has_sig": false, "md5_digest": "9e4128a7b82fce76c1571a5128d75bd6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 2108610, "upload_time": "2018-08-11T01:15:24", "upload_time_iso_8601": "2018-08-11T01:15:24.401378Z", "url": "https://files.pythonhosted.org/packages/8e/f1/a0de2c397272d980bf5b964f44315e8c2260c002a833d37e00ed1081ec79/faust-1.0.29.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.30": [ { "comment_text": "", "digests": { "md5": "79a80a0f85179abebfb2b9bb6b41cd06", "sha256": "0fb4a41be13df7b72dbcfc09e94023c45d61010b792657ba3984f9ffbcd1788d" }, "downloads": -1, "filename": "faust-1.0.30-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "79a80a0f85179abebfb2b9bb6b41cd06", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 221323, "upload_time": "2018-08-15T22:34:18", "upload_time_iso_8601": "2018-08-15T22:34:18.815888Z", "url": "https://files.pythonhosted.org/packages/ed/d9/b4df6066b099ff6e4fb733468a4f4240a133f1f661abec1778694339df02/faust-1.0.30-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d297148ebe044b842a8efb99cd1be696", "sha256": "a5d7dcb450c7f95c4ad876089d2c9e0787e2bd4085ee196d8623c8835d5e9de1" }, "downloads": -1, "filename": "faust-1.0.30.tar.gz", "has_sig": false, "md5_digest": "d297148ebe044b842a8efb99cd1be696", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 523971, "upload_time": "2018-08-15T22:34:21", "upload_time_iso_8601": "2018-08-15T22:34:21.221090Z", "url": "https://files.pythonhosted.org/packages/4c/0b/6f1f7bf30c06111baafdd8076e2122d9b2fb4384cccdd1ba957849671f8c/faust-1.0.30.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "231ace600637b10831455fad20fc0437", "sha256": "36b8fd5606c7687a1aa92ccfc9a775f68b6b4c6320e925e25a5e7c4e10337037" }, "downloads": -1, "filename": "faust-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "231ace600637b10831455fad20fc0437", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 212079, "upload_time": "2018-09-14T20:11:55", "upload_time_iso_8601": "2018-09-14T20:11:55.975252Z", "url": "https://files.pythonhosted.org/packages/4f/54/25c01f3f4dcc7df97b1605f34e64030111ee2223b69e3ec136e09987c312/faust-1.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0afd2f27046f923bef90cee0b48d42ac", "sha256": "c80314690c317b5276117f0eeb2a8c5c3518b2e13c1d58c84e5052d5a7909fb7" }, "downloads": -1, "filename": "faust-1.1.0.tar.gz", "has_sig": false, "md5_digest": "0afd2f27046f923bef90cee0b48d42ac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 432587, "upload_time": "2018-09-14T20:11:57", "upload_time_iso_8601": "2018-09-14T20:11:57.599518Z", "url": "https://files.pythonhosted.org/packages/92/d8/2225013b54f72df3d7bc540c6b098fb1c9f6fd1b7645508d508885d036e6/faust-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "f4abc44fc75e50541d25e9f0bf2fa1f5", "sha256": "9327fe257f0c0e9d985a4a467a31ca82dd5bd1cd267671a99f5909a0783814c9" }, "downloads": -1, "filename": "faust-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f4abc44fc75e50541d25e9f0bf2fa1f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 212133, "upload_time": "2018-09-18T00:19:56", "upload_time_iso_8601": "2018-09-18T00:19:56.833438Z", "url": "https://files.pythonhosted.org/packages/c4/cb/2ff92a6a50f3c8ba4036e6db5e347c39b5e6bdb008eabb50b0868dc861b9/faust-1.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c4f488e7e3c5f4f1c7ee1bcf600933e", "sha256": "2b3d013565224925d70305505103b61e7cf7b99aa0e3e90f73029bb3a6267ddd" }, "downloads": -1, "filename": "faust-1.1.1.tar.gz", "has_sig": false, "md5_digest": "7c4f488e7e3c5f4f1c7ee1bcf600933e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 434400, "upload_time": "2018-09-18T00:19:58", "upload_time_iso_8601": "2018-09-18T00:19:58.930466Z", "url": "https://files.pythonhosted.org/packages/83/bb/38ec2c96f59934f066a1edd565765d60caf79742c0f5e682dd0a6299a5f9/faust-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "e3410532d44535ad389eaf3e2b36cd39", "sha256": "4667c5503ec7b0b2f27fe1bfd1241c729b14a8256ed553ad8571bbf8927e885f" }, "downloads": -1, "filename": "faust-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3410532d44535ad389eaf3e2b36cd39", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 212335, "upload_time": "2018-09-20T00:10:28", "upload_time_iso_8601": "2018-09-20T00:10:28.946916Z", "url": "https://files.pythonhosted.org/packages/1e/7b/3d0f09315c0e1ac458fd878e76654cf571236e26af737a40ea8188e3af39/faust-1.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b72cb7cb256ee641a84951c832993b3", "sha256": "0bf2854f007bf583749bb9f21873c2e16fd5c4d2bbb456ecb54145070eac63d4" }, "downloads": -1, "filename": "faust-1.1.2.tar.gz", "has_sig": false, "md5_digest": "4b72cb7cb256ee641a84951c832993b3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 438095, "upload_time": "2018-09-20T00:10:35", "upload_time_iso_8601": "2018-09-20T00:10:35.498360Z", "url": "https://files.pythonhosted.org/packages/87/03/80def04a7670b71e4fcede83375efb267abb2d687e4bab3ff852f2f1b387/faust-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "21c69edf82bcdbb7e54e28f291c5c2e0", "sha256": "0f06884eb4f3cc1e9d693ca5f1f2a7fa3c45fef84c58dbeb23e9af41eb7856b9" }, "downloads": -1, "filename": "faust-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "21c69edf82bcdbb7e54e28f291c5c2e0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 212516, "upload_time": "2018-09-21T23:25:22", "upload_time_iso_8601": "2018-09-21T23:25:22.224439Z", "url": "https://files.pythonhosted.org/packages/8f/bb/b1bf0d5a444aef8095532a63b44d73608cb2160c665aeadf32f568e92dac/faust-1.1.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef945ab4e253553028e62516e0c93795", "sha256": "874c2dde530a67f19a579bb6cff665a62a7b34c1e648dabe435c7ebf146570db" }, "downloads": -1, "filename": "faust-1.1.3.tar.gz", "has_sig": false, "md5_digest": "ef945ab4e253553028e62516e0c93795", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 440830, "upload_time": "2018-09-21T23:25:24", "upload_time_iso_8601": "2018-09-21T23:25:24.226779Z", "url": "https://files.pythonhosted.org/packages/a5/46/8f9cb1b0c77a4413e6234e2cd08d6b254c91ca5613741a6b04d4cec6256c/faust-1.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "8961bd58a445d94e5577ec06f5e8c834", "sha256": "bc76dc50a9d4c1bf3b66febb2923da43e6589ab114389003867c6c0441b78f66" }, "downloads": -1, "filename": "faust-1.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8961bd58a445d94e5577ec06f5e8c834", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 324395, "upload_time": "2020-01-13T20:04:58", "upload_time_iso_8601": "2020-01-13T20:04:58.211124Z", "url": "https://files.pythonhosted.org/packages/af/40/5399e187308e2be8490023c32c78e08edb9349b944cf7f0446edeb298f39/faust-1.10.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9365307ee84acbd0410483247e06ba25", "sha256": "8169e7764aba51ac63f3a8a7979f440937eca5a85c7a3985b7f94233c783689f" }, "downloads": -1, "filename": "faust-1.10.0.tar.gz", "has_sig": false, "md5_digest": "9365307ee84acbd0410483247e06ba25", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 666699, "upload_time": "2020-01-13T20:05:01", "upload_time_iso_8601": "2020-01-13T20:05:01.296097Z", "url": "https://files.pythonhosted.org/packages/ae/8b/05242ee59f3a428ff5641018db8db1bdb59b45e0363c44f2a38144701eef/faust-1.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "6c7314c0d5208f2617d477adcee481b1", "sha256": "94fad1b71fe24ddfb08f0f1fa8104fb5545f8d97fd449f813d3760af6c92106e" }, "downloads": -1, "filename": "faust-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6c7314c0d5208f2617d477adcee481b1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.0", "size": 442484, "upload_time": "2020-01-22T23:52:53", "upload_time_iso_8601": "2020-01-22T23:52:53.904530Z", "url": "https://files.pythonhosted.org/packages/95/92/4aa5de6b7f87a4f4c8b117181dadb2c4d1a5b24be6b8d787cce1d90b6c9f/faust-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c50af1ddad447bf2bf05488b8400cf8e", "sha256": "4cf19e1d21a58c4f62dd876a78b8a426372db57803c038b84fa0b272d0ad636d" }, "downloads": -1, "filename": "faust-1.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c50af1ddad447bf2bf05488b8400cf8e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 325771, "upload_time": "2020-01-22T23:52:56", "upload_time_iso_8601": "2020-01-22T23:52:56.556329Z", "url": "https://files.pythonhosted.org/packages/0f/a0/25d10dfa492098e0e54a715892ef41cf4d00ccfe99ea454c970ca14682bd/faust-1.10.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7f106671979f20ba0d41ec1b6e3bd23", "sha256": "6db0e3f1a089f3406fcac381adcbf6a62abe46b0b5ac207a658d933145648bef" }, "downloads": -1, "filename": "faust-1.10.1.tar.gz", "has_sig": false, "md5_digest": "a7f106671979f20ba0d41ec1b6e3bd23", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 669690, "upload_time": "2020-01-22T23:52:58", "upload_time_iso_8601": "2020-01-22T23:52:58.997966Z", "url": "https://files.pythonhosted.org/packages/1c/4e/a80fdd3644237a3a916136e345d255bb43d85bcbd79cc1c28f63b09ca74c/faust-1.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.2": [ { "comment_text": "", "digests": { "md5": "52c3025d2d9c1bf3c78026805057e533", "sha256": "34ca17eeaa413a46ec832ed562bc6f35a1c5bd2ce547db7c8744b895b45c7f28" }, "downloads": -1, "filename": "faust-1.10.2-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "52c3025d2d9c1bf3c78026805057e533", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.0", "size": 445663, "upload_time": "2020-02-11T23:37:00", "upload_time_iso_8601": "2020-02-11T23:37:00.339324Z", "url": "https://files.pythonhosted.org/packages/e0/89/b90c74b56d434589ffd208d2cb21b978b51887bcc1c0056ac9d104e3bc75/faust-1.10.2-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ca2d377a783bf09543c2dc0f266c636", "sha256": "86029cb787251f202413bb170689c0de798b4bb88b6e088109aca21c9cbb6622" }, "downloads": -1, "filename": "faust-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7ca2d377a783bf09543c2dc0f266c636", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 441849, "upload_time": "2020-02-11T23:37:02", "upload_time_iso_8601": "2020-02-11T23:37:02.646898Z", "url": "https://files.pythonhosted.org/packages/d9/25/5035bade91b35661a20501db4a5b7ec59cac3b0adaccbc68d05212d88b6c/faust-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e3884fde247c80b38c27fb8dd57c1e0", "sha256": "8a06b71b3a769a2833148301fbda538d1af78dcfed5cad2e09459168f155368d" }, "downloads": -1, "filename": "faust-1.10.2-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "8e3884fde247c80b38c27fb8dd57c1e0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.0", "size": 444045, "upload_time": "2020-02-11T23:37:05", "upload_time_iso_8601": "2020-02-11T23:37:05.118635Z", "url": "https://files.pythonhosted.org/packages/2f/ae/9ebf492ef46bfe4d556d1bc69379e0eb55c8b1c2ec72edda2bcf10d44123/faust-1.10.2-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49cf8c3d8c6ff83cd1cb60d6902c3261", "sha256": "de07b03a4c4dfbd1df57bcc3c3d36fe5b276043d94ab7d60fca75dc50f27120f" }, "downloads": -1, "filename": "faust-1.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49cf8c3d8c6ff83cd1cb60d6902c3261", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 327334, "upload_time": "2020-02-11T23:37:07", "upload_time_iso_8601": "2020-02-11T23:37:07.472310Z", "url": "https://files.pythonhosted.org/packages/09/2e/758821bc0a57a4c885044437144626d50c81899204e3cdea72c87b7f6895/faust-1.10.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50a37a20f85300c98a50d68c7854a446", "sha256": "74048cb3451281d81819b05df48f75b5cff1b33591da3418d209ec1862312121" }, "downloads": -1, "filename": "faust-1.10.2.tar.gz", "has_sig": false, "md5_digest": "50a37a20f85300c98a50d68c7854a446", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 674539, "upload_time": "2020-02-11T23:37:10", "upload_time_iso_8601": "2020-02-11T23:37:10.037417Z", "url": "https://files.pythonhosted.org/packages/9c/b9/f6412fc04c7f0e9ae9b422f2f4cef3ec7ad2194a96eddd60cfafab006d84/faust-1.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.3": [ { "comment_text": "", "digests": { "md5": "90da54a395b5dd878a7999dc7b44364a", "sha256": "7fdcdf7ff1c99a503af5a1739aa1ea6511e912ab1d4eb712e23a645d1259d50f" }, "downloads": -1, "filename": "faust-1.10.3-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "90da54a395b5dd878a7999dc7b44364a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.0", "size": 449106, "upload_time": "2020-02-15T01:03:38", "upload_time_iso_8601": "2020-02-15T01:03:38.603406Z", "url": "https://files.pythonhosted.org/packages/3c/06/dd47e9c9bff3d045115c337c83c72bfe59f6c16b5980584690f9a2d99f37/faust-1.10.3-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2f41b5002e53a066e4d952ba1b1ccf6", "sha256": "88c7b7e675072d388fe9b734cd9d79d324751f6b4883a2fec9d761c7312ce8e7" }, "downloads": -1, "filename": "faust-1.10.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a2f41b5002e53a066e4d952ba1b1ccf6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 445289, "upload_time": "2020-02-15T01:03:41", "upload_time_iso_8601": "2020-02-15T01:03:41.106278Z", "url": "https://files.pythonhosted.org/packages/75/de/bdf6117536870ffa043e24ee240b41384f9a0fddcf0762e39e2e28056a89/faust-1.10.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d69115c306c3586059b277dc516240b7", "sha256": "04405556a14464c898947ed8aa5ee495c4388a5af8a7b321f4905b7c016309a0" }, "downloads": -1, "filename": "faust-1.10.3-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "d69115c306c3586059b277dc516240b7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.0", "size": 447485, "upload_time": "2020-02-15T01:03:43", "upload_time_iso_8601": "2020-02-15T01:03:43.475198Z", "url": "https://files.pythonhosted.org/packages/68/c9/1dbb677094b0e4f589e8cb26ee144064041e37426413c1807703fa6283d4/faust-1.10.3-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c346f6b952a1734636fed3bffc2daed", "sha256": "e5dfc8af9ee6243e18b514c67a86f71ca3c387f3d110ba2065942fdd49657472" }, "downloads": -1, "filename": "faust-1.10.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4c346f6b952a1734636fed3bffc2daed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 330776, "upload_time": "2020-02-15T01:03:45", "upload_time_iso_8601": "2020-02-15T01:03:45.742549Z", "url": "https://files.pythonhosted.org/packages/86/3a/db7c5f91c2f0b5fd6966fa6ae27893dfbabf64cbdeb15a0fa11ef8156b89/faust-1.10.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1afabab22a19ece9251e5619dc7c65fd", "sha256": "02ecc5f6d58fde1ab50c81ce7f056524a30971f6e0671ff03f4acb9e332f9c30" }, "downloads": -1, "filename": "faust-1.10.3.tar.gz", "has_sig": false, "md5_digest": "1afabab22a19ece9251e5619dc7c65fd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 678645, "upload_time": "2020-02-15T01:03:48", "upload_time_iso_8601": "2020-02-15T01:03:48.051514Z", "url": "https://files.pythonhosted.org/packages/d4/a9/42e406a0200058f6ecf85802010bc76d0c2ad3cf6ae6e33070d1a5a08010/faust-1.10.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.4": [ { "comment_text": "", "digests": { "md5": "f32f569ff9d259b13b72a1463215f305", "sha256": "128dc0b9483aa4009edcc8b23f5c132757f2329c5da1fcc144d4c1d1dd63f156" }, "downloads": -1, "filename": "faust-1.10.4-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "f32f569ff9d259b13b72a1463215f305", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.0", "size": 448858, "upload_time": "2020-02-25T22:57:18", "upload_time_iso_8601": "2020-02-25T22:57:18.108446Z", "url": "https://files.pythonhosted.org/packages/70/6e/2752702b6a0e98a12fb293697d7656eb985b44a8ac0faea44ffde175e485/faust-1.10.4-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18d7b09ac0f1bde944c7c9186896b384", "sha256": "4ae94762a16c3ef70aa1e77772ff94395c2068ecbb99e1acce252d0f1156bd2c" }, "downloads": -1, "filename": "faust-1.10.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "18d7b09ac0f1bde944c7c9186896b384", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 445049, "upload_time": "2020-02-25T22:57:20", "upload_time_iso_8601": "2020-02-25T22:57:20.583072Z", "url": "https://files.pythonhosted.org/packages/42/e3/d2b09f142efbb2e29f7b98cc5375f5a8891b3675b81ba35357ed464d7876/faust-1.10.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "625631f1cfa569738ea194689ef9da27", "sha256": "cfd47e756825eb8c6d197c1a2f25199aef2895cd31b522c74ec2dbb95dfa6fcc" }, "downloads": -1, "filename": "faust-1.10.4-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "625631f1cfa569738ea194689ef9da27", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.0", "size": 447247, "upload_time": "2020-02-25T22:57:22", "upload_time_iso_8601": "2020-02-25T22:57:22.812997Z", "url": "https://files.pythonhosted.org/packages/4f/3b/9956f716834aa4591e83d8abe592fc819b16bc32174f2995bcb04b95c321/faust-1.10.4-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88be65d73630d0bede9c2a189e1e1bc5", "sha256": "abaade164bde21cd5f41dff24a203ff91f2c935c849c8e6a807f854bf84ea77d" }, "downloads": -1, "filename": "faust-1.10.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88be65d73630d0bede9c2a189e1e1bc5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 330534, "upload_time": "2020-02-25T22:57:25", "upload_time_iso_8601": "2020-02-25T22:57:25.033055Z", "url": "https://files.pythonhosted.org/packages/79/f8/3fec4f5c3e5bf1ce8bb557ae507525253fa30a5cfc5984f342b931143f75/faust-1.10.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0331755f10904deaaa35a97d8513b8ab", "sha256": "ffcd350ea29d528f6814fc9a42b5e50e130310da054a93e9d8216ef89a254611" }, "downloads": -1, "filename": "faust-1.10.4.tar.gz", "has_sig": false, "md5_digest": "0331755f10904deaaa35a97d8513b8ab", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 678773, "upload_time": "2020-02-25T22:57:26", "upload_time_iso_8601": "2020-02-25T22:57:26.985700Z", "url": "https://files.pythonhosted.org/packages/17/37/6f3babe6a3cfa9cdccaf3e7f65bbba19b132486113372fe46627bf303c2c/faust-1.10.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "736c6e508903fa95ac525222ef200504", "sha256": "239675af75a6ec41022955973c44a39a449c9624973fb29fd2ee4cced0b6a977" }, "downloads": -1, "filename": "faust-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "736c6e508903fa95ac525222ef200504", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 223424, "upload_time": "2018-10-06T06:48:37", "upload_time_iso_8601": "2018-10-06T06:48:37.098841Z", "url": "https://files.pythonhosted.org/packages/6e/db/73c8d2ef9edf137d7b1540b10032e547539e69dadbb827df0c748a474c3d/faust-1.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd2af855b5df23ce9bc9097c8eb32078", "sha256": "cb528fa7ca6c82cba4cff2b744f63e906e024d7a3b2e5ee2fbdb02f4ec1bb024" }, "downloads": -1, "filename": "faust-1.2.0.tar.gz", "has_sig": false, "md5_digest": "cd2af855b5df23ce9bc9097c8eb32078", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 456072, "upload_time": "2018-10-06T06:48:39", "upload_time_iso_8601": "2018-10-06T06:48:39.232698Z", "url": "https://files.pythonhosted.org/packages/99/cf/a478f8eeb80b32751bd768deb720178906c9288982ffe77fef1ca73dad8b/faust-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "cfb8640fe3b75248fb60666d3a04a707", "sha256": "475b2412927f7aa3202fd8b2a85cc2f97e71cc4f19ab5827853f341c5f9cc38e" }, "downloads": -1, "filename": "faust-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cfb8640fe3b75248fb60666d3a04a707", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 223721, "upload_time": "2018-10-10T13:47:44", "upload_time_iso_8601": "2018-10-10T13:47:44.076799Z", "url": "https://files.pythonhosted.org/packages/a7/be/273ca62242168b85c68b2c62a5fa88fcca320623bfc45e30ff9efd16969f/faust-1.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "210da72191cb05a4efd63fd32a37bfaf", "sha256": "6142ae7e3c22e5b49d41f8a7a2498338a6dc207249ab5d22f56fcfc8257ebeb6" }, "downloads": -1, "filename": "faust-1.2.1.tar.gz", "has_sig": false, "md5_digest": "210da72191cb05a4efd63fd32a37bfaf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 456458, "upload_time": "2018-10-10T13:47:48", "upload_time_iso_8601": "2018-10-10T13:47:48.632931Z", "url": "https://files.pythonhosted.org/packages/db/28/f6a214f57ab7fdeab94731823223bdef204183f450f1d1dfbf9f0b83f310/faust-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "fce1f83a113769ae8ef081fa7e2f2328", "sha256": "d496a037658fa66e587f7d1344c9d3c8dbf70abfa8c5a2433b6f0261fae1a744" }, "downloads": -1, "filename": "faust-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fce1f83a113769ae8ef081fa7e2f2328", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 223863, "upload_time": "2018-11-03T18:57:40", "upload_time_iso_8601": "2018-11-03T18:57:40.443649Z", "url": "https://files.pythonhosted.org/packages/2a/06/62c9d6bc1cf2fb4a5815153255e12f16d451f9912dc86c1e561c7dac21d4/faust-1.2.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "960f7f75753efc22b82b75c9536ec3cf", "sha256": "42c374adfe0686b1f9647bf6e89d929dfff995a14f6a0f571cc3a5e747379953" }, "downloads": -1, "filename": "faust-1.2.2.tar.gz", "has_sig": false, "md5_digest": "960f7f75753efc22b82b75c9536ec3cf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 460921, "upload_time": "2018-11-03T18:57:42", "upload_time_iso_8601": "2018-11-03T18:57:42.168831Z", "url": "https://files.pythonhosted.org/packages/b9/75/1c1c86a27f06fca043e958ddf3e3778aa78a6729b91ceeed161c9b7dc237/faust-1.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "4170aa4064242fa21f2c87d6b4e97f64", "sha256": "f431af152562c949b568e7f250bd49f26ab4c39b2969f501b8fa14cc452b4b14" }, "downloads": -1, "filename": "faust-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4170aa4064242fa21f2c87d6b4e97f64", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 221169, "upload_time": "2018-11-09T00:51:20", "upload_time_iso_8601": "2018-11-09T00:51:20.127001Z", "url": "https://files.pythonhosted.org/packages/af/aa/e68b24e8caf97e57911b8553a2d3d2ada2a99c3cb0b09f441ed090a47f9d/faust-1.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cde808e42f0396beec558617b4041947", "sha256": "682d118ea56328b17d4cc8a4006c85f045be0effd9c5bb9fe3adbe8155a9e4f8" }, "downloads": -1, "filename": "faust-1.3.0.tar.gz", "has_sig": false, "md5_digest": "cde808e42f0396beec558617b4041947", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 459107, "upload_time": "2018-11-09T00:51:22", "upload_time_iso_8601": "2018-11-09T00:51:22.370588Z", "url": "https://files.pythonhosted.org/packages/91/c3/75878084aba2bbcf680b0c57f00b9586b0b9d84a74695260b489666e579b/faust-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "6967c56a284ae48b642b16cf88ece2b9", "sha256": "f0e2026471fb65239830efec53921ed09520f9e2f78c73f9b9efb51ba70b5ebe" }, "downloads": -1, "filename": "faust-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6967c56a284ae48b642b16cf88ece2b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 221143, "upload_time": "2018-11-16T00:54:20", "upload_time_iso_8601": "2018-11-16T00:54:20.008416Z", "url": "https://files.pythonhosted.org/packages/42/19/7642cbf5924e38db6de261192d8dc2f9e2d932de8631d2be442ca7f69b7f/faust-1.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9d23d5771746b04b0256b1b97bc64d7", "sha256": "084fa6206754b302218c5053089c53c49aa2393928099f19161512f4aea467eb" }, "downloads": -1, "filename": "faust-1.3.1.tar.gz", "has_sig": false, "md5_digest": "c9d23d5771746b04b0256b1b97bc64d7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 459460, "upload_time": "2018-11-16T00:54:22", "upload_time_iso_8601": "2018-11-16T00:54:22.393143Z", "url": "https://files.pythonhosted.org/packages/f0/86/fc8eace40688e5911365a3215fcc5b9ceb338c363adcf3e546e74cd32fbc/faust-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "653b67280953f34f4a8fb95478b1b2de", "sha256": "cc55b1409b96e1a7ada13fc72bf25321f65c9aee572b2af95f7dc12862992e2c" }, "downloads": -1, "filename": "faust-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "653b67280953f34f4a8fb95478b1b2de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 221223, "upload_time": "2018-11-19T22:09:56", "upload_time_iso_8601": "2018-11-19T22:09:56.099542Z", "url": "https://files.pythonhosted.org/packages/18/58/1db2e05e37ef6587194662ce8cc79c192ba7c54a494d66c7ff880fabe741/faust-1.3.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "081511d826f7b4b250b9cb00187f04ea", "sha256": "9bba578aa10670d3f26d468f33dc563a99affe5a692f43eee295befbc9b30d1a" }, "downloads": -1, "filename": "faust-1.3.2.tar.gz", "has_sig": false, "md5_digest": "081511d826f7b4b250b9cb00187f04ea", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 459550, "upload_time": "2018-11-19T22:09:58", "upload_time_iso_8601": "2018-11-19T22:09:58.077178Z", "url": "https://files.pythonhosted.org/packages/77/25/b2c5ccf0392852dc53a8649c819118ed6dba7158b1a2f560a7e0fec2db17/faust-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "e10210d5c3340e08142d840bbda38abe", "sha256": "157ab74506d6d26115911833df53d4070e9e052ab4455628a97cc4c774627c85" }, "downloads": -1, "filename": "faust-1.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e10210d5c3340e08142d840bbda38abe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 221373, "upload_time": "2018-11-28T22:00:39", "upload_time_iso_8601": "2018-11-28T22:00:39.059549Z", "url": "https://files.pythonhosted.org/packages/17/eb/c74c936e818ac1c0b4a0e1a88514545181e6ac88e7af4d84aec33c83192f/faust-1.3.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bed71c02cd00c812021eb5dd6a9f9a0c", "sha256": "39e101b2166cc9cdf56bbda0ebd9c625509860a748dfaded08a494bf272f4802" }, "downloads": -1, "filename": "faust-1.3.3.tar.gz", "has_sig": false, "md5_digest": "bed71c02cd00c812021eb5dd6a9f9a0c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 460007, "upload_time": "2018-11-28T22:00:40", "upload_time_iso_8601": "2018-11-28T22:00:40.843938Z", "url": "https://files.pythonhosted.org/packages/f9/19/877e03320d9c2b1389c7d512a1725bb0a454605017d2bd7367da178897e8/faust-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "1de0867c53b00262426f2c2bf862d955", "sha256": "b632b86d249a0348fc5688467dcddffeb64720f0d7b66bcb54c11b4731604152" }, "downloads": -1, "filename": "faust-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1de0867c53b00262426f2c2bf862d955", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 229889, "upload_time": "2018-12-08T01:21:41", "upload_time_iso_8601": "2018-12-08T01:21:41.311223Z", "url": "https://files.pythonhosted.org/packages/04/06/1f936ef69f55eca4fed5f90b91ea7789577203662d360464f07837b330de/faust-1.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bdc52f89ee10292b55afe551cd73fc2", "sha256": "1da9fabdbc4563c975ad7da0e6a503142a7efd5ead6ee70e172f8622d3b96180" }, "downloads": -1, "filename": "faust-1.4.0.tar.gz", "has_sig": false, "md5_digest": "4bdc52f89ee10292b55afe551cd73fc2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 473404, "upload_time": "2018-12-08T01:21:43", "upload_time_iso_8601": "2018-12-08T01:21:43.242560Z", "url": "https://files.pythonhosted.org/packages/60/13/ca56178861cb9e0b025dfe384077f1616e128f434235c284cf9f63e23f45/faust-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "9d5dab2e2244e72c8dec7f967db8a070", "sha256": "d9f15b60d46ff9bca3c1fc799284ae8e6bbe03d4c2239bab197fb04a97385c98" }, "downloads": -1, "filename": "faust-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9d5dab2e2244e72c8dec7f967db8a070", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 229896, "upload_time": "2018-12-11T00:53:01", "upload_time_iso_8601": "2018-12-11T00:53:01.902363Z", "url": "https://files.pythonhosted.org/packages/4a/d3/f0e0c55e3ef16c776f30086cc07768433e647ba1bed186f656077f1b8f7d/faust-1.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9514d3bc715c4a9a846f48ddd5a408c", "sha256": "a93598ba24692ccc174447c8be9f3bf2c416529261dc5a289d4c6d47c34443a9" }, "downloads": -1, "filename": "faust-1.4.1.tar.gz", "has_sig": false, "md5_digest": "a9514d3bc715c4a9a846f48ddd5a408c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 473476, "upload_time": "2018-12-11T00:53:04", "upload_time_iso_8601": "2018-12-11T00:53:04.483476Z", "url": "https://files.pythonhosted.org/packages/bb/fe/a754b39698ffdee5450fd6235805dc303b9b8a368ca11ccb24420c3ee1bf/faust-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "fd6e40a9a0deb407569e1ec9b644f2b8", "sha256": "a3833dc07459a4288d58f43621b3d510e4e575b552fa0e7179b13d1cb38e3524" }, "downloads": -1, "filename": "faust-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd6e40a9a0deb407569e1ec9b644f2b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 230597, "upload_time": "2018-12-19T21:19:26", "upload_time_iso_8601": "2018-12-19T21:19:26.141992Z", "url": "https://files.pythonhosted.org/packages/6b/2e/26d2dddd9ba67ac0009655692a44e89a2f5924419a0d2442b9431abd3345/faust-1.4.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4312fa7a43331139757abd9ebbb98907", "sha256": "94f48f1c18a903a50f583c6c53a28566ca7780aa29e7378fd036af2c8ca66f23" }, "downloads": -1, "filename": "faust-1.4.2.tar.gz", "has_sig": false, "md5_digest": "4312fa7a43331139757abd9ebbb98907", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 474549, "upload_time": "2018-12-19T21:19:27", "upload_time_iso_8601": "2018-12-19T21:19:27.796285Z", "url": "https://files.pythonhosted.org/packages/74/88/ae3cc27ce7b978e01d408b940718e2a705846771e06b5443bcb830fb2e83/faust-1.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "e552943056766e1f30d7953d8c7f039d", "sha256": "edcdcfc16032101a919dcdd489c8f9bbc26a46b305c7e257af48bf3d9efb90b4" }, "downloads": -1, "filename": "faust-1.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e552943056766e1f30d7953d8c7f039d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 230593, "upload_time": "2019-01-14T23:09:06", "upload_time_iso_8601": "2019-01-14T23:09:06.081723Z", "url": "https://files.pythonhosted.org/packages/d6/b0/2f5946af00c0ab894573bf247ca9701c05cbdba60a6f7e4c7c5bf876e615/faust-1.4.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebc04b27a7d26c37a59498dd3d0b8e2c", "sha256": "40d98f5cf0b2a8a3b32d2724e2d77f5aba6e37da82f7e4199995f8b9a43cfcc6" }, "downloads": -1, "filename": "faust-1.4.3.tar.gz", "has_sig": false, "md5_digest": "ebc04b27a7d26c37a59498dd3d0b8e2c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 474440, "upload_time": "2019-01-14T23:09:08", "upload_time_iso_8601": "2019-01-14T23:09:08.496365Z", "url": "https://files.pythonhosted.org/packages/b9/b1/ade68b343e2a730c62d55d336972ce123047decf6606295eda4589ef1ff3/faust-1.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "e760d07423d13e0fdcc81fd4ab22d6a7", "sha256": "f77704c31764b77caeff379331dbf2672b601133ea690a870e661937c82c7363" }, "downloads": -1, "filename": "faust-1.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e760d07423d13e0fdcc81fd4ab22d6a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 230624, "upload_time": "2019-01-18T21:25:49", "upload_time_iso_8601": "2019-01-18T21:25:49.216725Z", "url": "https://files.pythonhosted.org/packages/bc/bc/bc5c8f39a67c7e186fd32ea0b01e7ccb2e8da92a416524fdeb59195d0dd4/faust-1.4.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca9c139247715817d7ec0ad107106041", "sha256": "8a435166118b4cc9e5e25f600df458c9f31718b4ea9d0ddbbadc8e6eefccfbdc" }, "downloads": -1, "filename": "faust-1.4.4.tar.gz", "has_sig": false, "md5_digest": "ca9c139247715817d7ec0ad107106041", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 474665, "upload_time": "2019-01-18T21:25:50", "upload_time_iso_8601": "2019-01-18T21:25:50.958447Z", "url": "https://files.pythonhosted.org/packages/f8/f5/58c07fbbb6b1d3d20c100fff6bf2d2499546cf134ca5b24ee10d9b9f422b/faust-1.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "d78a6f9d2a2a62d8edc1e55e5756ab5c", "sha256": "eba927445cd7f711a844ee281c78dd2656bc7b449156f5ce91e8a5ac098ed7a1" }, "downloads": -1, "filename": "faust-1.4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d78a6f9d2a2a62d8edc1e55e5756ab5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 230622, "upload_time": "2019-01-18T23:07:38", "upload_time_iso_8601": "2019-01-18T23:07:38.996622Z", "url": "https://files.pythonhosted.org/packages/53/37/a09563d83bcd5164450452bc08c13e7bcdc42059a14381abbf3a835d34e6/faust-1.4.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b63b36dc342efc558979eeed5ce32772", "sha256": "9165c1e9eea4922efc4589d67012407c485b77561526b9dfa5350d0c111cddac" }, "downloads": -1, "filename": "faust-1.4.5.tar.gz", "has_sig": false, "md5_digest": "b63b36dc342efc558979eeed5ce32772", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 474564, "upload_time": "2019-01-18T23:07:41", "upload_time_iso_8601": "2019-01-18T23:07:41.138522Z", "url": "https://files.pythonhosted.org/packages/16/6b/88d0606244c72c11d231b4c340e0d59ffbe38522dd350071c4221ebb8b99/faust-1.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "021621105b2280af0899a1c69e64b9e0", "sha256": "4faffbd52c1f5576ee75268e31dcd47d200c23807878b901a2fb4b502a84d9f4" }, "downloads": -1, "filename": "faust-1.4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "021621105b2280af0899a1c69e64b9e0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 230587, "upload_time": "2019-01-29T21:57:18", "upload_time_iso_8601": "2019-01-29T21:57:18.453099Z", "url": "https://files.pythonhosted.org/packages/32/07/5b005bacf49225e5d9f6c5f9c228b4660b5059d2e5fcb87d62b68348505b/faust-1.4.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "591bb65b3c10c2e5cd0b4617bc0508c8", "sha256": "18023c272e40396aa586a74a0a0a658aabc9c34338eaf8682e664f32d68a60a2" }, "downloads": -1, "filename": "faust-1.4.6.tar.gz", "has_sig": false, "md5_digest": "591bb65b3c10c2e5cd0b4617bc0508c8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 474693, "upload_time": "2019-01-29T21:57:20", "upload_time_iso_8601": "2019-01-29T21:57:20.133639Z", "url": "https://files.pythonhosted.org/packages/a8/34/567a2293603733408cf2e9f8dd8588ee0c8d827fb65effb3eb658b0b5abd/faust-1.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.7": [ { "comment_text": "", "digests": { "md5": "b019f8d94651c6e08395b97a450e280f", "sha256": "917b43296dd4661b0226102d732d53f48792391167067edb164ed95d625610a4" }, "downloads": -1, "filename": "faust-1.4.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b019f8d94651c6e08395b97a450e280f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 231054, "upload_time": "2019-03-08T22:33:14", "upload_time_iso_8601": "2019-03-08T22:33:14.041874Z", "url": "https://files.pythonhosted.org/packages/fd/f5/15fb9f5dadd33310e9f44512085412e0478e365a72c8fb5c993401677328/faust-1.4.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "736829c72a8e23dc65be8e04e3597cb9", "sha256": "c34817f260d7047f89d70fa97f3b6f28484b4e3b966f938759494d491c01d0c4" }, "downloads": -1, "filename": "faust-1.4.7.tar.gz", "has_sig": false, "md5_digest": "736829c72a8e23dc65be8e04e3597cb9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 475267, "upload_time": "2019-03-08T22:33:15", "upload_time_iso_8601": "2019-03-08T22:33:15.853711Z", "url": "https://files.pythonhosted.org/packages/af/4c/db27ffe8f99e8f15cb36482ca2e045a2ef7cd13ecc65ca41260fd8d9ce1e/faust-1.4.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.8": [ { "comment_text": "", "digests": { "md5": "95e057474262c09730622d82f3efb609", "sha256": "1d3d2d1c865d22143f77f65f993663f1350e86db0d55db6235e038ad165957c1" }, "downloads": -1, "filename": "faust-1.4.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "95e057474262c09730622d82f3efb609", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 231179, "upload_time": "2019-03-12T07:01:49", "upload_time_iso_8601": "2019-03-12T07:01:49.349101Z", "url": "https://files.pythonhosted.org/packages/69/12/6eb021f46740e149012b3a6d009afa6c0204ed778b727218c7ddd0143412/faust-1.4.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8e9e87abcb20a6344c247010a02c8a9", "sha256": "889ee035ad0608c9724bfe00c9ea5978ad8e2d5755d29b8f46a51bf8873254a5" }, "downloads": -1, "filename": "faust-1.4.8.tar.gz", "has_sig": false, "md5_digest": "f8e9e87abcb20a6344c247010a02c8a9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 475840, "upload_time": "2019-03-12T07:01:51", "upload_time_iso_8601": "2019-03-12T07:01:51.458115Z", "url": "https://files.pythonhosted.org/packages/01/6c/e2be71ec0f6d6a6a64a6399beae3577d9014b494dc70e73b48dd58bf0bad/faust-1.4.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.9": [ { "comment_text": "", "digests": { "md5": "ebd28fc5899795926d9a101f2927ff9c", "sha256": "56827b99bc14478e49eefcc3049f5e0a5935ca82b7eb7e9d3e1615c3fe540999" }, "downloads": -1, "filename": "faust-1.4.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ebd28fc5899795926d9a101f2927ff9c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 231316, "upload_time": "2019-03-15T00:09:52", "upload_time_iso_8601": "2019-03-15T00:09:52.839021Z", "url": "https://files.pythonhosted.org/packages/29/30/2c0043b765a09d1e08a632c9cd0ac861ab3fd367f58b07f8944209e0b53b/faust-1.4.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46fca845d3238768ce6277228fcf8b8c", "sha256": "c5e5b806ef25058bd3366fac794788ec5c6130455464bc641661ee7646746189" }, "downloads": -1, "filename": "faust-1.4.9.tar.gz", "has_sig": false, "md5_digest": "46fca845d3238768ce6277228fcf8b8c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 476531, "upload_time": "2019-03-15T00:09:54", "upload_time_iso_8601": "2019-03-15T00:09:54.842784Z", "url": "https://files.pythonhosted.org/packages/b4/1e/6dfef15cf9fc9f1f85a8efa8f5a0db2e1e39881a40e1be3b32f32c3faa85/faust-1.4.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "7c0ea2c79968a54d5f05ca60eec9e419", "sha256": "c0b0569cbc4cf5392df9a5792f944935cce1fcc4f8af1e2422948c0331acbdf4" }, "downloads": -1, "filename": "faust-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7c0ea2c79968a54d5f05ca60eec9e419", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 370510, "upload_time": "2019-03-22T22:34:45", "upload_time_iso_8601": "2019-03-22T22:34:45.110239Z", "url": "https://files.pythonhosted.org/packages/6a/47/fdcea5748eacaa704e2c072723629f9511c02c4e55a17489fba136f0641a/faust-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aed92053f01622efc1e4b357085c6dc5", "sha256": "cddf05504a8ab1ef72c2cf16aa93c1f7c292b2fbc86f6f1c4dfdae7d3d15b0dc" }, "downloads": -1, "filename": "faust-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aed92053f01622efc1e4b357085c6dc5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 259523, "upload_time": "2019-03-22T22:34:18", "upload_time_iso_8601": "2019-03-22T22:34:18.835951Z", "url": "https://files.pythonhosted.org/packages/70/5d/1ae5b4f984d6182508f3eb87ec9f5bbc0eaa7b5cb8047ecea460697aadb0/faust-1.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2083f6adbd200fbeda707e13a775864d", "sha256": "2067b8020bd03e2bedd6834d11295a9a85e548ae7d5cbbb05343ce374529afa1" }, "downloads": -1, "filename": "faust-1.5.0.tar.gz", "has_sig": false, "md5_digest": "2083f6adbd200fbeda707e13a775864d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 542993, "upload_time": "2019-03-22T22:34:20", "upload_time_iso_8601": "2019-03-22T22:34:20.838963Z", "url": "https://files.pythonhosted.org/packages/bc/f2/d20f54f171455e6eb697a99b92ebaa43a2371db8e308765dfb51f9bba200/faust-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "29d23ff8a7044a0c5b774aa0ca18246e", "sha256": "59e3a2183ef53177806da5584072e0842d999bbda6a5e9bb565eed9fc6bcebb2" }, "downloads": -1, "filename": "faust-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "29d23ff8a7044a0c5b774aa0ca18246e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 370487, "upload_time": "2019-03-25T05:46:43", "upload_time_iso_8601": "2019-03-25T05:46:43.194289Z", "url": "https://files.pythonhosted.org/packages/f1/88/ada86a8efac1935544b1481f7e76fd06e86fb62443a05241f8c8c3e402ed/faust-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a935441df1ee73c73655552941c0ea1", "sha256": "6c7b01bd0a8768350cf477b820b36b555705c02de31aaa83f0bf0205abfc6f34" }, "downloads": -1, "filename": "faust-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a935441df1ee73c73655552941c0ea1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 259501, "upload_time": "2019-03-25T05:44:31", "upload_time_iso_8601": "2019-03-25T05:44:31.737267Z", "url": "https://files.pythonhosted.org/packages/b6/32/966b53e960ef47636a733063d3d0f88e152168e0267c4e35156038ce53ac/faust-1.5.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02f8f16a1a4d781e181ab7c8cf368039", "sha256": "a1997e36281667bdc90a85520ba7b7b365b2efdd386e31c874a8ab317281aad0" }, "downloads": -1, "filename": "faust-1.5.1.tar.gz", "has_sig": false, "md5_digest": "02f8f16a1a4d781e181ab7c8cf368039", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 543206, "upload_time": "2019-03-25T05:44:33", "upload_time_iso_8601": "2019-03-25T05:44:33.940731Z", "url": "https://files.pythonhosted.org/packages/6f/6b/4568db79c24a7177a85c5059586430d637f08e6859d37cbae9f34bf31328/faust-1.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "e45366b9852dc969940f1f39274705fa", "sha256": "46acf6b2b4b923cb923f40c5558a5ec4df8a66936b738c6454dccc5df1684f58" }, "downloads": -1, "filename": "faust-1.5.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e45366b9852dc969940f1f39274705fa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 373294, "upload_time": "2019-03-28T19:25:14", "upload_time_iso_8601": "2019-03-28T19:25:14.782978Z", "url": "https://files.pythonhosted.org/packages/e2/2e/4eea8117207df7292a5ae79e588cc0d0c0b626289e153a0b2d7a8d391ed6/faust-1.5.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b43f52f6f1868c04e8759f6a491f3906", "sha256": "aee7f051df10248e43da4231ccaa7f37259c9d119ea79b6b0a2ca7a4f7a6e4ac" }, "downloads": -1, "filename": "faust-1.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b43f52f6f1868c04e8759f6a491f3906", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 260991, "upload_time": "2019-03-28T19:25:16", "upload_time_iso_8601": "2019-03-28T19:25:16.630136Z", "url": "https://files.pythonhosted.org/packages/5a/79/edeb2940364f8d7be1d984f2469c7f05964020038bcb70c265417b60b2be/faust-1.5.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f5e7e0552778ead45fda77076176982", "sha256": "1cfde93fa4f125cca0d45b883a37fb608d149d3c38141074d785e376d9bb4f60" }, "downloads": -1, "filename": "faust-1.5.2.tar.gz", "has_sig": false, "md5_digest": "5f5e7e0552778ead45fda77076176982", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 548663, "upload_time": "2019-03-28T19:25:18", "upload_time_iso_8601": "2019-03-28T19:25:18.710091Z", "url": "https://files.pythonhosted.org/packages/28/9c/994e668932bfa9deceef0a9ed9b733bdde8ecfd0aeefef9436d22f64a5af/faust-1.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "a0dbf198670f1ae3b7857ff24da0369e", "sha256": "d0d6e781db0a038396f5da25f035dea57399c9036e64b4bdc8b5ad3b2811cd33" }, "downloads": -1, "filename": "faust-1.5.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a0dbf198670f1ae3b7857ff24da0369e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 373304, "upload_time": "2019-04-07T23:09:04", "upload_time_iso_8601": "2019-04-07T23:09:04.719395Z", "url": "https://files.pythonhosted.org/packages/4f/77/cc6345575dd662a0582145361ff1ca3cae390c4cec003df39e1a17e9d29a/faust-1.5.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12a049d7e9687536828753f2a77b4bcd", "sha256": "6a4f155154af7d8c44964da4fad4f634544eb50c7d2bd7ea2f3d3e7993735ccc" }, "downloads": -1, "filename": "faust-1.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12a049d7e9687536828753f2a77b4bcd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 260999, "upload_time": "2019-04-07T23:09:06", "upload_time_iso_8601": "2019-04-07T23:09:06.791378Z", "url": "https://files.pythonhosted.org/packages/27/0a/3c3e2e97ade30f4a3498189f9910f384f81d1178a94f48c00316ef148fbb/faust-1.5.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "379165cab647c089e418b12b4b598d97", "sha256": "2d69a0108e78d8112b1a1a91ba35f3bc18151c3d828cca431a84244ae9eb0555" }, "downloads": -1, "filename": "faust-1.5.3.tar.gz", "has_sig": false, "md5_digest": "379165cab647c089e418b12b4b598d97", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 552403, "upload_time": "2019-04-07T23:09:09", "upload_time_iso_8601": "2019-04-07T23:09:09.095254Z", "url": "https://files.pythonhosted.org/packages/64/76/7f6cf04902113af9b7c41af39dd9bd168b8bdf5adfdb0da727e7c7b0cc54/faust-1.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "93fc026777bde52966a9fd87929f9509", "sha256": "c6b5185eea6e2fa99ebf846b5bff557bbd58e172c4396e0f388918e21f59b16e" }, "downloads": -1, "filename": "faust-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "93fc026777bde52966a9fd87929f9509", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 373707, "upload_time": "2019-04-09T22:19:05", "upload_time_iso_8601": "2019-04-09T22:19:05.017428Z", "url": "https://files.pythonhosted.org/packages/cb/d2/7a83fb8571f409577edb0e8f7a8b675aaf3bda0ce81b889e0f75c98cbe67/faust-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0e3d4b5561870e0f25ef42651801732", "sha256": "1d6dd357d6ba6e73fab6bc0ed7136b285bfc9720e4855ea633961a27b3ad6ade" }, "downloads": -1, "filename": "faust-1.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0e3d4b5561870e0f25ef42651801732", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 261403, "upload_time": "2019-04-09T22:19:07", "upload_time_iso_8601": "2019-04-09T22:19:07.022708Z", "url": "https://files.pythonhosted.org/packages/00/b5/200349319b5a922a0169e732994d9497137829a8df2eaa7cfd35a52b1da0/faust-1.5.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c1d180aaffc1580004885b957b4be0a", "sha256": "cc0fd86e2194605455c8965a11108bdd1c7b8627bb62e81e79567251e57c3ef2" }, "downloads": -1, "filename": "faust-1.5.4.tar.gz", "has_sig": false, "md5_digest": "0c1d180aaffc1580004885b957b4be0a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 553991, "upload_time": "2019-04-09T22:19:08", "upload_time_iso_8601": "2019-04-09T22:19:08.809396Z", "url": "https://files.pythonhosted.org/packages/86/fa/152c7a80ac245ec52fa98abce25104242205f8d255c09b190cc58516c9c2/faust-1.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "091bf420de6b59d1278fc9a389928cd7", "sha256": "e203938a3a130b4a4605f7ff59217d90e1429868645de5e99445bfabbfb40a1e" }, "downloads": -1, "filename": "faust-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "091bf420de6b59d1278fc9a389928cd7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 263841, "upload_time": "2019-04-17T01:25:17", "upload_time_iso_8601": "2019-04-17T01:25:17.933042Z", "url": "https://files.pythonhosted.org/packages/d5/ae/fa77b0b94cba52803f41d82784815db921b9b30eec4299bc2b3fe59d4ba9/faust-1.6.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c29bede35092f4cfb75cb12fcbf87e8", "sha256": "33f7305f0b1e8afad81af2ffc574f0269ffa6d839601fa8ac6373de920f62b21" }, "downloads": -1, "filename": "faust-1.6.0.tar.gz", "has_sig": false, "md5_digest": "2c29bede35092f4cfb75cb12fcbf87e8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 557134, "upload_time": "2019-04-17T01:25:20", "upload_time_iso_8601": "2019-04-17T01:25:20.532012Z", "url": "https://files.pythonhosted.org/packages/cd/a0/c13d544c12613b4ecabe7abc768fd024bafb319bcdeb69bea75a53490c1c/faust-1.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "b208cf1436741c11d526785e3dfb6d6b", "sha256": "1dc169f4e647da656b83535bb51d0e4cf006de7cfabd5815e7293b5c174efb39" }, "downloads": -1, "filename": "faust-1.6.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b208cf1436741c11d526785e3dfb6d6b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 376773, "upload_time": "2019-05-07T22:03:28", "upload_time_iso_8601": "2019-05-07T22:03:28.744859Z", "url": "https://files.pythonhosted.org/packages/64/eb/390422a143de3af06546aa3d840f9ff25f481b6bfc14d89490dba7ce95e1/faust-1.6.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72c55c74b99080b19c83940a14a9508b", "sha256": "8a86ceb904f3ffec1ad2e30dd0309e9f6c9a648b1f337c2346d5e8384284c837" }, "downloads": -1, "filename": "faust-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72c55c74b99080b19c83940a14a9508b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 263894, "upload_time": "2019-05-07T22:03:30", "upload_time_iso_8601": "2019-05-07T22:03:30.804370Z", "url": "https://files.pythonhosted.org/packages/47/3e/c53f93cec9f9429a3e59fcdc6011cc6ef02f1e668ba73e69d75e9bf5c0f8/faust-1.6.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65a8701eb30226281d04d4da0117b3ab", "sha256": "e90bf85c34b74c2c717e0f77fbccef909b35ed029ae106b1f277ffacbd07f8e3" }, "downloads": -1, "filename": "faust-1.6.1.tar.gz", "has_sig": false, "md5_digest": "65a8701eb30226281d04d4da0117b3ab", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 557286, "upload_time": "2019-05-07T22:03:32", "upload_time_iso_8601": "2019-05-07T22:03:32.343978Z", "url": "https://files.pythonhosted.org/packages/ce/c1/c6dfad780571a838099d0cb8cbb880fadfa6e116d925aa21af9dac1a5989/faust-1.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "9be669b8d85842cb196eb3270e4dcb21", "sha256": "3e852efbb5a30627e640bb7bf52365b8ab57ab6dfe7d78147ce500fecb562bfb" }, "downloads": -1, "filename": "faust-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9be669b8d85842cb196eb3270e4dcb21", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 416152, "upload_time": "2019-06-07T00:30:32", "upload_time_iso_8601": "2019-06-07T00:30:32.745311Z", "url": "https://files.pythonhosted.org/packages/b7/60/30f42c723c6e126bc36f6795f17d71f1e7a5e176c3314496a7d03bbb6e8a/faust-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6386ad98b90513baabd0507ca0eceb9c", "sha256": "fe5ca0f0c408fb6b9ab4f20c1276c7fd5062c6ed6c33b46183652880211452ad" }, "downloads": -1, "filename": "faust-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6386ad98b90513baabd0507ca0eceb9c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 302189, "upload_time": "2019-06-07T00:30:34", "upload_time_iso_8601": "2019-06-07T00:30:34.938467Z", "url": "https://files.pythonhosted.org/packages/f8/6c/cc4eecaf2a8f1d73f1e8b6e62da568520693a4463fbd3b8189163b4ee73c/faust-1.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fdd129fccacd8de872c2e06fcdf73c01", "sha256": "d49a923e09f0ea548d568690418ea0ed6fe1f3af2f722c9b7a0b796447ba533a" }, "downloads": -1, "filename": "faust-1.7.0.tar.gz", "has_sig": false, "md5_digest": "fdd129fccacd8de872c2e06fcdf73c01", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 609508, "upload_time": "2019-06-07T00:30:37", "upload_time_iso_8601": "2019-06-07T00:30:37.116066Z", "url": "https://files.pythonhosted.org/packages/ae/6f/57e9ae8f8d092532e90614eba4d847a927cfce5b0d9d934cb38fde5888a8/faust-1.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "2f10110925ae3f85bff414ce29250a97", "sha256": "ef0023983f17d5ee62883752dbbda04890374d6e37d08d5670ab3daafc7d96df" }, "downloads": -1, "filename": "faust-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2f10110925ae3f85bff414ce29250a97", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 416725, "upload_time": "2019-07-09T22:57:28", "upload_time_iso_8601": "2019-07-09T22:57:28.041153Z", "url": "https://files.pythonhosted.org/packages/e3/ca/7d94d3c272beead736c39e5e81737608cc816c403184d85c10b6dbb5fc48/faust-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9afeef3721b139620702e4a0d31d8ce", "sha256": "077f0b6fa7f2790ae817531c10c243b9c7c5c9146b3d2319d55a0d989d3d2ee1" }, "downloads": -1, "filename": "faust-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b9afeef3721b139620702e4a0d31d8ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 302765, "upload_time": "2019-07-09T22:57:30", "upload_time_iso_8601": "2019-07-09T22:57:30.412305Z", "url": "https://files.pythonhosted.org/packages/52/03/b1f180b723f2c3dd315ea2d0f5222416b61ad36e28b65db99d3935f79a6b/faust-1.7.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5a8d3efbca79a72ed95f464a227a4e9", "sha256": "f1b583ef6600e05dea620d11a7954258896ceaaaf7db9fd834d8c221ea17f77c" }, "downloads": -1, "filename": "faust-1.7.1.tar.gz", "has_sig": false, "md5_digest": "b5a8d3efbca79a72ed95f464a227a4e9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 611480, "upload_time": "2019-07-09T22:57:33", "upload_time_iso_8601": "2019-07-09T22:57:33.095119Z", "url": "https://files.pythonhosted.org/packages/5a/d8/cb82363db4d6df080d145958d345dab6cfdef6a5a24a52c2248ec73d2201/faust-1.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "e09258af130876f2498cc49a95c05ea1", "sha256": "bd31682466da936e27915e5310cf994d52898ad4b0007179ada0ecf7755a89e3" }, "downloads": -1, "filename": "faust-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e09258af130876f2498cc49a95c05ea1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 303891, "upload_time": "2019-07-12T20:12:13", "upload_time_iso_8601": "2019-07-12T20:12:13.933936Z", "url": "https://files.pythonhosted.org/packages/2b/40/9bea850e3c57ca76db617c9a3b2c20135791a708c5913a47e6debf8da6f8/faust-1.7.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96bdf7902c8f4663877f36c9b315ab49", "sha256": "374211fb96ca69a9315684af0d93b003eb0ff75db76fd3fbe4880a647281a063" }, "downloads": -1, "filename": "faust-1.7.2.tar.gz", "has_sig": false, "md5_digest": "96bdf7902c8f4663877f36c9b315ab49", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 613802, "upload_time": "2019-07-12T20:12:16", "upload_time_iso_8601": "2019-07-12T20:12:16.150779Z", "url": "https://files.pythonhosted.org/packages/ae/1c/446151fda43a9e6f4677dc66f6b750a51549d2842c5183623165539ff096/faust-1.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "8098e62e65afbe1505859e48aaec92cf", "sha256": "93547d59e419d04f51895fa6bbe7217eb1d295ac47af2c868d06aa2ae93584e3" }, "downloads": -1, "filename": "faust-1.7.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8098e62e65afbe1505859e48aaec92cf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 418878, "upload_time": "2019-07-12T21:42:56", "upload_time_iso_8601": "2019-07-12T21:42:56.836302Z", "url": "https://files.pythonhosted.org/packages/bc/f2/d54559265673466136a356ca7c273262480f0898fa2a64775f0ab1102330/faust-1.7.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acd4195f054c4dff5b5696f227531d76", "sha256": "21a725450f95a5947692d14cd177dd5a9b961189d9bf5bf5e3aa4d064acad076" }, "downloads": -1, "filename": "faust-1.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "acd4195f054c4dff5b5696f227531d76", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 303925, "upload_time": "2019-07-12T21:42:59", "upload_time_iso_8601": "2019-07-12T21:42:59.443840Z", "url": "https://files.pythonhosted.org/packages/93/c3/f8364a52ab8027f80bc18d93d23d9583f112e48a2f857cd7e9513fffe09a/faust-1.7.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2e3b27a9fd2ad41c5f6b1adf1c83ce5", "sha256": "549ec4aa83d5be89f9ccb247082f4cb551718f97f28b55658353e02956d14951" }, "downloads": -1, "filename": "faust-1.7.3.tar.gz", "has_sig": false, "md5_digest": "f2e3b27a9fd2ad41c5f6b1adf1c83ce5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 613890, "upload_time": "2019-07-12T21:43:01", "upload_time_iso_8601": "2019-07-12T21:43:01.453547Z", "url": "https://files.pythonhosted.org/packages/93/9d/16eef269ee086aa9c1c4c1b4a031b7e545e909769c8934908d98e64c4b98/faust-1.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "a7dc9ab79c53865d57bbcda52099f38b", "sha256": "a204105a70dccff29d9c061bbd4543793f59857bdf30b935b0aa6a24371a235b" }, "downloads": -1, "filename": "faust-1.7.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a7dc9ab79c53865d57bbcda52099f38b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 418937, "upload_time": "2019-07-19T22:00:45", "upload_time_iso_8601": "2019-07-19T22:00:45.552859Z", "url": "https://files.pythonhosted.org/packages/c2/de/57cc77492d3a4357bce675a969f8ad3002ffa8226be4e7edf16603835492/faust-1.7.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b82e24d3f67d4326cf5f84441fe9048", "sha256": "bd32cd67e648d726140575031ebcd4403fa6a3a0791867fdd2f451d35138c2f3" }, "downloads": -1, "filename": "faust-1.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b82e24d3f67d4326cf5f84441fe9048", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 303925, "upload_time": "2019-07-19T22:00:47", "upload_time_iso_8601": "2019-07-19T22:00:47.541988Z", "url": "https://files.pythonhosted.org/packages/07/a0/51b275173f6c2ee3ed35abbea40552530b6d50612f0741d8d9f907c65fd2/faust-1.7.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3aea1d5d7a3948c77b46220163ad5a55", "sha256": "0d91ad7abdbfd6ada6210f9cbdfc465a66a54df2bc87690124f5cf8a04dd4083" }, "downloads": -1, "filename": "faust-1.7.4.tar.gz", "has_sig": false, "md5_digest": "3aea1d5d7a3948c77b46220163ad5a55", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 614084, "upload_time": "2019-07-19T22:00:49", "upload_time_iso_8601": "2019-07-19T22:00:49.805807Z", "url": "https://files.pythonhosted.org/packages/7b/bd/54b2648370c4cfda950428d4e00f0d4a1b9701c0c80638b4f032e49733a5/faust-1.7.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "53c4287b858c5e4620e445e69c82b4a0", "sha256": "a9da6772e45a0c3c3b4834e5ddbb70a2e2bd9c40fd5eb86cee11b281d1efb857" }, "downloads": -1, "filename": "faust-1.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "53c4287b858c5e4620e445e69c82b4a0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 426390, "upload_time": "2019-09-27T23:08:47", "upload_time_iso_8601": "2019-09-27T23:08:47.677281Z", "url": "https://files.pythonhosted.org/packages/da/7c/e5cc223d6f659846865bb77e6cac7bed1ae3236f56e3f8449e9836e564ed/faust-1.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8414303fc8309e45d526770c85736eef", "sha256": "dcd0fdc78d529ab12492d39f98e2874d6a306b32d3bd7cb66fee5c5bc55e2746" }, "downloads": -1, "filename": "faust-1.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8414303fc8309e45d526770c85736eef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 311215, "upload_time": "2019-09-27T23:08:49", "upload_time_iso_8601": "2019-09-27T23:08:49.988918Z", "url": "https://files.pythonhosted.org/packages/d9/c0/8dd1e78cfde93d44d44adf526655b7985c6672230f69a1f40d3c53e2063b/faust-1.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eda10849db0ca79ca6d2d971ed307b49", "sha256": "851d8a30505212dc1109795bb1322e06039d90d95556d6fb70415486b8f2f3ab" }, "downloads": -1, "filename": "faust-1.8.0.tar.gz", "has_sig": false, "md5_digest": "eda10849db0ca79ca6d2d971ed307b49", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 626581, "upload_time": "2019-09-27T23:08:52", "upload_time_iso_8601": "2019-09-27T23:08:52.793652Z", "url": "https://files.pythonhosted.org/packages/48/c6/e5ddb9350fb855be614acff8d71bffa9ffb3c17c40116fe4d4ce994736e5/faust-1.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "e6ef6e484525f528afe9e50256c87f9b", "sha256": "638d0bbe841514c5acf4259422c6c32640bb56f6a897be60010fdca92910e890" }, "downloads": -1, "filename": "faust-1.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e6ef6e484525f528afe9e50256c87f9b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 426015, "upload_time": "2019-10-17T20:13:46", "upload_time_iso_8601": "2019-10-17T20:13:46.158350Z", "url": "https://files.pythonhosted.org/packages/a1/65/c1ac61d4f2649d7dc456896efb137d10eb944b38cc43dee735eb5f8940c0/faust-1.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79dba36c504472b61a1ed60fbc4cbfac", "sha256": "bd29e79a4a9849d724b86d46228cc5c5ae2bc81f884be1728ca56b24960ed633" }, "downloads": -1, "filename": "faust-1.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "79dba36c504472b61a1ed60fbc4cbfac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 311519, "upload_time": "2019-10-17T20:13:49", "upload_time_iso_8601": "2019-10-17T20:13:49.032192Z", "url": "https://files.pythonhosted.org/packages/e7/b7/b92a0dd24465d58b707ebfb488900904dc8327da38f6ccee19fdd3f590ec/faust-1.8.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ceeec230ff024de129123527b78d912", "sha256": "19b4d53c3ec938770e32f921c17690c501ad808939e515723775bdf45814a164" }, "downloads": -1, "filename": "faust-1.8.1.tar.gz", "has_sig": false, "md5_digest": "0ceeec230ff024de129123527b78d912", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 627848, "upload_time": "2019-10-17T20:13:51", "upload_time_iso_8601": "2019-10-17T20:13:51.832373Z", "url": "https://files.pythonhosted.org/packages/cb/2a/649c14ca4df011cdaf7410aa1fdb5b0f8f7bf268766f1100bce25081d505/faust-1.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "968ca3c65d897b6a399ebba1af916005", "sha256": "86dfa0fa0d4c76869b48d897087697f5144d28b4234ae0b263930114f999d3ef" }, "downloads": -1, "filename": "faust-1.9.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "968ca3c65d897b6a399ebba1af916005", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 427441, "upload_time": "2019-10-30T22:26:13", "upload_time_iso_8601": "2019-10-30T22:26:13.885592Z", "url": "https://files.pythonhosted.org/packages/4b/01/9ecae869a9a87a4c4528f5239c289de3a45621f1ed2874c5ee99b899428a/faust-1.9.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2707442329402728fc170d1c2a8b0db", "sha256": "0ca8be2667e53b4257649f13c992180c5b23a8893fa4b520d6662ca5828f81e0" }, "downloads": -1, "filename": "faust-1.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d2707442329402728fc170d1c2a8b0db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 312946, "upload_time": "2019-10-30T22:26:16", "upload_time_iso_8601": "2019-10-30T22:26:16.138779Z", "url": "https://files.pythonhosted.org/packages/3a/70/ee7389822b00463435adf8b6a7bad0f011cc088cbbc3d7ab9f7e06402075/faust-1.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f271576890eb251301ebf0b76bd53f60", "sha256": "c5bfce09ec056a3d869d4ccc3d633f6eb4a12742b5c7190e5652e31254608223" }, "downloads": -1, "filename": "faust-1.9.0.tar.gz", "has_sig": false, "md5_digest": "f271576890eb251301ebf0b76bd53f60", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 631226, "upload_time": "2019-10-30T22:26:18", "upload_time_iso_8601": "2019-10-30T22:26:18.458873Z", "url": "https://files.pythonhosted.org/packages/0e/2b/f0fcc6a9ae79192e6b07bfad65d073a5ee9a9186a61145772a06b1a86b13/faust-1.9.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f32f569ff9d259b13b72a1463215f305", "sha256": "128dc0b9483aa4009edcc8b23f5c132757f2329c5da1fcc144d4c1d1dd63f156" }, "downloads": -1, "filename": "faust-1.10.4-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "f32f569ff9d259b13b72a1463215f305", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.0", "size": 448858, "upload_time": "2020-02-25T22:57:18", "upload_time_iso_8601": "2020-02-25T22:57:18.108446Z", "url": "https://files.pythonhosted.org/packages/70/6e/2752702b6a0e98a12fb293697d7656eb985b44a8ac0faea44ffde175e485/faust-1.10.4-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18d7b09ac0f1bde944c7c9186896b384", "sha256": "4ae94762a16c3ef70aa1e77772ff94395c2068ecbb99e1acce252d0f1156bd2c" }, "downloads": -1, "filename": "faust-1.10.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "18d7b09ac0f1bde944c7c9186896b384", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.0", "size": 445049, "upload_time": "2020-02-25T22:57:20", "upload_time_iso_8601": "2020-02-25T22:57:20.583072Z", "url": "https://files.pythonhosted.org/packages/42/e3/d2b09f142efbb2e29f7b98cc5375f5a8891b3675b81ba35357ed464d7876/faust-1.10.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "625631f1cfa569738ea194689ef9da27", "sha256": "cfd47e756825eb8c6d197c1a2f25199aef2895cd31b522c74ec2dbb95dfa6fcc" }, "downloads": -1, "filename": "faust-1.10.4-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "625631f1cfa569738ea194689ef9da27", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.0", "size": 447247, "upload_time": "2020-02-25T22:57:22", "upload_time_iso_8601": "2020-02-25T22:57:22.812997Z", "url": "https://files.pythonhosted.org/packages/4f/3b/9956f716834aa4591e83d8abe592fc819b16bc32174f2995bcb04b95c321/faust-1.10.4-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88be65d73630d0bede9c2a189e1e1bc5", "sha256": "abaade164bde21cd5f41dff24a203ff91f2c935c849c8e6a807f854bf84ea77d" }, "downloads": -1, "filename": "faust-1.10.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88be65d73630d0bede9c2a189e1e1bc5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.0", "size": 330534, "upload_time": "2020-02-25T22:57:25", "upload_time_iso_8601": "2020-02-25T22:57:25.033055Z", "url": "https://files.pythonhosted.org/packages/79/f8/3fec4f5c3e5bf1ce8bb557ae507525253fa30a5cfc5984f342b931143f75/faust-1.10.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0331755f10904deaaa35a97d8513b8ab", "sha256": "ffcd350ea29d528f6814fc9a42b5e50e130310da054a93e9d8216ef89a254611" }, "downloads": -1, "filename": "faust-1.10.4.tar.gz", "has_sig": false, "md5_digest": "0331755f10904deaaa35a97d8513b8ab", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.0", "size": 678773, "upload_time": "2020-02-25T22:57:26", "upload_time_iso_8601": "2020-02-25T22:57:26.985700Z", "url": "https://files.pythonhosted.org/packages/17/37/6f3babe6a3cfa9cdccaf3e7f65bbba19b132486113372fe46627bf303c2c/faust-1.10.4.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }