Use spaCy to Parse Input Tokens
Project description
spaCy Token Parser (spacy-token-parser)
Use spaCy to Parse Input Tokens
Usage
Call the service with this code
from spacy_token_parser import parse_tokens
parse_tokens(input_text.split())
The output is a tuple.
The first element of the tuple is a list of dictionary tokens (below).
The second element of the tuple is a wrapped instance of spacy.tokens.doc.Doc
.
List Output
[
{
"dep":"compound",
"ent":"NORP",
"head":"5665575797947403677",
"id":"6042939320535660714",
"is_alpha":true,
"is_punct":false,
"is_stop":false,
"is_wordnet":true,
"lemma":"american",
"noun_number":"singular",
"other":{
"head_i":3,
"head_idx":24,
"head_orth":5665575797947403677,
"head_text":"films",
"i":0,
"idx":0,
"orth":6042939320535660714
},
"pos":"PROPN",
"sentiment":0.0,
"shape":"xxxx",
"tag":"NNP",
"tense":"",
"text":"american",
"verb_form":"",
"x":0,
"y":8
},
{
"dep":"compound",
"ent":"",
"head":"5665575797947403677",
"id":"16602643206033239142",
"is_alpha":true,
"is_punct":false,
"is_stop":false,
"is_wordnet":true,
"lemma":"silent",
"noun_number":"singular",
"other":{
"head_i":3,
"head_idx":24,
"head_orth":5665575797947403677,
"head_text":"films",
"i":1,
"idx":9,
"orth":16602643206033239142
},
"pos":"PROPN",
"sentiment":0.0,
"shape":"xxxx",
"tag":"NNP",
"tense":"",
"text":"silent",
"verb_form":"",
"x":8,
"y":14
},
{
"dep":"compound",
"ent":"",
"head":"5665575797947403677",
"id":"16417888112635110788",
"is_alpha":true,
"is_punct":false,
"is_stop":false,
"is_wordnet":true,
"lemma":"feature",
"noun_number":"singular",
"other":{
"head_i":3,
"head_idx":24,
"head_orth":5665575797947403677,
"head_text":"films",
"i":2,
"idx":16,
"orth":16417888112635110788
},
"pos":"NOUN",
"sentiment":0.0,
"shape":"xxxx",
"tag":"NN",
"tense":"",
"text":"feature",
"verb_form":"",
"x":14,
"y":21
},
{
"dep":"ROOT",
"ent":"",
"head":"5665575797947403677",
"id":"5665575797947403677",
"is_alpha":true,
"is_punct":false,
"is_stop":false,
"is_wordnet":true,
"lemma":"film",
"noun_number":"plural",
"other":{
"head_i":3,
"head_idx":24,
"head_orth":5665575797947403677,
"head_text":"films",
"i":3,
"idx":24,
"orth":5665575797947403677
},
"pos":"NOUN",
"sentiment":0.0,
"shape":"xxxx",
"tag":"NNS",
"tense":"",
"text":"films",
"verb_form":"",
"x":21,
"y":26
}
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
spacy-token-parser-0.1.15.tar.gz
(10.3 kB
view details)
Built Distribution
File details
Details for the file spacy-token-parser-0.1.15.tar.gz
.
File metadata
- Download URL: spacy-token-parser-0.1.15.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.8.5 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7195df3c98feacea9946d324db034270d5f72e8fb1214836a19d8c6d31fa6520 |
|
MD5 | 2f79eccf0312343a34338943b964a64a |
|
BLAKE2b-256 | e271cb431c649aad70eb08d405cbef8570b093e673481b2f6dffbd14f0217106 |
File details
Details for the file spacy_token_parser-0.1.15-py3-none-any.whl
.
File metadata
- Download URL: spacy_token_parser-0.1.15-py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.8.5 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9d3aa1c47ba804ad3434f4a201abb3e97bc737976bdab5728f1927a4430d8c3 |
|
MD5 | 70bdb30d38ef8bb612c625247bd3f47e |
|
BLAKE2b-256 | 4220dc15527946d5b6ef140563307ba1a9d9559fb940d82201fec56134bcb933 |