[![GitHub Stars](https://img.shields.io/github/stars/wjbmattingly/bagpipes-spacy?style=social)](https://github.com/wjbmattingly/bagpipes-spacy)
[![PyPi Version](https://img.shields.io/pypi/v/bagpipes-spacy)](https://pypi.org/project/bagpipes-spacy/0.0.1/)
[![PyPi Downloads](https://img.shields.io/pypi/dm/bagpipes-spacy)](https://pypi.org/project/bagpipes-spacy/0.0.1/)
# Bagpipes spaCy
![bagpipes spacy logo](https://github.com/wjbmattingly/bagpipes-spacy/blob/main/images/bagpipes-spacy-logo.png?raw=true)
Bagpipes spaCy is a collection of custom spaCy pipeline components designed to enhance text processing capabilities. These components include:
1. **Quote Detector**: Identifies and extracts quotes from the text.
2. **Phrases Extractor**: Extracts various types of phrases such as prepositional, noun, verb, adjective, and adverbial phrases.
3. **Normalizer**: Normalizes the text by expanding contractions, removing special characters, and more.
4. **Triple Detector**: Extracts triples (subject, predicate, object) from the text.
5. **Entity Similarity**: Computes similarity between entities in the text and maps similar entities.
6. **Entity Cluster**: Groups entities in the text into clusters based on similarity.
7. **Sentence Cluster**: Groups sentences in the text into clusters based on similarity.
8. **Token Cluster**: Groups tokens in the text into clusters based on similarity.
9. **Keyword Extractor**: Extracts keywords from the text based on cosine similarity with the entire text or sentence.
## Table of Contents
- [Bagpipes spaCy](#bagpipes-spacy)
- [Table of Contents](#table-of-contents)
- [Installation](#installation)
- [Usage](#usage)
- [Integrating the Quote Detector](#integrating-the-quote-detector)
- [Integrating the Phrases Extractor](#integrating-the-phrases-extractor)
- [Integrating the Normalizer](#integrating-the-normalizer)
- [Integrating the Triple Detector](#integrating-the-triple-detector)
- [Integrating the Entity Similarity](#integrating-the-entity-similarity)
- [Sentence Cluster](#sentence-cluster)
- [Token Cluster](#token-cluster)
- [Entity Cluster](#entity-cluster)
- [Keyword Extractor](#keyword-extractor)
- [Configuration](#configuration)
## Installation
To install Bagpipes spaCy, execute:
```sh
pip install bagpipes-spacy
```
## Usage
### Integrating the Quote Detector
Import the `QuoteDetector` and integrate it into your spaCy pipeline:
```python
import spacy
from bagpipes_spacy import QuoteDetector
nlp = spacy.blank("en")
nlp.add_pipe("quote_detector")
text = """
"I... oh ... very well," said the Prime Minister weakly. "Yes, I'll see Fudge."
He hurried back to his desk, straightening his tie as he went. He had barely resumed his seat, and arranged his face into what he hoped was a relaxed and unfazed expression, when bright green flames burst into life in the empty grate beneath his marble mantelpiece. He watched, trying not to betray a flicker of surprise or alarm, as a portly man appeared within the flames, spinning as fast as a top. Seconds later, he had climbed out onto a rather fine antique rug, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand.
"Ah... Prime Minister," said Cornelius Fudge, striding forward with his hand outstretched. "Good to see you again."
The Prime Minister could not honestly return this compliment, so said nothing at all. He was not remotely pleased to see Fudge, whose occasional appearances, apart from being downright alarming in themselves, generally meant that he was about to hear some very bad news. Furthermore, Fudge was looking distinctly careworn. He was thinner, balder, and grayer, and his face had a crumpled look. The Prime Minister had seen that kind of look in politicians before, and it never boded well.
"How can I help you?" he said, shaking Fudge's hand very briefly and gesturing toward the hardest of the chairs in front of the desk.
"Difficult to know where to begin," muttered Fudge, pulling up the chair, sitting down, and placing his green bowler upon his knees. "What a week, what a week..."
"Had a bad one too, have you?" asked the Prime Minister stiffly, hoping to convey by this that he had quite enough on his plate already without any extra helpings from Fudge.
"Yes, of course," said Fudge, rubbing his eyes wearily and looking morosely at the Prime Minister. "I've been having the same week you have, Prime Minister. The Brockdale Bridge... the Bones and Vance murders... not to mention the ruckus in the West Country..."
"You--er--your--I mean to say, some of your people were--were involved in those--those things, were they?"
Fudge fixed the Prime Minister with a rather stern look. "Of course they were," he said, "Surely you've realized what's going on?"
"I..." hesitated the Prime Minister.
"""
doc = nlp(text)
for quote in doc._.quotes:
print(quote)
```
Output:
```
"I... oh ... very well,"
"Yes, I'll see Fudge."
"Ah... Prime Minister,"
"Good to see you again."
"How can I help you?"
"Difficult to know where to begin,"
"What a week, what a week..."
"Had a bad one too, have you?"
"Yes, of course,"
"I've been having the same week you have, Prime Minister. The Brockdale Bridge... the Bones and Vance murders... not to mention the ruckus in the West Country..."
"You--er--your--I mean to say, some of your people were--were involved in those--those things, were they?"
"Of course they were,"
"Surely you've realized what's going on?"
"I..."
```
### Integrating the Phrases Extractor
Import the `PhrasesExtractor` and integrate it into your spaCy pipeline:
```python
from bagpipes_spacy import PhrasesExtractor
# Integrate the component into the pipeline
nlp = spacy.load("en_core_web_md")
nlp.add_pipe("phrases_extractor")
text = """Seconds later, he had climbed out onto a rather fine antique rug, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand.
"""
doc = nlp(text)
print("Prepositional Phrases")
print(doc._.prep_phrases)
print()
print("Noun Phrases")
print(doc._.noun_phrases)
print()
print("Verb Phrases")
print(doc._.verb_phrases)
print()
print("Adj Phrases")
print(doc._.adj_phrases)
```
Output:
```
Prepositional Phrases
[out onto, onto a rather fine antique rug, from the sleeves, of his long pin-striped cloak, in his hand]
Noun Phrases
[a rather fine antique rug, the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand, his long pin-striped cloak, a lime-green bowler hat in his hand, a lime-green bowler hat in his hand, his hand]
Verb Phrases
[Seconds later, he had climbed out onto a rather fine antique rug, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand.
, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand, pin-striped]
Adj Phrases
[fine antique, long, green]
```
### Integrating the Normalizer
Import the `Normalizer` and integrate it into your spaCy pipeline:
```python
from bagpipes_spacy import Normalizer
# Integrate the component into the pipeline
nlp.add_pipe('normalizer', first=True)
```
### Integrating the Triple Detector
Import the `TripleDetector` and integrate it into your spaCy pipeline:
```python
from bagpipes_spacy import TripleDetector
# Integrate the component into the pipeline
nlp.add_pipe('triple_detector')
```
### Integrating the Entity Similarity
Import the `EntitySimilarity` and integrate it into your spaCy pipeline:
```python
from bagpipes_spacy import EntitySimilarity
# Integrate the component into the pipeline
nlp.add_pipe('entity_similarity')
```
### Sentence Cluster
The `sentence_cluster` component groups sentences in the text into clusters based on similarity.
```python
import spacy
from bagpipes_spacy import SentenceCluster
nlp = spacy.load("en_core_web_lg")
nlp.add_pipe("sentence_cluster", config={"threshold": 0.8})
text = "Microsoft is a company. Twitter is another company. Tiger Woods is an athlete. Michael Jordan is an athlete."
doc = nlp(text)
print(doc._.sent_cluster)
```
Output:
```
{Twitter is another company.: [Twitter is another company., Microsoft is a company.], Tiger Woods is an athlete.: [Tiger Woods is an athlete., Michael Jordan is an athlete.]}
```
### Token Cluster
The `token_cluster` component groups tokens in the text into clusters based on similarity.
```python
import spacy
from bagpipes_spacy import TokenCluster
nlp = spacy.load("en_core_web_lg")
nlp.add_pipe("token_cluster", config={"threshold": 0.4})
doc = nlp(text)
print(doc._.token_cluster)
```
Output:
```
{Microsoft: [Microsoft, company], company: [Microsoft, company, company], Tiger: [Tiger, Woods], Jordan: [Jordan, Michael, Woods], athlete: [athlete, athlete]}
```
### Entity Cluster
The `entity_cluster` component groups entities in the text into clusters based on similarity.
```python
import spacy
from bagpipes_spacy import EntityCluster
nlp = spacy.load("en_core_web_lg")
nlp.add_pipe("entity_cluster", config={"threshold": 0.3})
doc = nlp(text)
print(doc._.ent_cluster)
```
Output:
```
{Twitter: [Twitter, Microsoft], Michael Jordan: [Michael Jordan, Tiger Woods]}
```
### Keyword Extractor
The `keyword_extractor` component extracts keywords from the text based on cosine similarity with the entire text or sentence.
#### Configuration
The `KeywordExtractor` can be configured using the following parameters:
- `top_n`: The number of top keywords to extract for the entire document.
- `min_ngram`: The minimum size for n-grams.
- `max_ngram`: The maximum size for n-grams.
- `strict`: If set to `True`, only n-grams within the `min_ngram` to `max_ngram` range are considered. If `False`, individual tokens and the specified range of n-grams are considered.
- `top_n_sent`: The number of top keywords to extract for each sentence.
```python
import spacy
from bagpipes_spacy import KeywordExtractor
nlp = spacy.load("en_core_web_lg")
nlp.add_pipe("keyword_extractor", last=True, config={"top_n": 10, "min_ngram": 1, "max_ngram": 3, "strict": True, "top_n_sent": 3})
text = "Natural language processing is a fascinating domain of artificial intelligence. It allows computers to understand and generate human language."
doc = nlp(text)
print("Top Document Keywords:", doc._.keywords)
for sent in doc.sents:
print(f"Sentence: {sent.text}")
print("Top Sentence Keywords:", sent._.sent_keywords)
```
Output:
```
Top Document Keywords: [('Natural language processing', 1, 0.7576146), ('language processing', 1, 0.75203013), ('artificial intelligence', 1, 0.74064857), ('generate human language', 1, 0.8099933), ('generate human', 1, 0.766044), ('human language', 1, 0.7234799)]
Sentence: Natural language processing is a fascinating domain of artificial intelligence.
Top Sentence Keywords: [('Natural language processing', 0.7576146), ('language processing', 0.75203013), ('artificial intelligence', 0.74064857)]
Sentence: It allows computers to understand and generate human language.
Top Sentence Keywords: [('generate human language', 0.8099933), ('generate human', 0.766044), ('human language', 0.7234799)]
```
Raw data
{
"_id": null,
"home_page": "https://github.com/wjbmattingly/bagpipes-spacy",
"name": "bagpipes-spacy",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": null,
"author": "WJB Mattingly",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/69/99/e2c8b9e0ac405f6f7c1715a59e80a69619e088cad9c05c5c295d95bdf3d2/bagpipes_spacy-0.1.4.tar.gz",
"platform": null,
"description": "[![GitHub Stars](https://img.shields.io/github/stars/wjbmattingly/bagpipes-spacy?style=social)](https://github.com/wjbmattingly/bagpipes-spacy)\n[![PyPi Version](https://img.shields.io/pypi/v/bagpipes-spacy)](https://pypi.org/project/bagpipes-spacy/0.0.1/)\n[![PyPi Downloads](https://img.shields.io/pypi/dm/bagpipes-spacy)](https://pypi.org/project/bagpipes-spacy/0.0.1/)\n\n# Bagpipes spaCy\n\n![bagpipes spacy logo](https://github.com/wjbmattingly/bagpipes-spacy/blob/main/images/bagpipes-spacy-logo.png?raw=true)\n\n\nBagpipes spaCy is a collection of custom spaCy pipeline components designed to enhance text processing capabilities. These components include:\n\n1. **Quote Detector**: Identifies and extracts quotes from the text.\n2. **Phrases Extractor**: Extracts various types of phrases such as prepositional, noun, verb, adjective, and adverbial phrases.\n3. **Normalizer**: Normalizes the text by expanding contractions, removing special characters, and more.\n4. **Triple Detector**: Extracts triples (subject, predicate, object) from the text.\n5. **Entity Similarity**: Computes similarity between entities in the text and maps similar entities.\n6. **Entity Cluster**: Groups entities in the text into clusters based on similarity.\n7. **Sentence Cluster**: Groups sentences in the text into clusters based on similarity.\n8. **Token Cluster**: Groups tokens in the text into clusters based on similarity.\n9. **Keyword Extractor**: Extracts keywords from the text based on cosine similarity with the entire text or sentence.\n\n## Table of Contents\n- [Bagpipes spaCy](#bagpipes-spacy)\n - [Table of Contents](#table-of-contents)\n - [Installation](#installation)\n - [Usage](#usage)\n - [Integrating the Quote Detector](#integrating-the-quote-detector)\n - [Integrating the Phrases Extractor](#integrating-the-phrases-extractor)\n - [Integrating the Normalizer](#integrating-the-normalizer)\n - [Integrating the Triple Detector](#integrating-the-triple-detector)\n - [Integrating the Entity Similarity](#integrating-the-entity-similarity)\n - [Sentence Cluster](#sentence-cluster)\n - [Token Cluster](#token-cluster)\n - [Entity Cluster](#entity-cluster)\n - [Keyword Extractor](#keyword-extractor)\n - [Configuration](#configuration)\n\n## Installation\n\nTo install Bagpipes spaCy, execute:\n\n```sh\npip install bagpipes-spacy\n```\n\n## Usage\n\n### Integrating the Quote Detector\n\nImport the `QuoteDetector` and integrate it into your spaCy pipeline:\n\n```python\nimport spacy\nfrom bagpipes_spacy import QuoteDetector\n\nnlp = spacy.blank(\"en\")\n\nnlp.add_pipe(\"quote_detector\")\n\ntext = \"\"\"\n\"I... oh ... very well,\" said the Prime Minister weakly. \"Yes, I'll see Fudge.\"\nHe hurried back to his desk, straightening his tie as he went. He had barely resumed his seat, and arranged his face into what he hoped was a relaxed and unfazed expression, when bright green flames burst into life in the empty grate beneath his marble mantelpiece. He watched, trying not to betray a flicker of surprise or alarm, as a portly man appeared within the flames, spinning as fast as a top. Seconds later, he had climbed out onto a rather fine antique rug, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand.\n\"Ah... Prime Minister,\" said Cornelius Fudge, striding forward with his hand outstretched. \"Good to see you again.\"\nThe Prime Minister could not honestly return this compliment, so said nothing at all. He was not remotely pleased to see Fudge, whose occasional appearances, apart from being downright alarming in themselves, generally meant that he was about to hear some very bad news. Furthermore, Fudge was looking distinctly careworn. He was thinner, balder, and grayer, and his face had a crumpled look. The Prime Minister had seen that kind of look in politicians before, and it never boded well.\n\"How can I help you?\" he said, shaking Fudge's hand very briefly and gesturing toward the hardest of the chairs in front of the desk.\n\"Difficult to know where to begin,\" muttered Fudge, pulling up the chair, sitting down, and placing his green bowler upon his knees. \"What a week, what a week...\"\n\"Had a bad one too, have you?\" asked the Prime Minister stiffly, hoping to convey by this that he had quite enough on his plate already without any extra helpings from Fudge.\n\"Yes, of course,\" said Fudge, rubbing his eyes wearily and looking morosely at the Prime Minister. \"I've been having the same week you have, Prime Minister. The Brockdale Bridge... the Bones and Vance murders... not to mention the ruckus in the West Country...\"\n\"You--er--your--I mean to say, some of your people were--were involved in those--those things, were they?\"\nFudge fixed the Prime Minister with a rather stern look. \"Of course they were,\" he said, \"Surely you've realized what's going on?\"\n\"I...\" hesitated the Prime Minister.\n\"\"\"\n\ndoc = nlp(text)\nfor quote in doc._.quotes:\n print(quote)\n```\n\nOutput:\n```\n\"I... oh ... very well,\"\n\"Yes, I'll see Fudge.\"\n\"Ah... Prime Minister,\"\n\"Good to see you again.\"\n\"How can I help you?\"\n\"Difficult to know where to begin,\"\n\"What a week, what a week...\"\n\"Had a bad one too, have you?\"\n\"Yes, of course,\"\n\"I've been having the same week you have, Prime Minister. The Brockdale Bridge... the Bones and Vance murders... not to mention the ruckus in the West Country...\"\n\"You--er--your--I mean to say, some of your people were--were involved in those--those things, were they?\"\n\"Of course they were,\"\n\"Surely you've realized what's going on?\"\n\"I...\"\n```\n\n### Integrating the Phrases Extractor\n\nImport the `PhrasesExtractor` and integrate it into your spaCy pipeline:\n\n```python\nfrom bagpipes_spacy import PhrasesExtractor\n\n# Integrate the component into the pipeline\nnlp = spacy.load(\"en_core_web_md\")\n\nnlp.add_pipe(\"phrases_extractor\")\n\ntext = \"\"\"Seconds later, he had climbed out onto a rather fine antique rug, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand.\n\"\"\"\n\ndoc = nlp(text)\n\nprint(\"Prepositional Phrases\")\nprint(doc._.prep_phrases)\nprint()\n\nprint(\"Noun Phrases\")\nprint(doc._.noun_phrases)\nprint()\n\nprint(\"Verb Phrases\")\nprint(doc._.verb_phrases)\nprint()\n\nprint(\"Adj Phrases\")\nprint(doc._.adj_phrases)\n```\n\nOutput:\n```\nPrepositional Phrases\n[out onto, onto a rather fine antique rug, from the sleeves, of his long pin-striped cloak, in his hand]\n\nNoun Phrases\n[a rather fine antique rug, the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand, his long pin-striped cloak, a lime-green bowler hat in his hand, a lime-green bowler hat in his hand, his hand]\n\nVerb Phrases\n[Seconds later, he had climbed out onto a rather fine antique rug, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand.\n, brushing ash from the sleeves of his long pin-striped cloak, a lime-green bowler hat in his hand, pin-striped]\n\nAdj Phrases\n[fine antique, long, green]\n```\n\n### Integrating the Normalizer\n\nImport the `Normalizer` and integrate it into your spaCy pipeline:\n\n```python\nfrom bagpipes_spacy import Normalizer\n\n# Integrate the component into the pipeline\nnlp.add_pipe('normalizer', first=True)\n```\n\n### Integrating the Triple Detector\n\nImport the `TripleDetector` and integrate it into your spaCy pipeline:\n\n```python\nfrom bagpipes_spacy import TripleDetector\n\n# Integrate the component into the pipeline\nnlp.add_pipe('triple_detector')\n```\n\n### Integrating the Entity Similarity\n\nImport the `EntitySimilarity` and integrate it into your spaCy pipeline:\n\n```python\nfrom bagpipes_spacy import EntitySimilarity\n\n# Integrate the component into the pipeline\nnlp.add_pipe('entity_similarity')\n```\n\n### Sentence Cluster\n\nThe `sentence_cluster` component groups sentences in the text into clusters based on similarity.\n\n```python\nimport spacy\nfrom bagpipes_spacy import SentenceCluster\n\nnlp = spacy.load(\"en_core_web_lg\")\nnlp.add_pipe(\"sentence_cluster\", config={\"threshold\": 0.8})\n\ntext = \"Microsoft is a company. Twitter is another company. Tiger Woods is an athlete. Michael Jordan is an athlete.\"\ndoc = nlp(text)\nprint(doc._.sent_cluster)\n```\n\nOutput:\n\n```\n{Twitter is another company.: [Twitter is another company., Microsoft is a company.], Tiger Woods is an athlete.: [Tiger Woods is an athlete., Michael Jordan is an athlete.]}\n```\n\n### Token Cluster\n\nThe `token_cluster` component groups tokens in the text into clusters based on similarity.\n\n```python\nimport spacy\nfrom bagpipes_spacy import TokenCluster\n\nnlp = spacy.load(\"en_core_web_lg\")\nnlp.add_pipe(\"token_cluster\", config={\"threshold\": 0.4})\n\ndoc = nlp(text)\nprint(doc._.token_cluster)\n```\n\nOutput:\n\n```\n{Microsoft: [Microsoft, company], company: [Microsoft, company, company], Tiger: [Tiger, Woods], Jordan: [Jordan, Michael, Woods], athlete: [athlete, athlete]}\n```\n\n### Entity Cluster\n\nThe `entity_cluster` component groups entities in the text into clusters based on similarity.\n\n```python\nimport spacy\nfrom bagpipes_spacy import EntityCluster\n\nnlp = spacy.load(\"en_core_web_lg\")\nnlp.add_pipe(\"entity_cluster\", config={\"threshold\": 0.3})\n\ndoc = nlp(text)\nprint(doc._.ent_cluster)\n```\n\nOutput:\n\n```\n{Twitter: [Twitter, Microsoft], Michael Jordan: [Michael Jordan, Tiger Woods]}\n```\n\n### Keyword Extractor\n\nThe `keyword_extractor` component extracts keywords from the text based on cosine similarity with the entire text or sentence.\n\n#### Configuration\n\nThe `KeywordExtractor` can be configured using the following parameters:\n\n- `top_n`: The number of top keywords to extract for the entire document.\n- `min_ngram`: The minimum size for n-grams.\n- `max_ngram`: The maximum size for n-grams.\n- `strict`: If set to `True`, only n-grams within the `min_ngram` to `max_ngram` range are considered. If `False`, individual tokens and the specified range of n-grams are considered.\n- `top_n_sent`: The number of top keywords to extract for each sentence.\n\n\n```python\nimport spacy\nfrom bagpipes_spacy import KeywordExtractor\n\nnlp = spacy.load(\"en_core_web_lg\")\nnlp.add_pipe(\"keyword_extractor\", last=True, config={\"top_n\": 10, \"min_ngram\": 1, \"max_ngram\": 3, \"strict\": True, \"top_n_sent\": 3})\n\ntext = \"Natural language processing is a fascinating domain of artificial intelligence. It allows computers to understand and generate human language.\"\ndoc = nlp(text)\nprint(\"Top Document Keywords:\", doc._.keywords)\nfor sent in doc.sents:\n print(f\"Sentence: {sent.text}\")\n print(\"Top Sentence Keywords:\", sent._.sent_keywords)\n```\n\nOutput:\n\n```\nTop Document Keywords: [('Natural language processing', 1, 0.7576146), ('language processing', 1, 0.75203013), ('artificial intelligence', 1, 0.74064857), ('generate human language', 1, 0.8099933), ('generate human', 1, 0.766044), ('human language', 1, 0.7234799)]\n\nSentence: Natural language processing is a fascinating domain of artificial intelligence.\nTop Sentence Keywords: [('Natural language processing', 0.7576146), ('language processing', 0.75203013), ('artificial intelligence', 0.74064857)]\n\nSentence: It allows computers to understand and generate human language.\nTop Sentence Keywords: [('generate human language', 0.8099933), ('generate human', 0.766044), ('human language', 0.7234799)]\n```\n",
"bugtrack_url": null,
"license": null,
"summary": "A collection of spaCy components for rules-based detection and extraction.",
"version": "0.1.4",
"project_urls": {
"Homepage": "https://github.com/wjbmattingly/bagpipes-spacy"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f0edeaf9d54236806655c5325da6a498ded71e958eee5ec286e5780506c32e2c",
"md5": "3a95bd47f8afcfcce2a12f1cab9866fc",
"sha256": "f6e02bef105275a057d4276d7e7531414a7c1160ea0e8f2cf303bbd5b46ebea4"
},
"downloads": -1,
"filename": "bagpipes_spacy-0.1.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3a95bd47f8afcfcce2a12f1cab9866fc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 10553,
"upload_time": "2024-08-15T00:16:06",
"upload_time_iso_8601": "2024-08-15T00:16:06.877706Z",
"url": "https://files.pythonhosted.org/packages/f0/ed/eaf9d54236806655c5325da6a498ded71e958eee5ec286e5780506c32e2c/bagpipes_spacy-0.1.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6999e2c8b9e0ac405f6f7c1715a59e80a69619e088cad9c05c5c295d95bdf3d2",
"md5": "d286bd5b05e81528ee5fe29cbc282aa0",
"sha256": "c9212db1f863cd607bbffeb333ec082796f90fbe60c8e3e97a4291ccad4fffce"
},
"downloads": -1,
"filename": "bagpipes_spacy-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "d286bd5b05e81528ee5fe29cbc282aa0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 12915,
"upload_time": "2024-08-15T00:16:08",
"upload_time_iso_8601": "2024-08-15T00:16:08.433596Z",
"url": "https://files.pythonhosted.org/packages/69/99/e2c8b9e0ac405f6f7c1715a59e80a69619e088cad9c05c5c295d95bdf3d2/bagpipes_spacy-0.1.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-15 00:16:08",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "wjbmattingly",
"github_project": "bagpipes-spacy",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "bagpipes-spacy"
}