From e7033011299d0444bb08f115778b03aedfcb4a38 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 2 Jun 2019 13:55:55 +0200 Subject: [PATCH] Update universe [ci skip] --- website/meta/universe.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/website/meta/universe.json b/website/meta/universe.json index 5155493bd..10e9be349 100644 --- a/website/meta/universe.json +++ b/website/meta/universe.json @@ -939,6 +939,42 @@ }, "category": ["standalone"] }, + { + "id": "prefect", + "title": "Prefect", + "slogan": "Workflow management system designed for modern infrastructure", + "github": "PrefectHQ/prefect", + "pip": "prefect", + "thumb": "https://i.imgur.com/oLTwr0e.png", + "code_example": [ + "from prefect import Flow", + "from prefect.tasks.spacy.spacy_tasks import SpacyNLP", + "import spacy", + "", + "nlp = spacy.load(\"en_core_web_sm\")", + "", + "with Flow(\"Natural Language Processing\") as flow:", + " doc = SpacyNLP(text=\"This is some text\", nlp=nlp)", + "", + "flow.run()" + ], + "author": "Prefect", + "author_links": { + "website": "https://prefect.io" + }, + "category": ["standalone"] + }, + { + "id": "graphbrain", + "title": "Graphbrain", + "slogan": "Automated meaning extraction and text understanding", + "description": "Graphbrain is an Artificial Intelligence open-source software library and scientific research tool. Its aim is to facilitate automated meaning extraction and text understanding, as well as the exploration and inference of knowledge.", + "github": "graphbrain/graphbrain", + "pip": "graphbrain", + "thumb": "https://i.imgur.com/cct9W1E.png", + "author": "Graphbrain", + "category": ["standalone"] + }, { "type": "education", "id": "oreilly-python-ds",