www.prefect.io Open in urlscan Pro
2600:1f18:2489:8202:5162:2cb:b813:121f  Public Scan

Submitted URL: http://prefect.io/
Effective URL: https://www.prefect.io/
Submission: On August 25 via api from US — Scanned from US

Form analysis 3 forms found in the DOM

<form id="01fqygzb9zjj9ymkm6g1drw7b4" class="flex sm:flex-row justify-end"><input id="username" type="email" target="_blank" name="EMAIL" placeholder="Email" value="" class="shadow appearance-none border-none focus:outline-none focus:shadow-outline">
  <div id="responses" class="clear mr-8 my-auto">
    <div id="error-response" class="response text-red animate__animated animate__fadeOut animate__delay-2s" style="display:none">Please submit a valid email address</div>
    <div id="success-response" class="response text-green animate__animated animate__fadeOut animate__delay-2s" style="display:none">Thanks for signing up to our newsletter!</div>
  </div><button type="submit" class="btn relative rounded shadow-button btn-secondary" style="min-width:150px;" data-v-200b0737=""><!----><!----><!----><!----><!----><!---->
    <div class="shift-up transition-all transform" style="color:;" data-v-200b0737=""> SIGN UP </div>
  </button>
</form>

Name: contact-sales

<form name="contact-sales" target="lead" class="text-md text-gray-900 w-full"><input type="hidden" name="captcha_settings"
    value="{&quot;keyname&quot;:&quot;google_recaptcha&quot;,&quot;fallback&quot;:&quot;true&quot;,&quot;orgId&quot;:&quot;00D2E000000o3Ut&quot;,&quot;ts&quot;:1661404615556}"><input type="hidden" name="oid" value="00D2E000000o3Ut"><input
    type="hidden" name="retURL" value="https://www.prefect.io/"><input type="hidden" id="first_name" name="first_name" value=""><input type="hidden" id="last_name" name="last_name" value=""><input type="hidden" id="description" name="description"
    value=""><input type="hidden" id="Use_Case__c" name="Use_Case__c" value="">
  <div class="flex flex-col items-start justify-start flex-wrap">
    <div class="flex flex-col w-full"><label for="name" class="font-bold mb-2"> Your Name* </label>
      <div class="miter small contact-input-miter mb-4 w-full">
        <div class="bordered input-parent"><input type="text" name="name" id="name" value="" class="bg-transparent border-none w-full"></div>
      </div><label for="name" class="font-bold mb-2"> Email* </label>
      <div class="miter small contact-input-miter mb-4">
        <div class="bordered input-parent"><input type="email" name="email" id="email" value="" class="bg-transparent border-none w-full"></div>
      </div><label for="name" class="font-bold mb-2"> Company* </label>
      <div class="miter small contact-input-miter mb-4">
        <div class="bordered input-parent"><input type="text" name="company" id="company" value="" class="bg-transparent border-none w-full"></div>
      </div>
      <div class="filter-options--option mt-4 mb-8"><input id="signUpForNewsletter" name="signUpForNewsletter" type="checkbox" class="filter-options--checkbox"><label for="signUpForNewsletter" class="pl-5">Request a demo?</label></div>
    </div>
    <div class="text-red"><!----><!----><!----></div><!---->
  </div>
  <div class="button-wrapper mt-10 flex items-center justify-start"><a href="#"><button class="btn relative rounded btn duration-300 mx-auto btn-primary lg:mx-0" style="min-width:150px;" data-v-200b0737=""><!----><!----><!----><!----><!----><!----><div class="shift-up transition-all transform" style="color:;" data-v-200b0737="">
                  SUBMIT
                </div></button></a><span class="font-bold ml-8">Required *</span></div>
</form>

POST

<form id="fileUploadForm" enctype="multipart/form-data" method="post" target="fileUploadIframe"><input type="file" id="fileSelector" name="file" style="display: none;"><input name="filename" type="hidden"></form>

Text Content

New Partnership!
Databricks and Prefect announce a new partnership and integration →
See it live!
Join our bi-weekly demo of Prefect →
Out of Beta
Prefect Cloud 2.0 is now available! Sign up now to give it a try. →
Reintroducing Prefect
A coordination plane for the world's dataflow. →
Read the report!
2022 State of Workflow Orchestration →
Security News!
We're SOC 2 Type II compliant! →
← →
PRODUCT

CLOUD SERVICES


PREFECT

An open-source data workflow orchestration


PREFECT CLOUD

A platform for dataflow automation

WATCH THE OVERVIEW
COMPANY
About us →
Careers →
Newsroom →
Advisory Board →
Partners →

THE LATEST

Why 90% of Prefect job offers were accepted in 2021

COO Sarah Moses opens a window into our hiring process

READ MORE →
COMMUNITY


JOIN SLACK

Learn, build, and grow with the data engineers creating the future of Prefect.


JOIN DISCOURSE

Find all the answers to your Prefect questions in our Discourse forum.

Top Prefectionists →
Pizza Patrol →
Club 42 →
Community Updates →
RESOURCES
The Guide →
Case Studies →
Docs →
Tutorial →
Support →
FAQs →

BLOG POST

(Re)Introducing Prefect: The Global Coordination Plane

Orchestrate anything, observe everything.

READ MORE →
PRICING
GET STARTED
LOG IN →Looking for 1.0?
Solutions
PREFECT 2.0 PREFECT CLOUD 2.0 PRICING
Community
OUR COMMUNITY CLUB 42 COMMUNITY UPDATES SLACK COMMUNITY DISCOURSE FORUM TOP
CONTRIBUTORS
Resources
SUPPORT GUIDE BLOG CASE STUDIES FAQ
About
COMPANY CAREERS ADVISORY BOARD TEAMS PARTNERS CONTACT
GET PREFECT
LOG IN
Looking for 1.0?


COORDINATE


YOUR DATAFLOWETLDATA SCIENCEMLYOUR DATAFLOW


ORCHESTRATE AND OBSERVE ALL OF YOUR WORKFLOWS, LIKE AIR TRAFFIC CONTROL FOR YOUR
DATA.

START FREE
REQUEST A DEMO →

SUPERCHARGE
YOUR
WORKFLOWS

→


BUILD

Design and test your workflow with our popular open-source framework.

PREFECT 2.0 →


RUN

Execute code and keep data secure in your existing infrastructure.


MONITOR

Gain complete confidence with total oversight of your workflows.

PREFECT CLOUD 2.0 →

OPEN-SOURCE WORKFLOW MANAGEMENT


FOCUS ON YOUR CODE

Use a flexible Python framework to easily combine tasks into workflows, then
deploy, schedule, and monitor their execution through the Prefect UI or API.

GET THE CODE
READ THE DOCS →
 1.  from prefect import flow, task
 2.  
 3.  @task
 4.  def say_hello():
 5.  print("Hello, World! I'm Marvin!")
 6.  
 7.  @flow(name="Prefect 2.0 Flow")
 8.  def marvin_flow():
 9.  say_hello()
 10. 
 11. 
 12. marvin_flow() # "Hello, World! I'm Marvin!"
 13. 
 14. 




0


GITHUB STARS

DATAFLOW AUTOMATION PLATFORM


CREATE POWERFUL DATA PIPELINES

Let Prefect take care of scheduling, infrastructure, error handling, retries,
logs, triggers, data serialization, parameterization, dynamic mapping, caching,
concurrency, and more.

START FREE
CONTACT SALES →


1,000,000 +


SUCCESSFUL RUNS EVERY MONTH

 * 
 * 
 * 
 * 

Item 1 of 4
 * 
 * 
 * 
 * 

Item 1 of 4
 * 
 * 
 * 
 * 

Item 1 of 4
 * 
 * 
 * 
 * 

Item 1 of 4
 * 
 * 
 * 
 * 

Item 1 of 4
 * 
 * 
 * 

Item 1 of 3
 * 
 * 
 * 
 * 

Item 1 of 4
 * 
 * 
 * 
 * 

Item 1 of 4
 * 
 * 
 * 
 * 

Item 1 of 4

"I'm really proud of the way our team has democratized data for the business
leaders of the Panthers organization. Our data team knows that we're providing
reliable insights for driving strategic decisions because we use Prefect to
ensure that our data flows are robust across a variety of data sources,
integrations and APIs."

Nick McGoye / Manager of Data Science

"Moving to Prefect is our favorite thing we've done this year."

Data Engineer / Dr. Squatch

"My entire job has changed because of Prefect! We plan to convert the rest of
our scripts, along with all of our R language processes."

Joseph Loss / Quantitative Analyst / SpiderRock Advisors

"Prefect’s position in dataflow automation is delivering tremendous value to the
global developer community. Working with Prefect will help our joint customers
easily deploy on trusted infrastructure with the convenience of Prefect Cloud."

Jeff Ma / Vice President / Microsoft for Startups

"The Prefect experience for developing, testing, and introspecting flows for
developers is first class. Going from an idea to a prototype to a production
grade flow deployed with Prefect Cloud is incredibly intuitive."

Walt Wells / Data Engineer, EDS / Progressive

"It’s perhaps a bold assertion, but we see the advantages as so substantial and
our results as so positive that many others will soon pick up on these
technologies."

Galaxy Brain: Data Science Workflows with Prefect & Dask / Actium (formerly
SymphonyRM)

"Besides its power, the other strong reason we chose Prefect was due to the low
effort to get up and running with it."

Snowflake: The Details of our First Data Warehousing Project in the Cloud /
Trade Me


WHAT CUSTOMERS ARE SAYING

PREFECT + DYVENIA

dyvenia is a data consultancy that prides itself in its distinctive track record
of delivering actionable impact. They provide customized, reliable data
solutions, powered by Prefect.

READ THE STORY →

JOYN + PREFECT

See how Joyn accidentally built a modern data stack powered by Prefect.

READ THE STORY →

GET PAID (WITH CONFIDENCE): PREFECT + PAIDY

Paidy ditches their manual debugging practices and operationalizes their data
practices with Prefect.

READ THE STORY →

RTR STRUTS THE DATA RUNWAY WITH PREFECT

How the innovative team at Rent the Runway builds a high-performing and fun tech
stack, with Prefect at the core.

READ THE STORY →

ACTIUM (FORMERLY SYMPHONYRM) PRODUCES BREAKTHROUGH ML MODELS

Actium (formerly SymphonyRM) helps healthcare organizations by delivering key
data insights. Learn how they used Prefect Cloud to achieve a 99% reduction in
model development time.

READ THE STORY →

CLEARCOVER REDUCES TIME-TO-INSIGHTS BY ORCHESTRATING WORKFLOWS WITH PREFECT

Clearcover's focus on innovative engineering practices provide smarter car
insurance choices to consumers.

READ THE STORY →

SLATE DATA TRANSFORMS ITS BUSINESS MODEL WITH PREFECT CLOUD

Slate Data provides data engineering services to reinvigorate data-driven
business decisions by modernizing data tech stacks and empowering
industry-specific data scientists.

READ THE STORY →

INSIDE BASEBALL: HOW THE NATIONALS WIN WITH ANALYTICS

By automating a wide range of data processes, the team can devote more time to
business-critical objectives: improving the performance of their players and
setting a course for team...

READ THE STORY →

JELLYFISH CHOOSES PREFECT CLOUD TO POWER THEIR ENGINEERING MANAGEMENT PLATFORM

Jellyfish delivers business critical data directly to customers using Prefect
Cloud.

READ THE STORY →
← →

WHY PREFECT

CLOUD CONVENIENCE
WITH ON-PREM SECURITY

Prefect's hybrid execution model keeps your code and data completely private
while taking full advantage of our managed orchestration service.

It’s so innovative, we patented it.

LEARN MORE

JOIN DISCOURSE

Find all the answers to your Prefect questions in our Discourse forum.

JOIN SLACK

Become a Prefectionist and experience one of the largest data communities in the
world.

GET STARTED WITH PREFECT 2.0

The Prefect Python library includes everything you need to design, build, test,
and run powerful data applications.

READ THE DOCS

DEPLOY AND SCALE ON CLOUD

Unlimited workflows and a free forever plan.

GET STARTED FOR FREE

JOIN THE COMMUNITY

Get support, learn, build, and share with thousands of talented data engineers.

JOIN SLACK

GET ANSWERS

Find all the answers to your Prefect questions in our Discourse forum.

JOIN DISCOURSE


FOOTER


PRODUCT

 * Why Prefect
 * Open Source
 * Cloud Platform
 * Documentation
 * Pricing


COMPANY

 * About
 * Customers
 * Partners
 * Careers
 * Advisory Board
 * Newsroom


COMMUNITY

 * About Community
 * Club 42
 * Community Updates
 * Slack Community
 * Discourse Forum
 * Top Contributors


RESOURCES

 * Support
 * The Guide
 * Case Studies
 * Blog
 * Tutorial
 * FAQS
 * Contact Us


STAY IN THE FLOW

Get updates and invitations for early access to Prefect products

Please submit a valid email address
Thanks for signing up to our newsletter!
SIGN UP
Cloud Status
Privacy & Terms
Security
Contact Us
GitHubTwitterLinkedInYouTube
© Copyright 2022 Prefect Technologies, Inc. All rights reserved.
CONTACT US

HOW CAN WE HELP?

JOIN DISCOURSE

Join our Discourse forum.

JOIN SLACK

Connect with 1000's of data engineers.

JOIN SLACK



JOIN DISCOURSE

CONTACT SALES

READY TO GO PRO?

We just need a few details and a member of our staff will get back to you
pronto!

Your Name*

Email*

Company*

Request a demo?

SUBMIT
Required *


Live chat: