Metadata-Version: 2.1
Name: prefect
Version: 0.10.1
Summary: The Prefect Core automation and scheduling engine.
Home-page: https://www.github.com/PrefectHQ/prefect
Author: Prefect Technologies, Inc.
Author-email: help@prefect.io
License: Apache License 2.0
Description: <p align="center" style="margin-bottom:40px;">
        <img src="https://uploads-ssl.webflow.com/5ba446b0e783e26d5a2f2382/5c942c9ca934ec5c88588297_primary-color-vertical.svg"  height=350 style="max-height: 350px;">
        </p>
        
        <p align="center">
        <a href=https://circleci.com/gh/PrefectHQ/prefect/tree/master>
            <img src="https://circleci.com/gh/PrefectHQ/prefect/tree/master.svg?style=shield&circle-token=28689a55edc3c373486aaa5f11a1af3e5fc53344">
        </a>
        
        <a href="https://codecov.io/gh/PrefectHQ/prefect">
          <img src="https://codecov.io/gh/PrefectHQ/prefect/branch/master/graph/badge.svg" />
        </a>
        
        <a href=https://github.com/ambv/black>
            <img src="https://img.shields.io/badge/code%20style-black-000000.svg">
        </a>
        
        <a href="https://pypi.org/project/prefect/">
            <img src="https://img.shields.io/pypi/dm/prefect.svg?color=%2327B1FF&label=installs&logoColor=%234D606E">
        </a>
        
        <a href="https://hub.docker.com/r/prefecthq/prefect">
            <img src="https://img.shields.io/docker/pulls/prefecthq/prefect.svg?color=%2327B1FF&logoColor=%234D606E">
        </a>
        
        <a href="https://join.slack.com/t/prefect-community/shared_invite/enQtODQ3MTA2MjI4OTgyLTliYjEyYzljNTc2OThlMDE4YmViYzk3NDU4Y2EzMWZiODM0NmU3NjM0NjIyNWY0MGIxOGQzODMxNDMxYWYyOTE">
            <img src="https://img.shields.io/static/v1.svg?label=chat&message=on%20slack&color=27b1ff&style=flat">
        </a>
        
        </p>
        
        ## Hello, world! 👋
        
        We've rebuilt data engineering for the data science era.
        
        Prefect is a new workflow management system, designed for modern infrastructure and powered by the open-source Prefect Core workflow engine. Users organize `Tasks` into `Flows`, and Prefect takes care of the rest.
        
        Read the [docs](https://docs.prefect.io); get the [code](#installation); ask us [anything](https://join.slack.com/t/prefect-community/shared_invite/enQtODQ3MTA2MjI4OTgyLTliYjEyYzljNTc2OThlMDE4YmViYzk3NDU4Y2EzMWZiODM0NmU3NjM0NjIyNWY0MGIxOGQzODMxNDMxYWYyOTE)!
        
        ```python
        from prefect import task, Flow, Parameter
        
        
        @task(log_stdout=True)
        def say_hello(name):
            print("Hello, {}!".format(name))
        
        
        with Flow("My First Flow") as flow:
            name = Parameter('name')
            say_hello(name)
        
        
        flow.run(name='world') # "Hello, world!"
        flow.run(name='Marvin') # "Hello, Marvin!"
        ```
        
        Spin up Prefect Core's local UI to orchestrate and manage your workflows:
        
        ```
        prefect server start
        ```
        
        and navigate to `http://localhost:8080`.  (**Note:** Prefect Server requires both Docker and Docker Compose).
        
        ## Docs
        
        Prefect's documentation -- including concepts, tutorials, and a full API reference -- is always available at [docs.prefect.io](https://docs.prefect.io).
        
        Instructions for contributing to documentation can be found in the [development guide](https://docs.prefect.io/core/development/documentation.html).
        
        ## Blog
        
        [The Prefect Blog](https://medium.com/the-prefect-blog) for updates and insights from the Prefect team.
        
        ## Contributing
        
        Read about Prefect's [community](https://docs.prefect.io/core/community.html) or dive in to the [development guides](https://docs.prefect.io/core/development/overview.html) for information about contributions, documentation, code style, and testing.
        
        Join our [Slack](https://join.slack.com/t/prefect-community/shared_invite/enQtODQ3MTA2MjI4OTgyLTliYjEyYzljNTc2OThlMDE4YmViYzk3NDU4Y2EzMWZiODM0NmU3NjM0NjIyNWY0MGIxOGQzODMxNDMxYWYyOTE) to chat about Prefect, ask questions, and share tips.
        
        Prefect is committed to ensuring a positive environment. All interactions are governed by our [Code of Conduct](https://docs.prefect.io/core/code_of_conduct.html).
        
        ## "...Prefect?"
        
        From the Latin _praefectus_, meaning "one who is in charge", a prefect is an official who oversees a domain and makes sure that the rules are followed. Similarly, Prefect is responsible for making sure that workflows execute properly.
        
        It also happens to be the name of a roving researcher for that wholly remarkable book, _The Hitchhiker's Guide to the Galaxy_.
        
        ## Installation
        
        ### Requirements
        
        Prefect requires Python 3.6+.
        
        ### Install latest release
        
        Using `pip`:
        
        ```bash
        pip install prefect
        ```
        
        or `conda`:
        
        ```bash
        conda install -c conda-forge prefect
        ```
        
        or `pipenv`:
        
        ```
        pipenv install --pre prefect
        ```
        
        ### Install bleeding edge
        
        Please note that the master branch of Prefect is not guaranteed to be compatible with Prefect Cloud.
        
        ```bash
        git clone https://github.com/PrefectHQ/prefect.git
        pip install ./prefect
        ```
        
        ## License
        
        Prefect is variously licensed under the [Apache Software License Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) or the [Prefect Community License](https://www.prefect.io/legal/prefect-community-license).
        
        All code except the `/server` directory is Apache 2.0-licensed unless otherwise noted. The `/server` directory is licensed under the Prefect Community License.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Monitoring
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: airtable
Provides-Extra: aws
Provides-Extra: azure
Provides-Extra: dev
Provides-Extra: dropbox
Provides-Extra: gcp
Provides-Extra: google
Provides-Extra: jira
Provides-Extra: kubernetes
Provides-Extra: postgres
Provides-Extra: redis
Provides-Extra: rss
Provides-Extra: snowflake
Provides-Extra: spacy
Provides-Extra: templates
Provides-Extra: test
Provides-Extra: viz
Provides-Extra: twitter
Provides-Extra: all_extras
