Skip to content

Commit

Permalink
added entry for SaysWho (#12828)
Browse files Browse the repository at this point in the history
* Update universe.json

added entry for Sayswho

* Update universe.json

updated sayswho entry

* Update universe.json

* Update website/meta/universe.json

* Update website/meta/universe.json

---------

Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
  • Loading branch information
afriedman412 and adrianeboyd authored Jul 31, 2023
1 parent c9e9dcc commit 186889e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions website/meta/universe.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,31 @@
"category": ["extension"],
"tags": []
},
{
"id": "sayswho",
"title": "SaysWho",
"slogan": "Quote identification, attribution and resolution",
"description": "A Python package for identifying and attributing quotes in text. It uses a combination of spaCy functionality, logic and grammar to find quotes and their speakers, then uses the spaCy coreferencing model to better clarify who is speaking. Currently English only.",
"github": "afriedman412/sayswho",
"pip": "sayswho",
"code_language": "python",
"author": "Andy Friedman",
"author_links": {
"twitter": "@steadynappin",
"github": "afriedman412"
},
"code_example": [
"from sayswho import SaysWho",
"text = open(\"path/to/your/text_file.txt\").read()",
"sw = SaysWho()",
"sw.attribute(text)",

"sw.expand_match() # see quote/cluster matches",
"sw.render_to_html() # output your text, quotes and cluster matches to an html file called \"temp.html\""
],
"category": ["standalone"],
"tags": ["attribution", "coref", "text-processing"]
},
{
"id": "parsigs",
"title": "parsigs",
Expand Down

0 comments on commit 186889e

Please sign in to comment.