mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-24 17:06:29 +03:00
As discussed with Ines in https://github.com/explosion/spaCy/issues/3568 , adding a new project proposal for the community in SpaCy Universe website GracyQL a tiny graphql wrapper aroung spacy using graphene and starlette. ## Description Change only in universe.json file to add a new project ### Types of change New project reference in Universe ## Checklist - [x ] I have submitted the spaCy Contributor Agreement. - [x ] I ran the tests, and all new and existing tests passed. - [ x] My changes don't require a change to the documentation, or if they do, I've added all required information.
This commit is contained in:
parent
86e4b68aa9
commit
2854724e69
|
@ -1311,6 +1311,41 @@
|
|||
"website": "http://w4nderlu.st"
|
||||
},
|
||||
"category": ["standalone", "research"]
|
||||
},
|
||||
{
|
||||
"id": "gracyql",
|
||||
"title": "gracyql",
|
||||
"slogan": "A thin GraphQL wrapper around spacy",
|
||||
"github": "oterrier/gracyql",
|
||||
"description": "An example of a basic [Starlette](https://github.com/encode/starlette) app using [Spacy](https://github.com/explosion/spaCy) and [Graphene](https://github.com/graphql-python/graphene). The main goal is to be able to use the amazing power of spaCy from other languages and retrieving only the information you need thanks to the GraphQL query definition. The GraphQL schema tries to mimic as much as possible the original Spacy API with classes Doc, Span and Token.",
|
||||
"thumb": "https://i.imgur.com/xC7zpTO.png",
|
||||
"category": ["apis"],
|
||||
"tags": ["graphql"],
|
||||
"code_example": [
|
||||
"query ParserDisabledQuery {",
|
||||
" nlp(model: \"en\", disable: [\"parser\", \"ner\"]) {",
|
||||
" doc(text: \"I live in Grenoble, France\") {",
|
||||
" text",
|
||||
" tokens {",
|
||||
" id",
|
||||
" pos",
|
||||
" lemma",
|
||||
" dep",
|
||||
" }",
|
||||
" ents {",
|
||||
" start",
|
||||
" end",
|
||||
" label",
|
||||
" }",
|
||||
" }",
|
||||
" }",
|
||||
"}"
|
||||
],
|
||||
"code_language": "json",
|
||||
"author": "Olivier Terrier",
|
||||
"author_links": {
|
||||
"github": "oterrier"
|
||||
}
|
||||
}
|
||||
],
|
||||
"categories": [
|
||||
|
|
Loading…
Reference in New Issue
Block a user