{ "info": { "author": "Gary Donovan", "author_email": "gazza@gazza.id.au", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Pre-processors", "Topic :: System :: Systems Administration" ], "description": "[![PyPI release](https://img.shields.io/pypi/v/flying-circus.svg)](https://pypi.python.org/pypi/flying-circus)\n[![Python versions](https://img.shields.io/pypi/pyversions/flying-circus.svg)](https://pypi.python.org/pypi/flying-circus)\n[![Build Status](https://dev.azure.com/garyd203/flying-circus/_apis/build/status/garyd203.flying-circus?branchName=master)](https://dev.azure.com/garyd203/flying-circus/_build/latest?definitionId=1&branchName=master)\n[![Documentation Status](https://readthedocs.org/projects/flying-circus/badge/?version=latest)](http://flying-circus.readthedocs.io/en/latest/?badge=latest)\n[![Downloads](https://img.shields.io/pypi/dm/flying-circus.svg)](https://pypi.python.org/pypi/flying-circus)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n\n# flying-circus\n\nFlying Circus is a tool for describing AWS infrastructure as code (using\nPython). It uses the same data structures as the AWS Cloud Formation service,\nexcept described as Python objects instead of the usual YAML. The Python\nprogram generates a YAML template, which is passed across to Cloud Formation\nin the usual manner.\n\nIt is a bit unusual to use a full programming language to describe\ninfrastructure, instead of a static configuration file like many of us are\nused to (whether or not we also utilise a templating tool).\nWe hope that the Flying Circus library can empower DevOps folk by unlocking\nsome of the techniques that are available for software code, like named\nvariables and techniques to structure code independently of the output format,\nlibraries to allow code re-use with versioning, automated refactoring tools\nand so on.\n\nYou can learn how to use Flying Circus yourself by reading the\n[documentation](https://flying-circus.readthedocs.io/)\n\n# Installation\n\nInstall Flying Circus through the Python packaging system:\n\n```bash\npip install flying-circus\n```\n\nMany people also use the Amazon Web Services command line tools to deploy\ntheir CloudFormation stacks. If you want this, a good way to install an\nup-to-date version is also with `pip`:\n\n```bash\n# Optional\npip install awscli\n```\n\n# Example\n\nHere is a simple example of how you can use Flying Circus to describe some EC2\ninstances and deploy them using the AWS CloudFormation service.\n\nFirst, create a python script (called `my_ec2_stack.py` in this case) to\ndescribe your infrastructure. Any valid Python can be used to create the\nFlying Circus objects, along with any valid CloudFormation properties and\nattributes.\n\nThis example is intentionally simplistic - it just creates two EC2 instances\nwith varying configuration, and outputs the internal IP for one. However, it\ndoes hint at some of the more complex and powerful usage patterns.\n\n```python\nimport os\n\nfrom flyingcircus.core import Stack, Output\nfrom flyingcircus.intrinsic_function import GetAtt\nfrom flyingcircus.service.ec2 import *\n\n\ndef create_ec2_instance(name, instance_type=\"t2.micro\"):\n instance = Instance(Properties=InstanceProperties(\n ImageId=\"ami-942dd1f6\",\n InstanceType=instance_type,\n Monitoring=False,\n ))\n instance.name = name\n return instance\n\n\nif __name__ == \"__main__\":\n stack = Stack()\n\n stack.Resources[\"WebServer\"] = create_ec2_instance(\"webserver\")\n stack.Resources[\"DatabaseServer\"] = dbserver = create_ec2_instance(\"dbserver\", \"t2.medium\")\n dbserver.DeletionPolicy = \"Retain\"\n\n stack.Outputs[\"DatabaseServerIp\"] = Output(\n Description=f\"Internal IP address for the database server\",\n Value=GetAtt(dbserver, \"PrivateIp\"),\n )\n\n stack.tag(application=\"api-service\", environment=\"test\", owner=os.environ.get(\"USER\"))\n\n print(stack.export(\"yaml\"))\n```\n\nNow generate CloudFormation YAML from your Python script. Note that the result\nwill *always* be valid well-formatted YAML, and internal checks mean that it\nis also difficult to generate invalid CloudFormation.\n\nFinally, use the AWS command line tools to create/update a stack and it's\nassociated resources.\n\n```bash\npython my_ec2_stack.py > my_ec2_stack.yaml\naws cloudformation deploy --stack-name demo-flying-circus-ec2 --template-file my_ec2_stack.yaml\n```\n\nYou could do these steps in your Continuous Integration server ;-)\n\n# Is/Is Not\n\nThere's a lot of tools for managing Infrastructure as Code, often with subtle\ndifferences and passionate advocates. A quick discussion of our scope may\nhelp you understand where Flying Circus fits into this ecosystem, and whether it can\nhelp you. This is presented in the simple \"Is/Is Not\" format.\n\n## Flying Circus Is...\n\n* ...a Pythonic DSL for writing fully featured Python code\n* ...for Amazon Web Services infrastructure\n* ...built on top of AWS [Cloud Formation templates](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-guide.html)\n* ...a generator that always produces valid, consistent, human-readable, good-practice YAML\n\n## Flying Circus Is Not...\n\n* ...YAML or JSON. It's Python.\n* ...a tool to make it easier to write YAML or JSON. You write Python, and YAML is an output format.\n* ...a DSL with a completely new syntax. You use normal Python syntax with all\n of it's features and nothing changed.\n* ...a templating language, like Jinja2.\n* ...a template management tool, like Ansible.\n* ...an independent implementation of infrastructure management, like AWS\n Cloud Formation stacks, or Terraform.\n* ...a cloud-agnostic abstraction layer.\n* ...multi-cloud - although it could become this in the future.\n The current implementation is focused on representing AWS infrastructure\n using the CloudFormation data model. Other cloud providers have similar\n native data models, so it is feasible that we could re-use the concepts and\n tooling to support Google Cloud Platform, etc.\n* ...a tool for interacting with the Cloud Formation service. There\n are other tools that can do this for you (such as boto3 or the AWS CLI,\n for starters)\n* ...a validation tool - although it could become this in the future, and\n already has elements of validation as a by-product of presenting a helpful\n interface to users.\n\n# Sounds Great, Can I Use It?\n\nSure, of course you can. The [documentation will get you started](https://flying-circus.readthedocs.io/en/latest/getting_started.html).\n\nFlying Circus is currently in **Beta**. This means it is expected\nto work for the supported AWS services, and is in use by real customers.\nHowever, the details of the interface and implementation are still being\nvalidated and may change drastically.\n\n# How Do I Help?\n\nJust use it!\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/garyd203/flying-circus", "keywords": "AWS,cloudformation,infrastructure-as-code", "license": "LGPL-3.0", "maintainer": "", "maintainer_email": "", "name": "flying-circus", "package_url": "https://pypi.org/project/flying-circus/", "platform": "", "project_url": "https://pypi.org/project/flying-circus/", "project_urls": { "Documentation": "https://flying-circus.readthedocs.io/en/latest/", "Homepage": "https://github.com/garyd203/flying-circus", "Repository": "https://github.com/garyd203/flying-circus" }, "release_url": "https://pypi.org/project/flying-circus/0.7.3/", "requires_dist": [ "PyYAML (>=5.1.1,<5.2.0)", "attrs (>=18.2.0,<19.0.0)", "inflection (>=0.3.1,<0.4.0)" ], "requires_python": ">=3.6,<4.0", "summary": "A tool for describing AWS infrastructure as code", "version": "0.7.3", "yanked": false, "yanked_reason": null }, "last_serial": 6442621, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "2c6fe8144e29d1ac4d3f8fc9e43d9f10", "sha256": "490e70054bd6cf6e96822ddca04c0df32f1bae8fbec4cf211d59bd24aa94d0b1" }, "downloads": -1, "filename": "flying_circus-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2c6fe8144e29d1ac4d3f8fc9e43d9f10", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 2288, "upload_time": "2017-09-13T22:19:07", "upload_time_iso_8601": "2017-09-13T22:19:07.489629Z", "url": "https://files.pythonhosted.org/packages/c0/24/f7add947638f8cf7ce531aeb128ac6297d6c6780d6a9a23d89659cbee9ce/flying_circus-0.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82051e5cc84c9bdbe74cbfb6ee0ec19d", "sha256": "f87921369658cd75d7b154d4e8e199cd07cdbeb34ba4873197c87fd849b92e9f" }, "downloads": -1, "filename": "flying-circus-0.0.1.tar.gz", "has_sig": false, "md5_digest": "82051e5cc84c9bdbe74cbfb6ee0ec19d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1019, "upload_time": "2017-09-13T22:19:09", "upload_time_iso_8601": "2017-09-13T22:19:09.033949Z", "url": "https://files.pythonhosted.org/packages/20/9e/c4454fb5f8297b6df3a5dc9be1f8acdeb43eceb6e4d8ea0dc6309b1089ae/flying-circus-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "11590c454800e08c10fa19e544511291", "sha256": "5b5c4506fb2556ff5a9be21472f775c03a4e04b71a514689bb006bf110214242" }, "downloads": -1, "filename": "flying_circus-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "11590c454800e08c10fa19e544511291", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 2637, "upload_time": "2017-09-14T01:58:05", "upload_time_iso_8601": "2017-09-14T01:58:05.571196Z", "url": "https://files.pythonhosted.org/packages/cf/b8/36bff235e92e15172f2b763ec80b6726f3e5ebfb833581dac855caf2fd3f/flying_circus-0.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eeee201bad2f99a41f9edb98df6d0359", "sha256": "3b60afac49ae139445b665598d10f05d089b5e87cd93a1e0f4d48704b275767c" }, "downloads": -1, "filename": "flying-circus-0.0.2.tar.gz", "has_sig": false, "md5_digest": "eeee201bad2f99a41f9edb98df6d0359", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1240, "upload_time": "2017-09-14T01:58:07", "upload_time_iso_8601": "2017-09-14T01:58:07.146482Z", "url": "https://files.pythonhosted.org/packages/ae/a4/86f10800eb1a9b8e5965446b66cc8b2ddeff556f0571fec2e62c5d0dd8b2/flying-circus-0.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3": [ { "comment_text": "", "digests": { "md5": "d9a1b31fe3da6b46400d6ea40e8b7494", "sha256": "3586a7172c0a6ad5f4e67ffee2d67a64bec730e17dbf2b46884688ce9bdebf25" }, "downloads": -1, "filename": "flying-circus-0.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "d9a1b31fe3da6b46400d6ea40e8b7494", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11743, "upload_time": "2017-10-13T00:01:14", "upload_time_iso_8601": "2017-10-13T00:01:14.087241Z", "url": "https://files.pythonhosted.org/packages/b1/aa/85244a372da44540709b43a36ca013f402c64bd0f0c0bad23af5bd9d2e69/flying-circus-0.3.linux-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ebba3c6ab862770fb464cc76a511d0d", "sha256": "93bac123453bedd6486004671936833966d63183db35045f900db25ccc8fb1e4" }, "downloads": -1, "filename": "flying_circus-0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9ebba3c6ab862770fb464cc76a511d0d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9813, "upload_time": "2017-10-13T00:03:01", "upload_time_iso_8601": "2017-10-13T00:03:01.842693Z", "url": "https://files.pythonhosted.org/packages/ec/9d/bbe7b89afbc777430edaab9183c43096b3274e62eca8e05507daf617ccbc/flying_circus-0.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43358357cfe049f9439a5d3a824445f4", "sha256": "1cc0523591f367ec87b46fe29727e65e25f2ef665f17f0c887bd29b3dd731d19" }, "downloads": -1, "filename": "flying_circus-0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "43358357cfe049f9439a5d3a824445f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9809, "upload_time": "2017-10-13T00:04:47", "upload_time_iso_8601": "2017-10-13T00:04:47.003883Z", "url": "https://files.pythonhosted.org/packages/97/c0/e7a286a520492d9a5d639e9b3d1642f1998fab4c40f44039deed3de5f505/flying_circus-0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "253c00b10f4872cf15f31b7d69d92794", "sha256": "551e1ffd553bb6541d26396a110ef30454c4928ea43f6f01056e6adea8b3329a" }, "downloads": -1, "filename": "flying_circus-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "253c00b10f4872cf15f31b7d69d92794", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25890, "upload_time": "2017-12-22T06:04:37", "upload_time_iso_8601": "2017-12-22T06:04:37.527619Z", "url": "https://files.pythonhosted.org/packages/1b/2b/dbc7ae73365dd3209ad48dfd0d71c6f21c15aaa40aa87f4580e4f2f51a01/flying_circus-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "924943988540932ef43af44ba275ae1c", "sha256": "bb7248f9a4b6236a156f5c2655f67c9d801dc263ef67b4c54bc3cf5c5a7cecf6" }, "downloads": -1, "filename": "flying-circus-0.4.0.tar.gz", "has_sig": false, "md5_digest": "924943988540932ef43af44ba275ae1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20052, "upload_time": "2017-12-22T06:04:39", "upload_time_iso_8601": "2017-12-22T06:04:39.636992Z", "url": "https://files.pythonhosted.org/packages/f8/06/deebc6e94aa783ec53f3324fa7f6ab287b470df85a0e949474a62f5a02c5/flying-circus-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "7f64f81287c317b2dd943b13faea4b15", "sha256": "f2a2162f1e5a380ed3484c9751ef415ea9d79fffe2c7524261052970d3206e7b" }, "downloads": -1, "filename": "flying_circus-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7f64f81287c317b2dd943b13faea4b15", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29611, "upload_time": "2018-02-26T10:58:32", "upload_time_iso_8601": "2018-02-26T10:58:32.797098Z", "url": "https://files.pythonhosted.org/packages/6e/63/da43a5a595d2ccb831a6d167cc4acb593812db837408a3d8b0e70629ab76/flying_circus-0.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97832d11a465d45b1a57a748946fcf37", "sha256": "59a214f98f33dca422b87d02beeaab41d80f466aee6c1c2d3bf0f8905d49befb" }, "downloads": -1, "filename": "flying-circus-0.4.1.tar.gz", "has_sig": false, "md5_digest": "97832d11a465d45b1a57a748946fcf37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22930, "upload_time": "2018-02-26T10:58:34", "upload_time_iso_8601": "2018-02-26T10:58:34.728012Z", "url": "https://files.pythonhosted.org/packages/5c/d7/d52e3da2ec5047599a7e4c17b6ed54c4832b6bcbade5ff62694a71e89392/flying-circus-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "6b56e418269e7a614dfabdd8cb2f5016", "sha256": "fa85820fd57b1ae319b1875857af79255622c13555596516e2e356218b453652" }, "downloads": -1, "filename": "flying_circus-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6b56e418269e7a614dfabdd8cb2f5016", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43765, "upload_time": "2018-10-30T12:13:05", "upload_time_iso_8601": "2018-10-30T12:13:05.907577Z", "url": "https://files.pythonhosted.org/packages/bb/44/5b6ea2a8bf41d339d9b336d9d5614e705e7bc6db5c2fc7cccb7844bcb586/flying_circus-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82105d7f29df07920bf52cba5281f4c1", "sha256": "ac4422b133de43162d9ea3cabc5dc42df48f1915207e9b27b2be5338444da461" }, "downloads": -1, "filename": "flying-circus-0.5.0.tar.gz", "has_sig": false, "md5_digest": "82105d7f29df07920bf52cba5281f4c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30050, "upload_time": "2018-10-30T12:13:07", "upload_time_iso_8601": "2018-10-30T12:13:07.478557Z", "url": "https://files.pythonhosted.org/packages/ad/85/de05051b835e02fff9f71faa0fee8bca91bee2c7468f027c351f3f8a00a2/flying-circus-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "56a1e94b92ab94a1ce1c35a8ae63b51f", "sha256": "acee42508b63e42188462692d1dff16ef22415961caaa0b2481dd5253ed283c4" }, "downloads": -1, "filename": "flying_circus-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "56a1e94b92ab94a1ce1c35a8ae63b51f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51651, "upload_time": "2018-11-24T12:06:56", "upload_time_iso_8601": "2018-11-24T12:06:56.705080Z", "url": "https://files.pythonhosted.org/packages/6f/66/866adc27bfa4b9ffe78b8de76bff4bb9360ef248fefee8e1407b6becf86c/flying_circus-0.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b70da70d51f706731efa91f1239c2e79", "sha256": "eb96f584c709690391d0730a671cad6a24b44b9fe74b832158877e8c49a185d6" }, "downloads": -1, "filename": "flying-circus-0.5.1.tar.gz", "has_sig": false, "md5_digest": "b70da70d51f706731efa91f1239c2e79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29107, "upload_time": "2018-11-24T12:06:58", "upload_time_iso_8601": "2018-11-24T12:06:58.963542Z", "url": "https://files.pythonhosted.org/packages/f1/d0/fb4fc1c74ef8679336e0ea7b498b5b19a12e301e5209b748b535c1f3ae6c/flying-circus-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "9bd877103e065bd8d35874164b43aaae", "sha256": "7c113c63a063c4d7cc1e4a41fb9ae3b409d18bf19b20676008bc06e8951fc17e" }, "downloads": -1, "filename": "flying_circus-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9bd877103e065bd8d35874164b43aaae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 71145, "upload_time": "2019-02-12T10:34:56", "upload_time_iso_8601": "2019-02-12T10:34:56.114447Z", "url": "https://files.pythonhosted.org/packages/f6/3a/0a59d7b0e20377c61c2083cf906ac5a95a95f76746ab21df18bdaf310ce9/flying_circus-0.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6eb0da1c147c4d426ba6737a82e25f51", "sha256": "a06c788da36d93fa5f4b15488475cc6821b28432bd8e98f7908c2f88657f306d" }, "downloads": -1, "filename": "flying-circus-0.6.0.tar.gz", "has_sig": false, "md5_digest": "6eb0da1c147c4d426ba6737a82e25f51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37650, "upload_time": "2019-02-12T10:34:58", "upload_time_iso_8601": "2019-02-12T10:34:58.875890Z", "url": "https://files.pythonhosted.org/packages/f4/60/3c07ad188ab7f3a6b4400c463827913856ba5d4ac6c461e4b0a830642077/flying-circus-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "20d48495fa89c3c0664ff7d321d1e97c", "sha256": "f239a9fd5841cd9bc011aafa1c5eb482a560c4f20ee8c2f09dc030e535f64112" }, "downloads": -1, "filename": "flying_circus-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "20d48495fa89c3c0664ff7d321d1e97c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 71702, "upload_time": "2019-02-12T10:48:28", "upload_time_iso_8601": "2019-02-12T10:48:28.645788Z", "url": "https://files.pythonhosted.org/packages/26/27/7dcc717098c48cd7c0810956323af2c4a17e469d3f7b05ed445b6cbf85d0/flying_circus-0.6.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "244371bc988d93fd0936e26e5ef90a38", "sha256": "5862bc1ca0ff532d36c6ab78a50d45873a77391100c5c05a1d74a21830e3ec8a" }, "downloads": -1, "filename": "flying-circus-0.6.1.tar.gz", "has_sig": false, "md5_digest": "244371bc988d93fd0936e26e5ef90a38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38244, "upload_time": "2019-02-12T10:48:31", "upload_time_iso_8601": "2019-02-12T10:48:31.007231Z", "url": "https://files.pythonhosted.org/packages/e1/5e/fcd9031bb852f6f3c0cd7017d44b16c60095e454cbd4161d1c4923dca0c1/flying-circus-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "a96c13f8d3171dcc1e294828b6c9bcaa", "sha256": "6f23dcbdb7353023bdaf70f78fd8aa48a1512f4d83589dd67022be6854ed529b" }, "downloads": -1, "filename": "flying_circus-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a96c13f8d3171dcc1e294828b6c9bcaa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 157635, "upload_time": "2019-03-14T00:05:05", "upload_time_iso_8601": "2019-03-14T00:05:05.665696Z", "url": "https://files.pythonhosted.org/packages/97/b9/072d003726c10503abea413b52e61303f2f478c9e3402615b84dcf3c94f5/flying_circus-0.6.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20ead3feeba3b07d7de3f20bf7713688", "sha256": "7fd746695a6a62435a98ad7541efdd73dcfbb979d282c5ea386bbc3093713111" }, "downloads": -1, "filename": "flying-circus-0.6.2.tar.gz", "has_sig": false, "md5_digest": "20ead3feeba3b07d7de3f20bf7713688", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66898, "upload_time": "2019-03-14T00:05:07", "upload_time_iso_8601": "2019-03-14T00:05:07.552712Z", "url": "https://files.pythonhosted.org/packages/39/e3/9ed64429e22f6e47848f9abef566c485459a271cf0ff2beb03f5c2d539ac/flying-circus-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "e30a9172a5b5f93c63ff9ed5a59285dd", "sha256": "d03a18d9ba71bb700a42ee6db04eec9814861caa4d9277ad3bb25c8f79f0905f" }, "downloads": -1, "filename": "flying_circus-0.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e30a9172a5b5f93c63ff9ed5a59285dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 156773, "upload_time": "2019-03-14T00:24:30", "upload_time_iso_8601": "2019-03-14T00:24:30.159168Z", "url": "https://files.pythonhosted.org/packages/75/31/9f76c6d505793855d7ee2ab3c90a420bc767ea32d6b08fb44421b64fca50/flying_circus-0.6.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1719d0edc436d26189779fca68ede54", "sha256": "17a051169359430992a1177d87008c4ed761743ca49eeb32bf8b6d3ea55fcbd0" }, "downloads": -1, "filename": "flying-circus-0.6.3.tar.gz", "has_sig": false, "md5_digest": "c1719d0edc436d26189779fca68ede54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66936, "upload_time": "2019-03-14T00:24:31", "upload_time_iso_8601": "2019-03-14T00:24:31.924657Z", "url": "https://files.pythonhosted.org/packages/10/4e/9278e75733107a7e0576cdc42dbf1866c59343599c12dfa91502a20979e6/flying-circus-0.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "99c14d2cfc1495ef5ff27e4240d8684f", "sha256": "c92922493e604b31e4fe383b67b5f5a4103cf397f063aba245b704531c83d17f" }, "downloads": -1, "filename": "flying_circus-0.6.4-py3-none-any.whl", "has_sig": false, "md5_digest": "99c14d2cfc1495ef5ff27e4240d8684f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 157364, "upload_time": "2019-06-04T10:57:23", "upload_time_iso_8601": "2019-06-04T10:57:23.138700Z", "url": "https://files.pythonhosted.org/packages/b9/57/244638125eac36bde0ffce0b1c3867e6eaa8a575c590cea8659a34e139b0/flying_circus-0.6.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8ce5e38ac4977e8e3f112bf072669d1", "sha256": "3340bb38a27c61f9c0774320761b605c04175f0c0041af5e8f6b79becb06368d" }, "downloads": -1, "filename": "flying-circus-0.6.4.tar.gz", "has_sig": false, "md5_digest": "b8ce5e38ac4977e8e3f112bf072669d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71648, "upload_time": "2019-06-04T10:57:26", "upload_time_iso_8601": "2019-06-04T10:57:26.417123Z", "url": "https://files.pythonhosted.org/packages/9a/63/4a6043db00b91579dc53c423045628853412c8ac795211743bc2c4eae814/flying-circus-0.6.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "8281d5a65809f4dd9f91f5629616bda0", "sha256": "e1392f9ec91a1d2acb496901bb353e0f211d8276f6d8c524f0daa4b2e8dc879d" }, "downloads": -1, "filename": "flying_circus-0.6.5-py3-none-any.whl", "has_sig": false, "md5_digest": "8281d5a65809f4dd9f91f5629616bda0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 157472, "upload_time": "2019-06-05T06:51:15", "upload_time_iso_8601": "2019-06-05T06:51:15.391555Z", "url": "https://files.pythonhosted.org/packages/6f/c5/b5d091344823ac96620a210d9b36afa9c36af58574819531c1e777b1bc15/flying_circus-0.6.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2a7e0cfbf9e7fd74611e58571a55cdf", "sha256": "c4191e86d8f5a9eb961e177708c5ff982c773262e66500bd72ddd26202513446" }, "downloads": -1, "filename": "flying-circus-0.6.5.tar.gz", "has_sig": false, "md5_digest": "f2a7e0cfbf9e7fd74611e58571a55cdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71759, "upload_time": "2019-06-05T06:51:17", "upload_time_iso_8601": "2019-06-05T06:51:17.264534Z", "url": "https://files.pythonhosted.org/packages/8f/e3/f2384739916bb6886f23e3f8c9af78bf56f9ef3b41fc0934c4e62a29e1d8/flying-circus-0.6.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "37f0e20da478773f8cb5e67412a2b3c3", "sha256": "0ecb0b3896d8c9228d39119a433df3f39a82762479f86cd7a70624e6f28023e7" }, "downloads": -1, "filename": "flying_circus-0.6.6-py3-none-any.whl", "has_sig": false, "md5_digest": "37f0e20da478773f8cb5e67412a2b3c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 167533, "upload_time": "2019-07-11T12:14:02", "upload_time_iso_8601": "2019-07-11T12:14:02.526890Z", "url": "https://files.pythonhosted.org/packages/1f/ba/d97a940bcd136414867a26a98e98ec79535a1cd0831f2bce512195bff39d/flying_circus-0.6.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "253dda50acc22b78e9e0e138dcde8d16", "sha256": "637005af8093bbfb12e32054249206569375135862400fac446cb935ed4fff2b" }, "downloads": -1, "filename": "flying-circus-0.6.6.tar.gz", "has_sig": false, "md5_digest": "253dda50acc22b78e9e0e138dcde8d16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77109, "upload_time": "2019-07-11T12:14:06", "upload_time_iso_8601": "2019-07-11T12:14:06.322656Z", "url": "https://files.pythonhosted.org/packages/a6/5a/c935f26648547628a60c88ce61bc701e8dd348c59f6b37281fe6a49aef39/flying-circus-0.6.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "d6c49bdaa37c0572d2115a492bc3269a", "sha256": "31610bcb0f3474cf74abca3de237fc5a03f49004e03c1cdec11998eef6259d26" }, "downloads": -1, "filename": "flying_circus-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d6c49bdaa37c0572d2115a492bc3269a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 168887, "upload_time": "2019-08-06T11:35:44", "upload_time_iso_8601": "2019-08-06T11:35:44.024338Z", "url": "https://files.pythonhosted.org/packages/e4/75/014726894ed85f027c7fd7cf1c3c1432c82747cb3cacbf7ea36a6d653271/flying_circus-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2833fdbdf8ad5ed4ddb74c7ac3238815", "sha256": "a638bf2c9b2c90090d8309d63100268376e0632fabee1eed87895fc3411506c5" }, "downloads": -1, "filename": "flying-circus-0.7.0.tar.gz", "has_sig": false, "md5_digest": "2833fdbdf8ad5ed4ddb74c7ac3238815", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77772, "upload_time": "2019-08-06T11:35:46", "upload_time_iso_8601": "2019-08-06T11:35:46.177391Z", "url": "https://files.pythonhosted.org/packages/1f/43/f9e901c3a4b1f78a569eeeebc8a7cdb67c304848b64958b7a43561395071/flying-circus-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0b0": [ { "comment_text": "", "digests": { "md5": "b04d87436b3b131b0b190bdb949835f4", "sha256": "c0199696b635deb95391d69008c4005915d9cf6dd6a417f902963c3ab4bb203b" }, "downloads": -1, "filename": "flying_circus-0.7.0b0-py3-none-any.whl", "has_sig": false, "md5_digest": "b04d87436b3b131b0b190bdb949835f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 168913, "upload_time": "2019-08-06T10:04:34", "upload_time_iso_8601": "2019-08-06T10:04:34.246461Z", "url": "https://files.pythonhosted.org/packages/d5/7b/8a4425d26c1c756c653fc7c9aa421df149332bce009e37f997e9ee85952c/flying_circus-0.7.0b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94f2e2d539e1eea22a05ae046fa251d5", "sha256": "5dc470d4775cbf0a8f86b77e89e2f7f0c472360e57b6a8d5d5a584483566de16" }, "downloads": -1, "filename": "flying-circus-0.7.0b0.tar.gz", "has_sig": false, "md5_digest": "94f2e2d539e1eea22a05ae046fa251d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77801, "upload_time": "2019-08-06T10:04:36", "upload_time_iso_8601": "2019-08-06T10:04:36.178787Z", "url": "https://files.pythonhosted.org/packages/9a/b2/d54485d07a58f5930693c9363d0014ff3163e1f38c746256d10fd4ae4ef0/flying-circus-0.7.0b0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "93abb3230107084e1ab9bdad960f3a54", "sha256": "f207ca122b284a6632dc55e58c78e7639ae8cdfed78da0f7f1abb256fedad8b8" }, "downloads": -1, "filename": "flying_circus-0.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "93abb3230107084e1ab9bdad960f3a54", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 174589, "upload_time": "2019-10-01T07:45:49", "upload_time_iso_8601": "2019-10-01T07:45:49.554790Z", "url": "https://files.pythonhosted.org/packages/0e/db/4e751997dd41e12302cc72c324c8fd34e5522a64a27859327c3b989ac3f3/flying_circus-0.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7953471d4286ea28f4ef2ab3fd51598", "sha256": "d589ac56c2ab2a43a9ddfd5fc07bf5eca00663223e20438ceae17b7dbb5820fd" }, "downloads": -1, "filename": "flying-circus-0.7.1.tar.gz", "has_sig": false, "md5_digest": "c7953471d4286ea28f4ef2ab3fd51598", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80168, "upload_time": "2019-10-01T07:45:52", "upload_time_iso_8601": "2019-10-01T07:45:52.267461Z", "url": "https://files.pythonhosted.org/packages/a6/72/27c4e269a60286565e3aa17dcabfaab2b96cdb14467d201c40f4099f2d8d/flying-circus-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1b0": [ { "comment_text": "", "digests": { "md5": "8c955d098e7251ecaba202a92e3e7ca2", "sha256": "aca93e7f0c888f773c6509cdd121df5ab16a838a17d9ae93359ff989e4ec35f4" }, "downloads": -1, "filename": "flying_circus-0.7.1b0-py3-none-any.whl", "has_sig": false, "md5_digest": "8c955d098e7251ecaba202a92e3e7ca2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 168917, "upload_time": "2019-08-07T07:53:40", "upload_time_iso_8601": "2019-08-07T07:53:40.799566Z", "url": "https://files.pythonhosted.org/packages/bc/7c/99571d1bab855e4d5a53c63d7d6b9fa4241f0b16495559856d019f314fbc/flying_circus-0.7.1b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a70b6bbb2ed3abd82e90ffd2c35fc6d", "sha256": "8d2a4748b5b4a74254df1dfe1943c4475a9df00f8b817af3fb4319635229bfae" }, "downloads": -1, "filename": "flying-circus-0.7.1b0.tar.gz", "has_sig": false, "md5_digest": "2a70b6bbb2ed3abd82e90ffd2c35fc6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77806, "upload_time": "2019-08-07T07:53:43", "upload_time_iso_8601": "2019-08-07T07:53:43.183934Z", "url": "https://files.pythonhosted.org/packages/91/15/925ac694274b094a6c27ad3058394d0489b54a70eed02138c9ae70bdf13a/flying-circus-0.7.1b0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "a36b6bfe9f8db42d68464c02d51f0d7f", "sha256": "5b5535f2287f8c5ddfb4a739f9c5d8a730da32c3e0daa528eea847e33df9e5e0" }, "downloads": -1, "filename": "flying_circus-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a36b6bfe9f8db42d68464c02d51f0d7f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 175146, "upload_time": "2019-11-05T10:46:15", "upload_time_iso_8601": "2019-11-05T10:46:15.546382Z", "url": "https://files.pythonhosted.org/packages/b4/39/179488cabcc5fa380d96bb2eebd5ad3777ec06c79091bebc6ae1b6d30370/flying_circus-0.7.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2491791e7791ee49bbffac2f6b139f1", "sha256": "09eefba5ed314701b81edff1c60b5e7090669f498617ba42145ee71077381987" }, "downloads": -1, "filename": "flying-circus-0.7.2.tar.gz", "has_sig": false, "md5_digest": "e2491791e7791ee49bbffac2f6b139f1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 86148, "upload_time": "2019-11-05T10:46:18", "upload_time_iso_8601": "2019-11-05T10:46:18.110779Z", "url": "https://files.pythonhosted.org/packages/4a/a4/07820cc949c9f0e66d33c12f1c809b5bd7a374231da578680b1da35e9953/flying-circus-0.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.2b0": [ { "comment_text": "", "digests": { "md5": "8ed1a866c4ef7e226bebc382500ec9e3", "sha256": "a28648350c0c69c4f7da74f9b5386b183ea8b4ecb67414735e7fb89e59ab33d3" }, "downloads": -1, "filename": "flying_circus-0.7.2b0-py3-none-any.whl", "has_sig": false, "md5_digest": "8ed1a866c4ef7e226bebc382500ec9e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 177146, "upload_time": "2019-10-29T22:16:59", "upload_time_iso_8601": "2019-10-29T22:16:59.398018Z", "url": "https://files.pythonhosted.org/packages/9f/6c/73216eb611c18e946c34e49e61c4cceb35d703a332bdd5ba31e811890dfd/flying_circus-0.7.2b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ea761c106a0d2930680917198ae8895", "sha256": "39457fdee6c39ce6eef52d1c59a9eff6d7e77a96972ea97e4ea0bd57731511f2" }, "downloads": -1, "filename": "flying-circus-0.7.2b0.tar.gz", "has_sig": false, "md5_digest": "8ea761c106a0d2930680917198ae8895", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 88116, "upload_time": "2019-10-29T22:16:55", "upload_time_iso_8601": "2019-10-29T22:16:55.649833Z", "url": "https://files.pythonhosted.org/packages/77/36/b104f128245a845af2bf9989b79fa04966f9bf65b9a7a04ef0105ae35028/flying-circus-0.7.2b0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "0ed442208d1d26ec464ae31d2b7832e8", "sha256": "fa6b829c3fe136c8b2c97551811ae3b48367682c43ca56571fed3588afd18aca" }, "downloads": -1, "filename": "flying_circus-0.7.3-py3-none-any.whl", "has_sig": false, "md5_digest": "0ed442208d1d26ec464ae31d2b7832e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 183399, "upload_time": "2020-01-13T06:09:55", "upload_time_iso_8601": "2020-01-13T06:09:55.906177Z", "url": "https://files.pythonhosted.org/packages/a7/26/29c8d8fb9d893bcaa50c906d0773ff8b4a10d0996eff5a652eb0b14bca24/flying_circus-0.7.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c7cc5903176f5f9f964080b6c01ffe4", "sha256": "631f6ce9ede13f84427c38b32f85d0d25c0bfb6195d7e00147f7f54b0dc49f41" }, "downloads": -1, "filename": "flying-circus-0.7.3.tar.gz", "has_sig": false, "md5_digest": "3c7cc5903176f5f9f964080b6c01ffe4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 89576, "upload_time": "2020-01-13T06:09:58", "upload_time_iso_8601": "2020-01-13T06:09:58.466783Z", "url": "https://files.pythonhosted.org/packages/fa/68/3dcbf19436cba9ec38f51aa45eabd6b2416deec6480ced542add3118b74c/flying-circus-0.7.3.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0ed442208d1d26ec464ae31d2b7832e8", "sha256": "fa6b829c3fe136c8b2c97551811ae3b48367682c43ca56571fed3588afd18aca" }, "downloads": -1, "filename": "flying_circus-0.7.3-py3-none-any.whl", "has_sig": false, "md5_digest": "0ed442208d1d26ec464ae31d2b7832e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 183399, "upload_time": "2020-01-13T06:09:55", "upload_time_iso_8601": "2020-01-13T06:09:55.906177Z", "url": "https://files.pythonhosted.org/packages/a7/26/29c8d8fb9d893bcaa50c906d0773ff8b4a10d0996eff5a652eb0b14bca24/flying_circus-0.7.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c7cc5903176f5f9f964080b6c01ffe4", "sha256": "631f6ce9ede13f84427c38b32f85d0d25c0bfb6195d7e00147f7f54b0dc49f41" }, "downloads": -1, "filename": "flying-circus-0.7.3.tar.gz", "has_sig": false, "md5_digest": "3c7cc5903176f5f9f964080b6c01ffe4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 89576, "upload_time": "2020-01-13T06:09:58", "upload_time_iso_8601": "2020-01-13T06:09:58.466783Z", "url": "https://files.pythonhosted.org/packages/fa/68/3dcbf19436cba9ec38f51aa45eabd6b2416deec6480ced542add3118b74c/flying-circus-0.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }