diff --git a/.gitignore b/.gitignore index 776b48e..766439d 100644 --- a/.gitignore +++ b/.gitignore @@ -129,4 +129,7 @@ dmypy.json .pyre/ .vscode .DS_Store -*.csv \ No newline at end of file +*.csv + +# IDE +.idea/** diff --git a/bechdelai/data/tmdb.py b/bechdelai/data/tmdb.py index 1424005..5629151 100644 --- a/bechdelai/data/tmdb.py +++ b/bechdelai/data/tmdb.py @@ -3,6 +3,7 @@ from os import environ import pandas as pd +import numpy as np from dotenv import load_dotenv from bechdelai.data.scrap import get_json_from_url @@ -37,6 +38,7 @@ class APIKeyNotSetInEnv(Exception): MOVIE_API_URL = f"{API_URL}/movie/{{movie_id}}?api_key={API_KEY}" CAST_API_URL = f"{API_URL}/movie/{{movie_id}}/credits?api_key={API_KEY}" PERSON_API_URL = f"{API_URL}/person/{{person_id}}?api_key={API_KEY}" +PERSON_IMG_API_URL = f"{API_URL}/person/{{person_id}}/images?api_key={API_KEY}" SEARCH_IMDB_URL = ( f"{API_URL}//find/tt{{imdb_id}}?api_key={API_KEY}&external_source=imdb_id" ) @@ -135,6 +137,18 @@ def get_person_details_from_id(person_id) -> dict: return get_json_from_url(url) +def get_person_image_from_id(person_id) -> dict: + """Get TMDB API images for person by id + + Parameters + ---------- + person_id : str or int + Person id to get details from + """ + url = PERSON_IMG_API_URL.format(person_id=str(person_id)) + + return get_json_from_url(url) + def format_results_for_suggestion(search_res: dict) -> list: """Format search movie results for `show_movie_suggestions()` @@ -224,3 +238,49 @@ def get_movies_from_ids(movie_ids: list) -> tuple: cast_df = pd.concat(cast_df) return movies_df, crew_df, cast_df + +def get_best_tmdb_id(title,release_year): + """ + Get most probable TMDB id for movie title released in release year. + The release_date in TMDB may be different from the release_year given, but we look for the closest date. + + Parameters + ---------- + title : str + movie title + release_year : int + year the movie was release + + + Returns + ------- + int + TMDB id + + """ + movie_candidates = search_movie_from_query(title) + if movie_candidates['total_results']==0: + # Movie not found in TMDB with query + return None + + if release_year==None: + return res[0]['id'] + else: + # find most probable id -> same (or closest) release year + movie_id = '' + release_year_error = np.Inf # should be min + # look at the 5 first matches to choose the one that was release closer to release_year + for res in movie_candidates["results"][:5]: + if ('release_date' not in res.keys()): + continue + try: + res_release_year = int(res['release_date'][:4]) + except ValueError: + continue + if res_release_year==release_year: + movie_id = res['id'] + break + elif abs(res_release_year-release_year)DATE\n", "\n", ". \n", - "\n", + "\n", " Elio\n", - " PERSON\n", + " ORG\n", "\n", ", a \n", "\n", @@ -93,10 +93,10 @@ " Italo-French\n", " NORP\n", "\n", - " young man, lives with his parents in rural \n", - "\n", + " boy, lives with his parents in rural \n", + "\n", " Northern Italy\n", - " GPE\n", + " LOC\n", "\n", ". \n", "\n", @@ -110,6 +110,11 @@ "\n", " \n", "\n", + " Jewish\n", + " NORP\n", + "\n", + " \n", + "\n", " American\n", " NORP\n", "\n", @@ -118,11 +123,6 @@ " Oliver\n", " PERSON\n", "\n", - ", who is also \n", - "\n", - " Jewish\n", - " NORP\n", - "\n", ", to live with the family over \n", "\n", " the summer\n", @@ -133,7 +133,7 @@ " Elio\n", " PERSON\n", "\n", - ", an introspective bibliophile and a talented musician, initially thinks he has little in common with \n", + ", an introspective bibliophile and a musician, initially thinks he has little in common with \n", "\n", " Oliver\n", " PERSON\n", @@ -163,7 +163,7 @@ " Oliver touches Elio's\n", " PERSON\n", "\n", - " back as a sign of interest but \n", + " back but \n", "\n", " Elio\n", " PERSON\n", @@ -175,12 +175,7 @@ "\n", " later finds himself jealous upon seeing \n", "\n", - " Oliver\n", - " PERSON\n", - "\n", - " pursue \n", - "\n", - " Chiara\n", + " Oliver pursue Chiara\n", " PERSON\n", "\n", ".
\n", @@ -223,7 +218,7 @@ " Oliver\n", " PERSON\n", "
\n", - ", who is awestruck and tells him they cannot discuss such things. Later, in a secluded spot, the \n", + ", who tells him they cannot discuss such things. Later, in a secluded spot, the \n", "\n", " two\n", " CARDINAL\n", @@ -233,12 +228,7 @@ " first\n", " ORDINAL\n", "\n", - " time. \n", - "\n", - " Oliver\n", - " PERSON\n", - "\n", - " is reluctant to take things further and they do not speak for \n", + " time. They do not speak for \n", "\n", " several days\n", " DATE\n", @@ -249,9 +239,9 @@ " PERSON\n", "\n", " goes on a date with \n", - "\n", + "\n", " Marzia\n", - " PERSON\n", + " GPE\n", "\n", " and the \n", "\n", @@ -293,7 +283,7 @@ " first\n", " ORDINAL\n", "\n", - " time. In the immediate aftermath, \n", + " time. After, \n", "\n", " Oliver\n", " PERSON\n", @@ -303,7 +293,12 @@ " Elio\n", " PERSON\n", "\n", - ", "Call me by your name and I'll call you by mine." The morning after, \n", + ", "Call me by your name and I'll call you by mine". \n", + "\n", + " The morning\n", + " TIME\n", + "\n", + " after, \n", "\n", " Elio\n", " PERSON\n", @@ -323,42 +318,37 @@ " three days\n", " DATE\n", "\n", - ". He offers a cold response, leaving her heartbroken.
As the end of \n", + ". He responds coldly.
As the end of \n", "\n", " Oliver\n", " PERSON\n", "\n", - "'s stay approaches, he and \n", - "\n", - " Elio\n", - " PERSON\n", - "\n", - " both find themselves overcome by uncertainty and longing. \n", + "'s stay approaches, \n", "\n", " Elio\n", " PERSON\n", "\n", - "'s parents, who are privately aware of the bond between the \n", + "'s parents, who appear to be aware of the bond between the \n", "\n", " two\n", " CARDINAL\n", "\n", - " but do not address it openly, recommend he and \n", + ", recommend that he and \n", "\n", " Oliver\n", " PERSON\n", "\n", " visit \n", - "\n", + "\n", " Bergamo\n", - " ORG\n", + " FAC\n", "\n", " together before \n", "\n", " Oliver\n", " PERSON\n", "\n", - " returns home to the \n", + " returns to the \n", "\n", " U.S.\n", " GPE\n", @@ -378,12 +368,7 @@ " Oliver\n", " PERSON\n", "\n", - "'s departure, calls his mother and asks her to pick him up from the train station and take him home. \n", - "\n", - " Marzia\n", - " PERSON\n", - "\n", - " is sympathetic to \n", + "'s departure, calls his mother and asks her to pick him up from the train station and take him home. Marzia is sympathetic to \n", "\n", " Elio\n", " PERSON\n", @@ -398,15 +383,15 @@ " Oliver\n", " PERSON\n", "\n", - " and confesses to almost having had a similar relationship in his own youth. He urges \n", + " and confesses to having had a similar relationship in his own youth. He urges \n", "\n", " Elio\n", " PERSON\n", "\n", - " to learn from his grief and grow, instead of just moving on too quickly.
During \n", - "\n", + " to learn from his grief and grow instead of moving on too quickly.
During \n", + "\n", " Hanukkah\n", - " ORG\n", + " DATE\n", "\n", ", \n", "\n", @@ -438,12 +423,17 @@ " Oliver\n", " PERSON\n", "\n", - " responds with his; he also mentions that he remembers everything. After the call, \n", + " responds with his; \n", + "\n", + " Oliver\n", + " PERSON\n", + "\n", + " also says that he remembers everything. After the call, \n", "\n", " Elio\n", " PERSON\n", "\n", - " sits down by the fireplace and stares into the flames, tearfully reminiscing, as his parents and the house staff prepare a holiday dinner." + " sits down by the fireplace and stares into the flames, tearfully reflecting, as his parents and staff prepare the holiday dinner." ], "text/plain": [ "" @@ -545,32 +535,47 @@ " Graham\n", " PERSON\n", "
\n", - ", drops by after drinking too much at the local pub, asking to spend the night. \n", + ", drops by after drinking too much at the local pub, asking to spend \n", + "\n", + " the night\n", + " TIME\n", + "\n", + ". \n", "\n", " Amanda\n", " PERSON\n", "\n", - " agrees and after they talk. \n", + " agrees and after they talk \n", "\n", " Graham\n", " PERSON\n", "\n", - " unexpectedly kisses her on the lips, then she suggests they have sex as she does not expect to see him ever again. \n", + " unexpectedly kisses her on the lips; she suggests they have sex as she does not expect to see him ever again. \n", "\n", " The next morning\n", " TIME\n", "\n", - ", despite having enjoyed their time together, they go their separate ways. That evening \n", + ", despite having enjoyed their time together, they go their separate ways. \n", + "\n", + " That evening\n", + " TIME\n", + "\n", + " \n", "\n", " Graham\n", " PERSON\n", "\n", - " meets friends at the pub for dinner and sees \n", + " meets friends at the pub for dinner, as he had mentioned to \n", + "\n", + " Amanda\n", + " ORG\n", + "\n", + ", and he sees \n", "\n", " Amanda\n", " PERSON\n", "\n", - " there, having decided to stay.
\n", + " there, she having decided to stay.
\n", "\n", " Iris\n", " PERSON\n", @@ -590,27 +595,22 @@ " Oscar\n", " PERSON\n", "\n", - "-winning screenwriter from \n", - "\n", - " the Golden Age of Film\n", - " ORG\n", - "\n", - ". Over dinner, \n", + "-winning screenwriter from the Golden Age of Film. Over dinner, \n", "\n", " Iris\n", " PERSON\n", "\n", " tells him about her troubles with \n", - "\n", + "\n", " Jasper\n", - " PERSON\n", + " ORG\n", "\n", - ". He gives her a long list of movies with strong female characters to watch so she can become "the leading lady of her own life."
\n", + ". He gives her a long list of movies with strong female characters to watch so she can become "the leading lady of her own life."
\n", "\n", " Iris\n", " PERSON\n", "\n", - " convinces \n", + " persuades \n", "\n", " Arthur\n", " PERSON\n", @@ -635,15 +635,10 @@ " Maggie\n", " PERSON\n", "\n", - ". While at the video store looking for \n", - "\n", - " one\n", - " CARDINAL\n", - "\n", - " of the movies on \n", - "\n", + ". While at the video store looking for one of the movies on \n", + "\n", " Arthur\n", - " PERSON\n", + " ORG\n", "\n", "'s list, he catches \n", "\n", @@ -676,16 +671,16 @@ " PERSON\n", "\n", ", telling him she has not cried since her parents divorced when she was \n", - "\n", + "\n", " 15\n", - " CARDINAL\n", + " DATE\n", "\n", ". Surprising him at his house, she discovers he is a widower with \n", "\n", " two\n", " CARDINAL\n", "\n", - " young daughters. He kept his daughters a secret because compartmentalizing his life helps him deal with the overwhelming responsibility of being a single working father. And he does not want to bring a woman into the girls' lives unless the relationship definitely has a future. They begin to think their relationship is more complicated than they can handle.
On \n", + " young daughters. He kept his daughters a secret because compartmentalizing his life helps him deal with the overwhelming responsibility of being a single working father, and he does not want to bring a woman into the girls' lives unless the relationship definitely has a future. They begin to think their relationship is more complicated than they can handle.
On \n", "\n", " the day\n", " DATE\n", @@ -716,9 +711,9 @@ " ORG\n", "\n", "'s but, drawing on the example of the women from \n", - "\n", + "\n", " Arthur\n", - " PERSON\n", + " ORG\n", "\n", "'s films, she kicks him out. At the gala, \n", "\n", @@ -740,7 +735,7 @@ " New Year's Eve\n", " EVENT\n", "\n", - ". She agrees and kisses him.
Meanwhile, \n", + ". She agrees and kisses him.
Meanwhile, \n", "\n", " Graham\n", " PERSON\n", @@ -751,9 +746,9 @@ " PERSON\n", "\n", " he has fallen for her and while she says she does not return the sentiment, they agree to try to make a long-distance relationship work. While heading to the airport, \n", - "\n", + "\n", " Amanda\n", - " PERSON\n", + " ORG\n", "\n", " breaks down crying. She runs back to the cottage and she and \n", "\n", @@ -776,9 +771,9 @@ " PERSON\n", "\n", ", \n", - "\n", + "\n", " Amanda\n", - " ORG\n", + " PERSON\n", "\n", ", \n", "\n", @@ -807,9 +802,34 @@ { "data": { "text/html": [ - "
In \n", + "
Albus \n", + "\n", + " Dumbledore\n", + " PERSON\n", + "\n", + " and \n", + "\n", + " Gellert Grindelwald\n", + " PERSON\n", + "\n", + " briefly meet in a Muggle teashop where they acknowledge their mutual feelings. Grindelwald vows to destroy the Muggle world, but \n", + "\n", + " Dumbledore\n", + " PERSON\n", + "\n", + " denounces the plan as madness, saying he once supported it only because he was young and foolish.
In \n", + "\n", + " Kweilin\n", + " GPE\n", + "\n", + ", \n", + "\n", + " China\n", + " GPE\n", + "\n", + ", \n", "\n", - " Bhutan 1932\n", + " 1932\n", " DATE\n", "\n", ", \n", @@ -818,43 +838,38 @@ " PERSON\n", "\n", " helps a \n", - "\n", + "\n", " Qilin\n", - " ORG\n", + " GPE\n", "\n", " — a magical creature that can see into one's soul as well as the future — give birth. \n", "\n", - " Gellert Grindelwald's\n", + " Grindelwald\n", " PERSON\n", "\n", - " acolytes, led by \n", - "\n", - " Credence Barebone\n", - " PERSON\n", + "'s acolytes, (led by \n", + "\n", + " Credence\n", + " ORG\n", "\n", - ", attack and kill the mother, and kidnap the newborn. \n", + "), attack and kill the mother, then kidnap the newborn. Grindelwald kills the creature, intending to harness its ability of precognition. Unbeknownst to them, the \n", "\n", - " Grindelwald\n", - " GPE\n", - "\n", - " subsequently kills the creature to harness its ability of precognition. However, unbeknownst to them, the \n", - "\n", " Qilin\n", - " ORG\n", + " GPE\n", "\n", - " has given birth to twins, the younger of which \n", + " had twins, the younger of which \n", "\n", " Newt\n", " PERSON\n", "\n", - " is able to save.
Unable to battle against \n", - "\n", + " saved.
Unable to battle \n", + "\n", " Grindelwald\n", - " GPE\n", + " PERSON\n", "\n", - " due to a blood pact, \n", + " due to a blood pact they formed, Albus \n", "\n", - " Albus Dumbledore\n", + " Dumbledore\n", " PERSON\n", "\n", " recruits \n", @@ -862,12 +877,12 @@ " Newt\n", " PERSON\n", "
\n", - ", his brother, \n", + ", \n", "\n", - " Theseus\n", + " Newt\n", " PERSON\n", "\n", - ", \n", + "'s brother Theseus, \n", "\n", " Ilvermorny Charms\n", " ORG\n", @@ -887,97 +902,97 @@ " Yusuf Kama\n", " PERSON\n", "\n", - " and \n", - "\n", - " American No-Maj\n", - " ORG\n", + ", \n", + "\n", + " American\n", + " NORP\n", "\n", - " \n", + " No-Maj \n", "\n", " Jacob Kowalski\n", " PERSON\n", "\n", - " to thwart \n", - "\n", - " Grindelwald\n", - " GPE\n", - "\n", - "'s plan for world domination. \n", + ", and \n", "\n", - " Yusuf Kama\n", + " Newt\n", " PERSON\n", "\n", - " is tagged as a spy in \n", - "\n", + "'s assistant Bunty to thwart \n", + "\n", " Grindelwald\n", - " GPE\n", + " ORG\n", "\n", - "'s inner circle while the rest of the group is sent to \n", + "'s plan for world domination. They travel to \n", "\n", " Berlin\n", " GPE\n", "\n", - ", \n", - "\n", - " Germany\n", - " GPE\n", + ", where \n", + "\n", + " Yusuf\n", + " PERSON\n", "\n", - ". There, the group witness \n", - "\n", + " is planted as a spy in \n", + "\n", " Grindelwald\n", - " GPE\n", + " PERSON\n", "\n", - " being acquitted of all criminal charges by \n", + "'s inner circle. Grindelwald has convert \n", "\n", - " the International Confederation of Wizards\n", + " Queenie Goldstein\n", " ORG\n", "\n", - " (\n", - "\n", - " ICW\n", - " ORG\n", + " use legilimency to test \n", + "\n", + " Yusuf\n", + " PERSON\n", "\n", - ") and subsequently running for \n", + "'s trustworthiness. \n", "\n", - " the office of Supreme Mugwump\n", + " The International Confederation of Wizards\n", " ORG\n", "\n", - ". The \n", + " (\n", "\n", " ICW\n", " ORG\n", "\n", - " believes arresting \n", - "\n", + ") acquits \n", + "\n", " Grindelwald\n", - " GPE\n", + " PERSON\n", "\n", - " could gain him more support, but beating him in a legitimate election will lose him support.
\n", - "\n", - " Grindelwald\n", - " GPE\n", + " of all previous criminal charges, allowing him to run in the elections for \n", + "\n", + " Supreme Leader\n", + " ORG\n", "\n", - "'s acolytes; who have undermined \n", + " of the \n", "\n", - " the German Ministry of Magic\n", + " ICW\n", " ORG\n", "\n", - ", arrest \n", + ", despite \n", "\n", - " Theseus\n", + " Dumbledore\n", " PERSON\n", "\n", - " and plan to assassinate \n", - "\n", - " one\n", - " CARDINAL\n", + "'s attempts to otherwise persuade current Leader \n", + "\n", + " Anton Vogel\n", + " PERSON\n", "\n", - " of \n", - "\n", + ".
Meanwhile, \n", + "\n", " Grindelwald\n", - " GPE\n", + " ORG\n", + "\n", + "'s acolytes, who have undermined the \n", + "\n", + " German\n", + " NORP\n", "\n", - "'s competitors, the \n", + " Ministry of Magic, arrest Theseus and plot to assassinate the \n", "\n", " Brazilian\n", " NORP\n", @@ -992,202 +1007,262 @@ " Dumbledore\n", " PERSON\n", "\n", - " gives \n", + " dispatches \n", "\n", " Newt\n", " PERSON\n", "\n", - " and \n", - "\n", - " Lally\n", - " PERSON\n", - "\n", - " their next assignments; to rescue Theseus and foil the assassination. While \n", + " to the \n", "\n", - " Newt\n", + " Erkstag\n", " PERSON\n", "\n", - " rescues his brother from the secret \n", + ", the secret \n", "\n", " German\n", " NORP\n", "\n", - " wizarding prison, \n", + " wizarding prison where Theseus is held. Lally and \n", "\n", - " Lally\n", + " Jacob\n", " PERSON\n", "\n", - " and Jacob thwart the assassination attempt; however, \n", + " escape after successfully preventing the assassination, but \n", "\n", " Jacob\n", " PERSON\n", "\n", - " is subsequently framed for attempting to kill \n", - "\n", + " is framed for attempting to murder \n", + "\n", " Grindelwald\n", - " GPE\n", + " PERSON\n", "\n", - ", and he and \n", + ", who then justifies suppressing all Muggles. Meanwhile, Credence battles Albus \n", "\n", - " Lally\n", + " Dumbledore\n", " PERSON\n", "\n", - " barely escape, giving \n", - "\n", - " Grindelwald\n", - " GPE\n", - "\n", - " an incentive to turn the \n", + ", who quickly defeats him. Credence learns he is the illegitimate son of \n", "\n", - " Wizarding\n", + " Aberforth Dumbledore\n", " PERSON\n", "\n", - " world against the Muggle world. Meanwhile, \n", - "\n", - " Grindelwald\n", - " GPE\n", - "\n", - " has sent Credence to assassinate \n", + ", Albus \n", "\n", " Dumbledore\n", " PERSON\n", "\n", - ". \n", + "'s brother, and questions his loyalty to \n", "\n", - " Dumbledore\n", + " Grindelwald\n", " PERSON\n", "\n", - " quickly defeats Credence and he is revealed to be the illegitimate son of \n", + ". Elsewhere, \n", "\n", - " Dumbledore\n", + " Newt\n", " PERSON\n", "\n", - "'s younger brother, \n", + " and Theseus escape the \n", "\n", - " Aberforth Dumbledore\n", + " Erkstag\n", " PERSON\n", "\n", - ". Learning who his father is and being spared by \n", - "\n", - " Albus\n", - " ORG\n", - "\n", - ", Credence starts to question his loyalty to \n", - "\n", - " Grindelwald\n", - " GPE\n", + " and use a \n", + "\n", + " Portkey\n", + " LOC\n", "\n", - ".
The leaders of the wizarding world gather in \n", + " to transport to Hogwarts.
Wizarding world leaders gather in \n", "\n", " Bhutan\n", " GPE\n", "\n", - ", where the new \n", + " for \n", "\n", - " Supreme Mugwump\n", - " ORG\n", - "\n", - " is to be elected by the ancient tradition of being found worthy by a \n", - "\n", - " Qilin\n", - " ORG\n", - "\n", - ", who bows to those pure of heart. Using necromancy to reanimate the corpse of the \n", - "\n", - " Qilin\n", + " the Walk of the\n", " ORG\n", "\n", - " he killed earlier, \n", + " \n", "\n", - " Grindelwald\n", + " Qilin\n", " GPE\n", "\n", - " has it bow to him during the Walk of the \n", - "\n", + " ritual, at which a \n", + "\n", " Qilin\n", - " ORG\n", + " GPE\n", "\n", - " ceremony, thus manipulating the election. He immediately declares war on all Muggles and tortures Jacob for trying to assassinate him; however, \n", + " will select a worthy new \n", "\n", - " Credence\n", + " Supreme\n", " ORG\n", "\n", - ", \n", + " Leader. Using necromancy, \n", "\n", - " Queenie Goldstein\n", + " Grindelwald\n", " PERSON\n", "\n", - " (who regrets joining \n", + " reanimates the dead \n", "\n", - " Grindelwald\n", + " Qilin\n", " GPE\n", "\n", - ") and \n", + " and, knowing \n", "\n", - " Newt\n", + " Dumbledore\n", " PERSON\n", "\n", - " expose him. The surviving \n", - "\n", + " and \n", + "\n", + " Newt\n", + " PERSON\n", + "\n", + " will bring the surviving twin \n", + "\n", " Qilin\n", + " GPE\n", + "\n", + " to the ritual, gives Credence a last chance to redeem himself. To thwart \n", + "\n", + " Grindelwald\n", " ORG\n", "\n", - " is produced, who subsequently bows to Dumbledore, as well as \n", + "'s cohorts, each \n", "\n", - " Santos\n", + " Dumbledore\n", " PERSON\n", "\n", - ". Enraged, \n", + " ally carries an identical suitcase with \n", + "\n", + " only one\n", + " CARDINAL\n", + "\n", + " containing the \n", + "\n", + " Qilin\n", + " FAC\n", + "\n", + ".
The team arrive in \n", "\n", - " Grindelwald\n", + " Bhutan\n", " GPE\n", "\n", - " tries to kill Credence, who is protected by \n", + " and are immediately confronted by \n", "\n", - " Albus\n", + " Grindelwald\n", " PERSON\n", "\n", - " and \n", + "'s acolytes. \n", "\n", - " Aberforth\n", + " Queenie\n", " PERSON\n", "\n", - ". The ensuing contact of the \n", - "\n", - " two\n", - " CARDINAL\n", + " renounces \n", + "\n", + " Grindelwald\n", + " PERSON\n", + "\n", + " and reunites with \n", + "\n", + " Jacob\n", + " PERSON\n", + "\n", + ", but they are caught. The manipulated dead \n", + "\n", + " Qilin\n", + " PERSON\n", + "\n", + " chooses \n", + "\n", + " Grindelwald\n", + " PERSON\n", + "\n", + " during the \n", + "\n", + " Supreme\n", + " ORG\n", + "\n", + " Leader selection ceremony. He immediately declares war on all Muggles and tortures \n", + "\n", + " Jacob\n", + " PERSON\n", + "\n", + " with the cruciatus curse until \n", + "\n", + " Santos\n", + " PERSON\n", + "\n", + " intervenes. Credence, \n", + "\n", + " Newt\n", + " PERSON\n", + "\n", + ", and \n", + "\n", + " Bunty\n", + " GPE\n", + "\n", + " expose Grindelwald. Bunty produces the surviving \n", + "\n", + " Qilin\n", + " GPE\n", "\n", - " spells breaks the blood pact that prevented \n", + " which bows to \n", "\n", " Dumbledore\n", " PERSON\n", "\n", + ", who declines the position. \n", + "\n", + " Santos\n", + " PERSON\n", + "\n", + " is instead chosen as the new \n", + "\n", + " Supreme\n", + " ORG\n", + "\n", + " Leader. Enraged, \n", + "\n", + " Grindelwald\n", + " PERSON\n", + "\n", + " tries to kill Credence who is simultaneously protected by \n", + "\n", + " Aberforth\n", + " PERSON\n", + "\n", " and \n", "\n", - " Grindelwald\n", + " Albus\n", " GPE\n", "\n", - " from attacking each other, starting a battle between the \n", - "\n", - " two\n", - " CARDINAL\n", + ". \n", + "\n", + " Dumbledore\n", + " PERSON\n", "\n", - ". As the battle reaches a stalemate, \n", - "\n", + "'s and \n", + "\n", " Grindelwald\n", - " GPE\n", + " PERSON\n", "\n", - " eventually retreats.
In the aftermath, a dying \n", + "'s clashing spells break the blood pact. Their ensuing battle reaches a stalemate, and \n", "\n", - " Credence\n", + " Grindelwald\n", " ORG\n", "\n", - " is accepted by \n", + " disapparates.
In the aftermath, \n", "\n", " Aberforth\n", " PERSON\n", "\n", - " and returns home. \n", + " accepts the ailing \n", + "\n", + " Credence\n", + " PRODUCT\n", + "\n", + " as his son and takes him home. \n", "\n", " Jacob\n", " PERSON\n", @@ -1197,22 +1272,42 @@ " Queenie\n", " PERSON\n", "\n", - " marry in the former's bakery in \n", - "\n", - " New York City\n", - " GPE\n", + " marry at \n", + "\n", + " Jacob\n", + " PERSON\n", "\n", - ", with most of the group and \n", + "'s bakery, with most of the team and \n", "\n", " Tina Goldstein\n", " PERSON\n", "\n", - " in attendance. Dumbledore watches the ceremony from afar and afterwards, briefly thanks \n", + " in attendance. \n", + "\n", + " Newt\n", + " PERSON\n", + "\n", + " spots \n", + "\n", + " Dumbledore\n", + " PERSON\n", + "\n", + " watching from across the street. \n", + "\n", + " Dumbledore\n", + " PERSON\n", + "\n", + " thanks \n", "\n", " Newt\n", " PERSON\n", "\n", - " before departing alone into the night.
" + " before disappearing into \n", + "\n", + " the night\n", + " TIME\n", + "\n", + ".
" ], "text/plain": [ "" @@ -1224,7 +1319,7 @@ { "data": { "text/html": [ - "
An enchantress disguised as an old beggar woman arrives at a castle during a ball and offers the host, a cruel and selfish prince, an enchanted rose in return for shelter from a storm. When he refuses the offer, the enchantress reveals her true form and transforms the prince into a beast and his servants into household objects before erasing the castle, himself, and his servants from the memories of their loved ones and everyone else in the town. She warns the prince that the curse will be broken, only if he can learn to love another and have that person love him in return by the time the last petal of the rose falls, or else he will remain a beast for the rest of his life while his servants become inanimate.
\n", + "
An enchantress disguised as an old beggar woman arrives at a castle during a ball and offers the host, a selfish and unkind prince, an enchanted rose in return for shelter from a storm. When he turns down the offer, she reveals her true form and transforms him into a beast and his servants into household objects before erasing the castle, himself, and the servants from the memories of their loved ones and everyone else in the nearby village. She warns the prince that the curse will only be broken if he learns to love another and have that person love him back before the last petal of the rose falls; if not, he will remain a beast for the rest of his life, while his servants will become inanimate objects.
\n", "\n", " Several years later\n", " DATE\n", @@ -1245,26 +1340,26 @@ " PERSON\n", "\n", ", dreams of adventure. She constantly brushes off advances from \n", - "\n", + "\n", " Gaston\n", - " GPE\n", + " ORG\n", "\n", - ", an arrogant war veteran as he is not the type of man \n", - "\n", + ", an arrogant hunter and war veteran, as he is not the type of man \n", + "\n", " Belle\n", - " GPE\n", + " PERSON\n", "\n", - " wishes to marry. On \n", + " wishes to marry. On his way to the market, \n", "\n", " Maurice\n", " PERSON\n", "\n", - "'s way to the market, he becomes lost in the forest and after narrowly escaping a pack of wolves he seeks refuge in the \n", - "\n", + " becomes lost in the forest and after narrowly escaping a pack of wolves he seeks refuge in the \n", + "\n", " Beast\n", - " ORG\n", + " LOC\n", "\n", - "'s castle. However, the Beast imprisons him when he "stole" a rose from his garden as a gift to \n", + "'s castle. However, the Beast imprisons him when he "steals" a rose from the garden as a gift to \n", "\n", " Belle\n", " GPE\n", @@ -1284,32 +1379,22 @@ " Belle\n", " GPE\n", "\n", - " asks the Beast to let her take \n", + " pleads with the Beast to let her take her father's place, to which the Beast agrees but \n", "\n", " Maurice\n", " PERSON\n", "\n", - "'s place, the Beast agrees but \n", + " refuses. \n", "\n", - " Maurice\n", - " PERSON\n", - "\n", - " refuses. On the pretence of saying goodbye, \n", - "\n", - " Belle\n", - " GPE\n", - "\n", - " asks the Beast to allow her to say goodbye to her father. The Beast opens the gate to the cell, \n", - "\n", " Belle\n", - " GPE\n", + " PERSON\n", "\n", - " hugs \n", + " is granted the chance to be allowed to say goodbye; she hugs \n", "\n", " Maurice\n", " PERSON\n", "\n", - " and surprises him by swapping places and shutting the gate on herself. The Beast drags \n", + ", then surprises him by swapping places and shutting the gate on herself. The Beast drags \n", "\n", " Maurice\n", " PERSON\n", @@ -1319,35 +1404,35 @@ " Belle\n", " GPE\n", "\n", - " befriends the castle's servants, including candelabra/footman \n", - "\n", - " Lumiere\n", - " ORG\n", + " befriends the castle's servants, including candelabra/\n", + "\n", + " footman Lumiere\n", + " PERSON\n", "\n", ", mantel clock/majordomo \n", "\n", " Cogsworth\n", " GPE\n", "\n", - ", feather-duster/maid \n", + ", feather-duster/maid Plumette, teapot/housekeeper Mrs. \n", "\n", - " Plumette\n", + " Potts\n", " PERSON\n", "\n", - ", teapot/housekeeper Mrs. \n", + ", and her son, \n", "\n", - " Potts\n", + " Chip\n", " PERSON\n", "\n", - ", and her son, Chip, who is now a teacup. They invite her to a spectacular dinner. When she wanders into the forbidden west wing and finds the rose, the Beast scares her into the woods. \n", + ", who is now a teacup. They invite her to a spectacular dinner. When she wanders into the forbidden west wing and finds the enchanted rose, the Beast scares her into the woods. \n", "\n", " Belle\n", " GPE\n", "\n", - " is ambushed off-guard by the wolves from earlier, but the Beast rescues her, injuring himself in the process. As \n", - "\n", + " is ambushed off-guard by the wolves from earlier, but the Beast attempts to rescue her, injuring himself in the process. As \n", + "\n", " Belle\n", - " GPE\n", + " PERSON\n", "\n", " nurses his wounds, a spark develops between them. The Beast shows \n", "\n", @@ -1355,26 +1440,31 @@ " GPE\n", "\n", " a gift from the enchantress, a book that transports readers wherever they want. \n", - "\n", + "\n", " Belle\n", - " GPE\n", + " PERSON\n", "\n", " uses the book to visit her childhood home in \n", "\n", " Paris\n", " GPE\n", "\n", - ", where she discovers a plague doctor's mask and realizes that she and her father were forced to leave when her mother succumbed to the Bubonic plague, the one thing her father couldn't tell her all those years.
In \n", - "\n", + ", where she discovers a plague doctor's mask and realizes that she and her father were forced to leave when her mother died from bubonic plague, the \n", + "\n", + " one\n", + " CARDINAL\n", + "\n", + " thing her father could not tell her all those years.
In \n", + "\n", " Villeneuve\n", - " ORG\n", + " GPE\n", "\n", ", \n", "\n", " Maurice\n", " PERSON\n", "\n", - " fails to convince the other villagers of the Beast and \n", + " fails to convince the other villagers of the Beast, his castle and \n", "\n", " Belle\n", " GPE\n", @@ -1404,20 +1494,15 @@ " Gaston\n", " PERSON\n", "\n", - " abandons him to be eaten by the wolves. \n", + " knocks him unconscious and abandons him to be eaten by the wolves. \n", "\n", " Maurice\n", " PERSON\n", "\n", - " is rescued by the town hermit \n", + " is rescued by the town hermit Agathe, but when he tells the townsfolk of \n", "\n", - " Agathe\n", - " PERSON\n", - "\n", - ", but when he tells the townsfolk of \n", - "\n", " Gaston\n", - " GPE\n", + " PERSON\n", "\n", "'s crime and is unable to provide solid evidence, \n", "\n", @@ -1439,7 +1524,7 @@ " Maurice\n", " PERSON\n", "\n", - ", giving her the mirror to remember him with. Arriving back to the town, \n", + ", giving her the mirror to remember him with. Arriving back to the village, \n", "\n", " Belle\n", " GPE\n", @@ -1449,27 +1534,22 @@ " Belle\n", " GPE\n", "\n", - " loves the Beast, a jealous \n", + " is in love with the Beast, a jealous \n", "\n", " Gaston\n", " PERSON\n", "\n", " claims she has been charmed by dark magic and has her thrown into the asylum carriage with her father. He rallies the villagers to follow him to the castle to slay the Beast before he "curses" the whole village. Inside the asylum carriage, \n", - "\n", - " Belle\n", - " GPE\n", - "\n", - " tells her father that she already knows what happened to her mother and showed him the rose rattle she took from her magical visit to their old, abandoned home. \n", "\n", - " Maurice\n", + " Belle\n", " PERSON\n", "\n", - " and \n", - "\n", - " Belle\n", - " GPE\n", + " tells her father that she already knows what happened to her mother and shows him the rose rattle she took from her magical visit to their old, abandoned home. The \n", + "\n", + " two\n", + " CARDINAL\n", "\n", - " escape, and \n", + " manage to escape, and \n", "\n", " Belle\n", " GPE\n", @@ -1480,11 +1560,21 @@ " PERSON\n", "\n", " abandons his companion \n", - "\n", + "\n", " LeFou\n", + " PERSON\n", + "\n", + ", who then sides with the \n", + "\n", + " Beast\n", " ORG\n", "\n", - ", who then sides with the servants to fend off the villagers. Meanwhile, he attacks the Beast in his tower, who is too depressed to fight back, but regains his spirit upon seeing \n", + "'s servants to fend off the villagers. Meanwhile, \n", + "\n", + " Gaston\n", + " PERSON\n", + "\n", + " attacks the Beast in his tower; the Beast who is too depressed to fight back, but regains his spirit upon seeing \n", "\n", " Belle\n", " GPE\n", @@ -1494,10 +1584,10 @@ " Gaston\n", " PERSON\n", "\n", - ", but spares his life at the last \n", - "\n", - " second\n", - " ORDINAL\n", + ", but spares his life at \n", + "\n", + " the last second\n", + " TIME\n", "\n", " before reuniting with \n", "\n", @@ -1509,27 +1599,27 @@ " Gaston\n", " PERSON\n", "\n", - " treacherously shoots the Beast from a bridge, which then collapses as the castle begins to crumble, leading \n", + " shoots the Beast from an unstable bridge, which then collapses, sending \n", "\n", " Gaston\n", " PERSON\n", "\n", - " to fall to his death. The Beast then dies just as the last petal falls and the servants become inanimate objects themselves shortly after the ordeal.
As \n", - "\n", - " Belle\n", - " GPE\n", - "\n", - " tearfully professes her love to the Beast, \n", + " falling to his death. The Beast then dies just as the last petal falls, and the servants become inanimate objects.
As \n", "\n", - " Agathe\n", + " Belle\n", " PERSON\n", "\n", - " reveals herself as the enchantress and undoes the curse which repairs the crumbling castle, revives the Beast and restores him and his servants to their human forms and to the villagers' memories once again. The movie ends with the Prince and \n", + " tearfully professes her love to the Beast, Agathe reveals herself as the enchantress and undoes the curse, which repairs the crumbling castle, revives the \n", + "\n", + " Beast\n", + " LOC\n", + "\n", + ", and restores him and his servants to their human forms and to the villagers' memories once again. The film ends with \n", "\n", " Belle\n", " GPE\n", "\n", - " hosting a ball for the kingdom, where they dance happily.
" + " and the prince hosting a ball for the kingdom, where they dance happily.
" ], "text/plain": [ "" @@ -1548,7 +1638,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 9, "id": "taken-singapore", "metadata": { "scrolled": true @@ -1566,7 +1656,7 @@ { "data": { "text/html": [ - "\n", + "\n", "\n", " Later,\n", " ADV\n", @@ -1604,7 +1694,7 @@ "\n", "\n", " kiss\n", - " VERB\n", + " NOUN\n", "\n", "\n", "\n", @@ -1628,89 +1718,89 @@ "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " amod\n", + " amod\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nummod\n", + " nummod\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " amod\n", + " amod\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", " \n", "\n", @@ -1733,167 +1823,153 @@ { "data": { "text/html": [ - "\n", - "\n", - " \n", - "\n", - " SPACE\n", - "\n", - "\n", + "\n", "\n", - " Elio\n", - " PROPN\n", + " Elio\n", + " PROPN\n", "\n", "\n", "\n", - " goes\n", - " VERB\n", + " goes\n", + " VERB\n", "\n", "\n", "\n", - " on\n", - " ADP\n", + " on\n", + " ADP\n", "\n", "\n", "\n", - " a\n", - " DET\n", + " a\n", + " DET\n", "\n", "\n", "\n", - " date\n", - " NOUN\n", + " date\n", + " NOUN\n", "\n", "\n", "\n", - " with\n", - " ADP\n", + " with\n", + " ADP\n", "\n", "\n", "\n", - " Marzia\n", - " PROPN\n", + " Marzia\n", + " PROPN\n", "\n", "\n", "\n", - " and\n", - " CCONJ\n", + " and\n", + " CCONJ\n", "\n", "\n", "\n", - " the\n", - " DET\n", + " the\n", + " DET\n", "\n", "\n", "\n", - " two\n", - " NUM\n", + " two\n", + " NUM\n", "\n", "\n", "\n", - " have\n", - " VERB\n", + " have\n", + " VERB\n", "\n", "\n", "\n", - " sex.\n", - " NOUN\n", + " sex.\n", + " NOUN\n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dep\n", + " nsubj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " pobj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " nsubj\n", " \n", " \n", "\n", "\n", "\n", - " \n", - " \n", - " nsubj\n", - " \n", - " \n", - "\n", - "\n", - "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "" ], @@ -1908,173 +1984,159 @@ "name": "stdout", "output_type": "stream", "text": [ - "['Elio', 'Marzia']\n" + "['Elio']\n" ] }, { "data": { "text/html": [ - "\n", - "\n", - " \n", - "\n", - " SPACE\n", - "\n", - "\n", + "\n", "\n", - " Elio\n", - " PROPN\n", + " Elio\n", + " PROPN\n", "\n", "\n", "\n", - " goes\n", - " VERB\n", + " goes\n", + " VERB\n", "\n", "\n", "\n", - " on\n", - " ADP\n", + " on\n", + " ADP\n", "\n", "\n", "\n", - " a\n", - " DET\n", + " a\n", + " DET\n", "\n", "\n", "\n", - " date\n", - " NOUN\n", + " date\n", + " NOUN\n", "\n", "\n", "\n", - " with\n", - " ADP\n", + " with\n", + " ADP\n", "\n", "\n", "\n", - " Marzia\n", - " PROPN\n", + " Marzia\n", + " PROPN\n", "\n", "\n", "\n", - " and\n", - " CCONJ\n", + " and\n", + " CCONJ\n", "\n", "\n", "\n", - " the\n", - " DET\n", + " the\n", + " DET\n", "\n", "\n", "\n", - " two\n", - " NUM\n", + " two\n", + " NUM\n", "\n", "\n", "\n", - " have\n", - " VERB\n", + " have\n", + " VERB\n", "\n", "\n", "\n", - " sex.\n", - " NOUN\n", + " sex.\n", + " NOUN\n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dep\n", + " nsubj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " pobj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " nsubj\n", " \n", " \n", "\n", "\n", "\n", - " \n", - " \n", - " nsubj\n", - " \n", - " \n", - "\n", - "\n", - "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "" ], @@ -2089,13 +2151,13 @@ "name": "stdout", "output_type": "stream", "text": [ - "['Elio', 'Marzia']\n" + "['Elio']\n" ] }, { "data": { "text/html": [ - "\n", + "\n", "\n", " Elio\n", " PROPN\n", @@ -2147,73 +2209,73 @@ "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " amod\n", + " amod\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", " \n", "\n", @@ -2239,426 +2301,426 @@ { "data": { "text/html": [ - "\n", - "\n", + "\n", + "\n", " Iris\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " Simpkins,\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " a\n", " DET\n", "\n", "\n", - "\n", + "\n", " society\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " columnist\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " for\n", " ADP\n", "\n", "\n", - "\n", + "\n", " The\n", " DET\n", "\n", "\n", - "\n", + "\n", " Daily\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " Telegraph\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " in\n", " ADP\n", "\n", "\n", - "\n", + "\n", " London,\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " is\n", " AUX\n", "\n", "\n", - "\n", + "\n", " still\n", " ADV\n", "\n", "\n", - "\n", + "\n", " madly\n", " ADV\n", "\n", "\n", - "\n", + "\n", " in\n", " ADP\n", "\n", "\n", - "\n", + "\n", " love\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " with\n", " ADP\n", "\n", "\n", - "\n", + "\n", " her\n", " PRON\n", "\n", "\n", - "\n", + "\n", " ex,\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " Jasper\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " Bloom,\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " despite\n", " SCONJ\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", + "\n", " fact\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " that\n", " SCONJ\n", "\n", "\n", - "\n", + "\n", " he\n", " PRON\n", "\n", "\n", - "\n", + "\n", " cheated\n", " VERB\n", "\n", "\n", - "\n", + "\n", " on\n", " ADP\n", "\n", "\n", - "\n", + "\n", " her\n", " PRON\n", "\n", "\n", - "\n", + "\n", " and\n", " CCONJ\n", "\n", "\n", - "\n", + "\n", " is\n", " AUX\n", "\n", "\n", - "\n", + "\n", " emotionally\n", " ADV\n", "\n", "\n", - "\n", + "\n", " needy.\n", " ADJ\n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " appos\n", + " appos\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " appos\n", + " appos\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " acl\n", + " acl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " acomp\n", + " acomp\n", " \n", - " \n", + " \n", "\n", "" ], @@ -2679,426 +2741,426 @@ { "data": { "text/html": [ - "\n", - "\n", + "\n", + "\n", " Iris\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " Simpkins,\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " a\n", " DET\n", "\n", "\n", - "\n", + "\n", " society\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " columnist\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " for\n", " ADP\n", "\n", "\n", - "\n", + "\n", " The\n", " DET\n", "\n", "\n", - "\n", + "\n", " Daily\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " Telegraph\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " in\n", " ADP\n", "\n", "\n", - "\n", + "\n", " London,\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " is\n", " AUX\n", "\n", "\n", - "\n", + "\n", " still\n", " ADV\n", "\n", "\n", - "\n", + "\n", " madly\n", " ADV\n", "\n", "\n", - "\n", + "\n", " in\n", " ADP\n", "\n", "\n", - "\n", + "\n", " love\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " with\n", " ADP\n", "\n", "\n", - "\n", + "\n", " her\n", " PRON\n", "\n", "\n", - "\n", + "\n", " ex,\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " Jasper\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " Bloom,\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " despite\n", " SCONJ\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", + "\n", " fact\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " that\n", " SCONJ\n", "\n", "\n", - "\n", + "\n", " he\n", " PRON\n", "\n", "\n", - "\n", + "\n", " cheated\n", " VERB\n", "\n", "\n", - "\n", + "\n", " on\n", " ADP\n", "\n", "\n", - "\n", + "\n", " her\n", " PRON\n", "\n", "\n", - "\n", + "\n", " and\n", " CCONJ\n", "\n", "\n", - "\n", + "\n", " is\n", " AUX\n", "\n", "\n", - "\n", + "\n", " emotionally\n", " ADV\n", "\n", "\n", - "\n", + "\n", " needy.\n", " ADJ\n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " appos\n", + " appos\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " appos\n", + " appos\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " acl\n", + " acl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " acomp\n", + " acomp\n", " \n", - " \n", + " \n", "\n", "" ], @@ -3119,296 +3181,361 @@ { "data": { "text/html": [ - "\n", - "\n", - " Graham\n", + "\n", + "\n", + " Amanda\n", " PROPN\n", "\n", "\n", - "\n", - " unexpectedly\n", - " ADV\n", + "\n", + " agrees\n", + " VERB\n", "\n", "\n", - "\n", - " kisses\n", - " VERB\n", + "\n", + " and\n", + " CCONJ\n", "\n", "\n", - "\n", - " her\n", - " PRON\n", + "\n", + " after\n", + " SCONJ\n", "\n", "\n", - "\n", - " on\n", - " ADP\n", + "\n", + " they\n", + " PRON\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " talk\n", + " VERB\n", "\n", "\n", - "\n", - " lips,\n", - " NOUN\n", + "\n", + " Graham\n", + " PROPN\n", "\n", "\n", - "\n", - " then\n", + "\n", + " unexpectedly\n", " ADV\n", "\n", "\n", - "\n", - " she\n", - " PRON\n", + "\n", + " kisses\n", + " VERB\n", "\n", "\n", - "\n", - " suggests\n", - " VERB\n", + "\n", + " her\n", + " PRON\n", "\n", "\n", - "\n", - " they\n", - " PRON\n", + "\n", + " on\n", + " ADP\n", "\n", "\n", - "\n", - " have\n", - " VERB\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " sex\n", + "\n", + " lips;\n", " NOUN\n", "\n", "\n", - "\n", - " as\n", - " SCONJ\n", + "\n", + " she\n", + " PRON\n", "\n", "\n", - "\n", - " she\n", - " PRON\n", + "\n", + " suggests\n", + " VERB\n", "\n", "\n", - "\n", - " does\n", - " AUX\n", + "\n", + " they\n", + " PRON\n", "\n", "\n", - "\n", - " not\n", - " PART\n", + "\n", + " have\n", + " VERB\n", "\n", "\n", - "\n", - " expect\n", - " VERB\n", + "\n", + " sex\n", + " NOUN\n", "\n", "\n", - "\n", - " to\n", - " PART\n", + "\n", + " as\n", + " SCONJ\n", "\n", "\n", - "\n", - " see\n", - " VERB\n", + "\n", + " she\n", + " PRON\n", "\n", "\n", - "\n", - " him\n", - " PRON\n", + "\n", + " does\n", + " AUX\n", "\n", "\n", - "\n", - " ever\n", - " ADV\n", + "\n", + " not\n", + " PART\n", "\n", "\n", - "\n", - " again.\n", - " ADV\n", + "\n", + " expect\n", + " VERB\n", "\n", "\n", - "\n", - " \n", - " \n", - " nsubj\n", - " \n", - " \n", + "\n", + " to\n", + " PART\n", + "\n", + "\n", + "\n", + " see\n", + " VERB\n", + "\n", + "\n", + "\n", + " him\n", + " PRON\n", + "\n", + "\n", + "\n", + " ever\n", + " ADV\n", + "\n", + "\n", + "\n", + " again.\n", + " ADV\n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " ccomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " ccomp\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " advcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " ccomp\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " pobj\n", " \n", - " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " ccomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " neg\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advcl\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " xcomp\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " neg\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advcl\n", " \n", - " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " aux\n", + " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " xcomp\n", " \n", - " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " dobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " advmod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " advmod\n", + " \n", + " \n", "\n", "" ], @@ -3423,263 +3550,263 @@ "name": "stdout", "output_type": "stream", "text": [ - "['Graham', 'Amanda']\n" + "['Amanda', 'Graham']\n" ] }, { "data": { "text/html": [ - "\n", - "\n", + "\n", + "\n", " At\n", " ADP\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", + "\n", " gala,\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " Arthur\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " walks\n", " VERB\n", "\n", "\n", - "\n", + "\n", " onstage\n", - " NOUN\n", + " ADV\n", "\n", "\n", - "\n", + "\n", " unassisted\n", " ADJ\n", "\n", "\n", - "\n", + "\n", " and\n", " CCONJ\n", "\n", "\n", - "\n", + "\n", " Miles\n", - " NOUN\n", + " PROPN\n", "\n", "\n", - "\n", + "\n", " asks\n", " VERB\n", "\n", "\n", - "\n", + "\n", " Iris\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " out\n", " ADP\n", "\n", "\n", - "\n", + "\n", " on\n", " ADP\n", "\n", "\n", - "\n", + "\n", " a\n", " DET\n", "\n", "\n", - "\n", + "\n", " date\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " for\n", " ADP\n", "\n", "\n", - "\n", + "\n", " New\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " Year\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " 's\n", " PART\n", "\n", "\n", - "\n", + "\n", " Eve.\n", " PROPN\n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " acomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prt\n", + " prt\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " case\n", + " case\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "" ], @@ -3703,296 +3830,231 @@ { "data": { "text/html": [ - "\n", - "\n", + "\n", + "\n", " Jacob\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " and\n", " CCONJ\n", "\n", "\n", - "\n", + "\n", " Queenie\n", " PROPN\n", "\n", "\n", - "\n", + "\n", " marry\n", " VERB\n", "\n", "\n", - "\n", - " in\n", + "\n", + " at\n", " ADP\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " Jacob\n", + " PROPN\n", "\n", "\n", - "\n", - " former\n", - " NOUN\n", + "\n", + " 's\n", + " PART\n", "\n", "\n", - "\n", - " 's\n", - " PART\n", + "\n", + " bakery,\n", + " NOUN\n", "\n", "\n", - "\n", - " bakery\n", - " NOUN\n", + "\n", + " with\n", + " ADP\n", "\n", "\n", - "\n", - " in\n", - " ADP\n", + "\n", + " most\n", + " ADJ\n", "\n", "\n", - "\n", - " New\n", - " PROPN\n", + "\n", + " of\n", + " ADP\n", "\n", "\n", - "\n", - " York\n", - " PROPN\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " City,\n", - " PROPN\n", + "\n", + " team\n", + " NOUN\n", "\n", "\n", - "\n", - " with\n", - " ADP\n", + "\n", + " and\n", + " CCONJ\n", "\n", "\n", - "\n", - " most\n", - " ADJ\n", + "\n", + " Tina\n", + " PROPN\n", "\n", "\n", - "\n", - " of\n", - " ADP\n", + "\n", + " Goldstein\n", + " PROPN\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " in\n", + " ADP\n", "\n", "\n", - "\n", - " group\n", + "\n", + " attendance.\n", " NOUN\n", "\n", "\n", - "\n", - " and\n", - " CCONJ\n", - "\n", - "\n", - "\n", - " Tina\n", - " PROPN\n", - "\n", - "\n", - "\n", - " Goldstein\n", - " PROPN\n", - "\n", - "\n", - "\n", - " in\n", - " ADP\n", - "\n", - "\n", - "\n", - " attendance.\n", - " NOUN\n", - "\n", - "\n", - "\n", - " \n", - " \n", - " nsubj\n", - " \n", - " \n", - "\n", - "\n", - "\n", - " \n", - " \n", - " cc\n", - " \n", - " \n", - "\n", - "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " nsubj\n", " \n", - " \n", - "\n", - "\n", - "\n", - " \n", - " \n", - " prep\n", - " \n", - " \n", - "\n", - "\n", - "\n", - " \n", - " \n", - " det\n", - " \n", - " \n", - "\n", - "\n", - "\n", - " \n", - " \n", - " poss\n", - " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " case\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " case\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "" ], @@ -4007,7 +4069,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "['Jacob', 'Queenie', 'Tina Goldstein']\n", + "['Jacob', 'Queenie', 'Jacob', 'Tina Goldstein']\n", "╭──────────────────────────────────╮\n", "│ Beauty and the Beast (2017 film) │\n", "╰──────────────────────────────────╯\n" @@ -4016,699 +4078,687 @@ { "data": { "text/html": [ - "\n", - "\n", + "\n", + "\n", " She\n", " PRON\n", "\n", "\n", - "\n", + "\n", " warns\n", " VERB\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", + "\n", " prince\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " that\n", " PRON\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", + "\n", " curse\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " will\n", " AUX\n", "\n", "\n", - "\n", - " be\n", - " AUX\n", + "\n", + " only\n", + " ADV\n", "\n", "\n", - "\n", - " broken,\n", - " VERB\n", + "\n", + " be\n", + " AUX\n", "\n", "\n", - "\n", - " only\n", - " ADV\n", + "\n", + " broken\n", + " VERB\n", "\n", "\n", - "\n", + "\n", " if\n", " SCONJ\n", "\n", "\n", - "\n", + "\n", " he\n", " PRON\n", "\n", "\n", - "\n", - " can\n", - " AUX\n", + "\n", + " learns\n", + " VERB\n", "\n", "\n", - "\n", - " learn\n", - " VERB\n", + "\n", + " to\n", + " PART\n", "\n", "\n", - "\n", - " to\n", - " PART\n", + "\n", + " love\n", + " VERB\n", "\n", "\n", - "\n", - " love\n", - " VERB\n", + "\n", + " another\n", + " PRON\n", "\n", "\n", - "\n", - " another\n", - " PRON\n", + "\n", + " and\n", + " CCONJ\n", "\n", "\n", - "\n", - " and\n", - " CCONJ\n", + "\n", + " have\n", + " VERB\n", "\n", "\n", - "\n", - " have\n", - " VERB\n", + "\n", + " that\n", + " DET\n", "\n", "\n", - "\n", - " that\n", - " DET\n", + "\n", + " person\n", + " NOUN\n", "\n", "\n", - "\n", - " person\n", - " NOUN\n", + "\n", + " love\n", + " VERB\n", "\n", "\n", - "\n", - " love\n", - " VERB\n", + "\n", + " him\n", + " PRON\n", "\n", "\n", - "\n", - " him\n", - " PRON\n", + "\n", + " back\n", + " ADV\n", "\n", "\n", - "\n", - " in\n", + "\n", + " before\n", " ADP\n", "\n", "\n", - "\n", - " return\n", - " NOUN\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " by\n", - " ADP\n", + "\n", + " last\n", + " ADJ\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " petal\n", + " NOUN\n", "\n", "\n", - "\n", - " time\n", - " NOUN\n", + "\n", + " of\n", + " ADP\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", - " last\n", - " ADJ\n", - "\n", - "\n", - "\n", - " petal\n", - " NOUN\n", + "\n", + " rose\n", + " NOUN\n", "\n", "\n", - "\n", - " of\n", - " ADP\n", + "\n", + " falls;\n", + " VERB\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " if\n", + " SCONJ\n", "\n", "\n", - "\n", - " rose\n", - " NOUN\n", + "\n", + " not,\n", + " PART\n", "\n", "\n", - "\n", - " falls,\n", - " VERB\n", + "\n", + " he\n", + " PRON\n", "\n", "\n", - "\n", - " or\n", - " CCONJ\n", + "\n", + " will\n", + " AUX\n", "\n", "\n", - "\n", - " else\n", - " ADV\n", + "\n", + " remain\n", + " VERB\n", "\n", "\n", - "\n", - " he\n", - " PRON\n", + "\n", + " a\n", + " DET\n", "\n", "\n", - "\n", - " will\n", - " AUX\n", + "\n", + " beast\n", + " NOUN\n", "\n", "\n", - "\n", - " remain\n", - " VERB\n", + "\n", + " for\n", + " ADP\n", "\n", "\n", - "\n", - " a\n", - " DET\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " beast\n", - " NOUN\n", + "\n", + " rest\n", + " NOUN\n", "\n", "\n", - "\n", - " for\n", - " ADP\n", + "\n", + " of\n", + " ADP\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " his\n", + " PRON\n", "\n", "\n", - "\n", - " rest\n", - " NOUN\n", + "\n", + " life,\n", + " NOUN\n", "\n", "\n", - "\n", - " of\n", - " ADP\n", + "\n", + " while\n", + " SCONJ\n", "\n", "\n", - "\n", - " his\n", - " PRON\n", + "\n", + " his\n", + " PRON\n", "\n", "\n", - "\n", - " life\n", - " NOUN\n", + "\n", + " servants\n", + " NOUN\n", "\n", "\n", - "\n", - " while\n", - " SCONJ\n", + "\n", + " will\n", + " AUX\n", "\n", "\n", - "\n", - " his\n", - " PRON\n", + "\n", + " become\n", + " VERB\n", "\n", "\n", - "\n", - " servants\n", - " NOUN\n", + "\n", + " inanimate\n", + " ADJ\n", "\n", "\n", - "\n", - " become\n", - " VERB\n", + "\n", + " objects.\n", + " PUNCT\n", "\n", "\n", - "\n", - " inanimate.\n", - " ADJ\n", + "\n", + " \n", + "\n", + " SPACE\n", "\n", "\n", "\n", - " \n", - " \n", - " nsubj\n", - " \n", - " \n", - "\n", - "\n", - "\n", - " \n", + " \n", " \n", - " det\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " ccomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubjpass\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " auxpass\n", + " nsubjpass\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " ccomp\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " auxpass\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " ccomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advcl\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " advcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " xcomp\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " xcomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " ccomp\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " ccomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " prt\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " amod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " amod\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " appos\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " advcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " attr\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " relcl\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " attr\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " advcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " amod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advcl\n", + " punct\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " acomp\n", + " dep\n", " \n", - " \n", + " \n", "\n", "" ], @@ -4729,699 +4779,1437 @@ { "data": { "text/html": [ - "\n", - "\n", + "\n", + "\n", " She\n", " PRON\n", "\n", "\n", - "\n", + "\n", " warns\n", " VERB\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", + "\n", " prince\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " that\n", " PRON\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", + "\n", " curse\n", " NOUN\n", "\n", "\n", - "\n", + "\n", " will\n", " AUX\n", "\n", "\n", - "\n", - " be\n", - " AUX\n", + "\n", + " only\n", + " ADV\n", "\n", "\n", - "\n", - " broken,\n", - " VERB\n", + "\n", + " be\n", + " AUX\n", "\n", "\n", - "\n", - " only\n", - " ADV\n", + "\n", + " broken\n", + " VERB\n", "\n", "\n", - "\n", + "\n", " if\n", " SCONJ\n", "\n", "\n", - "\n", + "\n", " he\n", " PRON\n", "\n", "\n", - "\n", - " can\n", - " AUX\n", + "\n", + " learns\n", + " VERB\n", "\n", "\n", - "\n", - " learn\n", - " VERB\n", + "\n", + " to\n", + " PART\n", "\n", "\n", - "\n", - " to\n", - " PART\n", + "\n", + " love\n", + " VERB\n", "\n", "\n", - "\n", - " love\n", - " VERB\n", + "\n", + " another\n", + " PRON\n", "\n", "\n", - "\n", - " another\n", - " PRON\n", + "\n", + " and\n", + " CCONJ\n", "\n", "\n", - "\n", - " and\n", - " CCONJ\n", + "\n", + " have\n", + " VERB\n", "\n", "\n", - "\n", - " have\n", - " VERB\n", + "\n", + " that\n", + " DET\n", "\n", "\n", - "\n", - " that\n", - " DET\n", + "\n", + " person\n", + " NOUN\n", "\n", "\n", - "\n", - " person\n", - " NOUN\n", + "\n", + " love\n", + " VERB\n", "\n", "\n", - "\n", - " love\n", - " VERB\n", + "\n", + " him\n", + " PRON\n", "\n", "\n", - "\n", - " him\n", - " PRON\n", + "\n", + " back\n", + " ADV\n", "\n", "\n", - "\n", - " in\n", + "\n", + " before\n", " ADP\n", "\n", "\n", - "\n", - " return\n", - " NOUN\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " by\n", - " ADP\n", + "\n", + " last\n", + " ADJ\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " petal\n", + " NOUN\n", "\n", "\n", - "\n", - " time\n", - " NOUN\n", + "\n", + " of\n", + " ADP\n", "\n", "\n", - "\n", + "\n", " the\n", " DET\n", "\n", "\n", - "\n", - " last\n", - " ADJ\n", + "\n", + " rose\n", + " NOUN\n", "\n", "\n", - "\n", - " petal\n", - " NOUN\n", + "\n", + " falls;\n", + " VERB\n", "\n", "\n", - "\n", - " of\n", - " ADP\n", + "\n", + " if\n", + " SCONJ\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " not,\n", + " PART\n", "\n", "\n", - "\n", - " rose\n", - " NOUN\n", + "\n", + " he\n", + " PRON\n", "\n", "\n", - "\n", - " falls,\n", - " VERB\n", + "\n", + " will\n", + " AUX\n", "\n", "\n", - "\n", - " or\n", - " CCONJ\n", + "\n", + " remain\n", + " VERB\n", "\n", "\n", - "\n", - " else\n", - " ADV\n", + "\n", + " a\n", + " DET\n", "\n", "\n", - "\n", - " he\n", - " PRON\n", + "\n", + " beast\n", + " NOUN\n", "\n", "\n", - "\n", - " will\n", - " AUX\n", + "\n", + " for\n", + " ADP\n", "\n", "\n", - "\n", - " remain\n", - " VERB\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " a\n", - " DET\n", + "\n", + " rest\n", + " NOUN\n", "\n", "\n", - "\n", - " beast\n", - " NOUN\n", + "\n", + " of\n", + " ADP\n", "\n", "\n", - "\n", - " for\n", - " ADP\n", + "\n", + " his\n", + " PRON\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " life,\n", + " NOUN\n", "\n", "\n", - "\n", - " rest\n", - " NOUN\n", + "\n", + " while\n", + " SCONJ\n", "\n", "\n", - "\n", - " of\n", - " ADP\n", + "\n", + " his\n", + " PRON\n", "\n", "\n", - "\n", - " his\n", - " PRON\n", + "\n", + " servants\n", + " NOUN\n", "\n", "\n", - "\n", - " life\n", - " NOUN\n", + "\n", + " will\n", + " AUX\n", "\n", "\n", - "\n", - " while\n", - " SCONJ\n", + "\n", + " become\n", + " VERB\n", "\n", "\n", - "\n", - " his\n", - " PRON\n", + "\n", + " inanimate\n", + " ADJ\n", "\n", "\n", - "\n", - " servants\n", - " NOUN\n", + "\n", + " objects.\n", + " PUNCT\n", "\n", "\n", - "\n", - " become\n", - " VERB\n", + "\n", + " \n", + "\n", + " SPACE\n", "\n", "\n", - "\n", - " inanimate.\n", - " ADJ\n", - "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " ccomp\n", + " \n", + " \n", + "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " nsubjpass\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubjpass\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " auxpass\n", + " auxpass\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " ccomp\n", + " ccomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " advcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advcl\n", + " xcomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " xcomp\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " ccomp\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " ccomp\n", + " prt\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " amod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " amod\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " appos\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " advcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " attr\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " relcl\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " attr\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " advcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " amod\n", " \n", - " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " punct\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " dep\n", + " \n", + " \n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[]\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "\n", + " She\n", + " PRON\n", + "\n", + "\n", + "\n", + " constantly\n", + " ADV\n", + "\n", + "\n", + "\n", + " brushes\n", + " VERB\n", + "\n", + "\n", + "\n", + " off\n", + " ADP\n", + "\n", + "\n", + "\n", + " advances\n", + " NOUN\n", + "\n", + "\n", + "\n", + " from\n", + " ADP\n", + "\n", + "\n", + "\n", + " Gaston,\n", + " PROPN\n", + "\n", + "\n", + "\n", + " an\n", + " DET\n", + "\n", + "\n", + "\n", + " arrogant\n", + " ADJ\n", + "\n", + "\n", + "\n", + " hunter\n", + " NOUN\n", + "\n", + "\n", + "\n", + " and\n", + " CCONJ\n", + "\n", + "\n", + "\n", + " war\n", + " NOUN\n", + "\n", + "\n", + "\n", + " veteran,\n", + " NOUN\n", + "\n", + "\n", + "\n", + " as\n", + " SCONJ\n", + "\n", + "\n", + "\n", + " he\n", + " PRON\n", + "\n", + "\n", + "\n", + " is\n", + " AUX\n", + "\n", + "\n", + "\n", + " not\n", + " PART\n", + "\n", + "\n", + "\n", + " the\n", + " DET\n", + "\n", + "\n", + "\n", + " type\n", + " NOUN\n", + "\n", + "\n", + "\n", + " of\n", + " ADP\n", + "\n", + "\n", + "\n", + " man\n", + " NOUN\n", + "\n", + "\n", + "\n", + " Belle\n", + " PROPN\n", + "\n", + "\n", + "\n", + " wishes\n", + " VERB\n", + "\n", + "\n", + "\n", + " to\n", + " PART\n", + "\n", + "\n", + "\n", + " marry.\n", + " VERB\n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " advmod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prt\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " dobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " amod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " appos\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " cc\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " compound\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " conj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " mark\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " advcl\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " neg\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " attr\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " appos\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " conj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " aux\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " xcomp\n", + " \n", + " \n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Belle', 'Maurice']\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "\n", + " Realizing\n", + " VERB\n", + "\n", + "\n", + "\n", + " that\n", + " SCONJ\n", + "\n", + "\n", + "\n", + " Belle\n", + " PROPN\n", + "\n", + "\n", + "\n", + " is\n", + " AUX\n", + "\n", + "\n", + "\n", + " in\n", + " ADP\n", + "\n", + "\n", + "\n", + " love\n", + " NOUN\n", + "\n", + "\n", + "\n", + " with\n", + " ADP\n", + "\n", + "\n", + "\n", + " the\n", + " DET\n", + "\n", + "\n", + "\n", + " Beast,\n", + " PROPN\n", + "\n", + "\n", + "\n", + " a\n", + " DET\n", + "\n", + "\n", + "\n", + " jealous\n", + " ADJ\n", + "\n", + "\n", + "\n", + " Gaston\n", + " PROPN\n", + "\n", + "\n", + "\n", + " claims\n", + " VERB\n", + "\n", + "\n", + "\n", + " she\n", + " PRON\n", + "\n", + "\n", + "\n", + " has\n", + " AUX\n", + "\n", + "\n", + "\n", + " been\n", + " AUX\n", + "\n", + "\n", + "\n", + " charmed\n", + " VERB\n", + "\n", + "\n", + "\n", + " by\n", + " ADP\n", + "\n", + "\n", + "\n", + " dark\n", + " ADJ\n", + "\n", + "\n", + "\n", + " magic\n", + " NOUN\n", + "\n", + "\n", + "\n", + " and\n", + " CCONJ\n", + "\n", + "\n", + "\n", + " has\n", + " AUX\n", + "\n", + "\n", + "\n", + " her\n", + " PRON\n", + "\n", + "\n", + "\n", + " thrown\n", + " VERB\n", + "\n", + "\n", + "\n", + " into\n", + " ADP\n", + "\n", + "\n", + "\n", + " the\n", + " DET\n", + "\n", + "\n", + "\n", + " asylum\n", + " NOUN\n", + "\n", + "\n", + "\n", + " carriage\n", + " NOUN\n", + "\n", + "\n", + "\n", + " with\n", + " ADP\n", + "\n", + "\n", + "\n", + " her\n", + " PRON\n", + "\n", + "\n", + "\n", + " father.\n", + " NOUN\n", + "\n", + "\n", + "\n", + " \n", + " \n", + " csubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " mark\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " ccomp\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " amod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " compound\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " appos\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubjpass\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " aux\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " auxpass\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " relcl\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " agent\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " amod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " cc\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " aux\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " compound\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advcl\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " acomp\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "" ], @@ -5436,302 +6224,406 @@ "name": "stdout", "output_type": "stream", "text": [ - "[]\n" + "['Gaston']\n" ] }, { "data": { "text/html": [ - "\n", + "\n", "\n", - " She\n", - " PRON\n", + " Realizing\n", + " VERB\n", "\n", "\n", "\n", - " constantly\n", - " ADV\n", + " that\n", + " SCONJ\n", "\n", "\n", "\n", - " brushes\n", - " VERB\n", + " Belle\n", + " PROPN\n", "\n", "\n", "\n", - " off\n", - " ADP\n", + " is\n", + " AUX\n", "\n", "\n", "\n", - " advances\n", - " NOUN\n", + " in\n", + " ADP\n", "\n", "\n", "\n", - " from\n", - " ADP\n", + " love\n", + " NOUN\n", "\n", "\n", "\n", - " Gaston,\n", - " PROPN\n", + " with\n", + " ADP\n", "\n", "\n", "\n", - " an\n", + " the\n", " DET\n", "\n", "\n", "\n", - " arrogant\n", - " ADJ\n", + " Beast,\n", + " PROPN\n", "\n", "\n", "\n", - " war\n", - " NOUN\n", + " a\n", + " DET\n", "\n", "\n", "\n", - " veteran\n", - " NOUN\n", + " jealous\n", + " ADJ\n", "\n", "\n", "\n", - " as\n", - " SCONJ\n", + " Gaston\n", + " PROPN\n", "\n", "\n", "\n", - " he\n", - " PRON\n", + " claims\n", + " VERB\n", "\n", "\n", "\n", - " is\n", - " AUX\n", + " she\n", + " PRON\n", "\n", "\n", "\n", - " not\n", - " PART\n", + " has\n", + " AUX\n", "\n", "\n", "\n", - " the\n", - " DET\n", + " been\n", + " AUX\n", "\n", "\n", "\n", - " type\n", - " NOUN\n", + " charmed\n", + " VERB\n", "\n", "\n", "\n", - " of\n", + " by\n", " ADP\n", "\n", "\n", "\n", - " man\n", - " NOUN\n", + " dark\n", + " ADJ\n", "\n", "\n", "\n", - " Belle\n", - " PROPN\n", + " magic\n", + " NOUN\n", "\n", "\n", "\n", - " wishes\n", - " VERB\n", + " and\n", + " CCONJ\n", "\n", "\n", "\n", - " to\n", - " PART\n", + " has\n", + " AUX\n", "\n", "\n", "\n", - " marry.\n", - " VERB\n", + " her\n", + " PRON\n", + "\n", + "\n", + "\n", + " thrown\n", + " VERB\n", + "\n", + "\n", + "\n", + " into\n", + " ADP\n", + "\n", + "\n", + "\n", + " the\n", + " DET\n", + "\n", + "\n", + "\n", + " asylum\n", + " NOUN\n", + "\n", + "\n", + "\n", + " carriage\n", + " NOUN\n", + "\n", + "\n", + "\n", + " with\n", + " ADP\n", + "\n", + "\n", + "\n", + " her\n", + " PRON\n", + "\n", + "\n", + "\n", + " father.\n", + " NOUN\n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " csubj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " mark\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prt\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " ccomp\n", " \n", - " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " pobj\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " prep\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " amod\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " compound\n", + " det\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " appos\n", + " amod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " compound\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " appos\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advcl\n", + " nsubjpass\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " neg\n", + " aux\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " auxpass\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " attr\n", + " relcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " agent\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " amod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " relcl\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " aux\n", + " aux\n", " \n", " \n", "\n", "\n", "\n", - " \n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " compound\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " poss\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", " \n", - " xcomp\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "" ], @@ -5746,589 +6638,575 @@ "name": "stdout", "output_type": "stream", "text": [ - "['Maurice']\n" + "['Gaston']\n" ] }, { "data": { "text/html": [ - "\n", - "\n", - " \n", - "\n", - " SPACE\n", + "\n", + "\n", + " As\n", + " SCONJ\n", "\n", "\n", - "\n", - " As\n", - " SCONJ\n", + "\n", + " Belle\n", + " PROPN\n", "\n", "\n", - "\n", - " Belle\n", - " PROPN\n", + "\n", + " tearfully\n", + " ADV\n", "\n", "\n", - "\n", - " tearfully\n", - " ADV\n", + "\n", + " professes\n", + " VERB\n", "\n", "\n", - "\n", - " professes\n", - " VERB\n", + "\n", + " her\n", + " PRON\n", "\n", "\n", - "\n", - " her\n", - " PRON\n", + "\n", + " love\n", + " NOUN\n", "\n", "\n", - "\n", - " love\n", - " NOUN\n", + "\n", + " to\n", + " ADP\n", "\n", "\n", - "\n", - " to\n", - " ADP\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " Beast,\n", + " PROPN\n", "\n", "\n", - "\n", - " Beast,\n", + "\n", + " Agathe\n", " PROPN\n", "\n", "\n", - "\n", - " Agathe\n", - " PROPN\n", + "\n", + " reveals\n", + " VERB\n", "\n", "\n", - "\n", - " reveals\n", - " VERB\n", + "\n", + " herself\n", + " PRON\n", "\n", "\n", - "\n", - " herself\n", - " PRON\n", + "\n", + " as\n", + " ADP\n", "\n", "\n", - "\n", - " as\n", - " ADP\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " enchantress\n", + " NOUN\n", "\n", "\n", - "\n", - " enchantress\n", - " NOUN\n", + "\n", + " and\n", + " CCONJ\n", "\n", "\n", - "\n", - " and\n", - " CCONJ\n", + "\n", + " undoes\n", + " VERB\n", "\n", "\n", - "\n", - " undoes\n", - " VERB\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " curse,\n", + " NOUN\n", "\n", "\n", - "\n", - " curse\n", - " NOUN\n", + "\n", + " which\n", + " PRON\n", "\n", "\n", - "\n", - " which\n", - " PRON\n", + "\n", + " repairs\n", + " VERB\n", "\n", "\n", - "\n", - " repairs\n", - " VERB\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " crumbling\n", + " VERB\n", "\n", "\n", - "\n", - " crumbling\n", - " VERB\n", + "\n", + " castle,\n", + " NOUN\n", "\n", "\n", - "\n", - " castle,\n", - " NOUN\n", + "\n", + " revives\n", + " VERB\n", "\n", "\n", - "\n", - " revives\n", - " VERB\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " Beast,\n", + " PROPN\n", "\n", "\n", - "\n", - " Beast\n", - " PROPN\n", + "\n", + " and\n", + " CCONJ\n", "\n", "\n", - "\n", - " and\n", - " CCONJ\n", + "\n", + " restores\n", + " VERB\n", "\n", "\n", - "\n", - " restores\n", - " VERB\n", + "\n", + " him\n", + " PRON\n", "\n", "\n", - "\n", - " him\n", - " PRON\n", + "\n", + " and\n", + " CCONJ\n", "\n", "\n", - "\n", - " and\n", - " CCONJ\n", + "\n", + " his\n", + " PRON\n", "\n", "\n", - "\n", - " his\n", - " PRON\n", + "\n", + " servants\n", + " NOUN\n", "\n", "\n", - "\n", - " servants\n", - " NOUN\n", + "\n", + " to\n", + " ADP\n", "\n", "\n", - "\n", - " to\n", - " ADP\n", + "\n", + " their\n", + " PRON\n", "\n", "\n", - "\n", - " their\n", - " PRON\n", + "\n", + " human\n", + " ADJ\n", "\n", "\n", - "\n", - " human\n", - " ADJ\n", + "\n", + " forms\n", + " NOUN\n", "\n", "\n", - "\n", - " forms\n", - " NOUN\n", + "\n", + " and\n", + " CCONJ\n", "\n", "\n", - "\n", - " and\n", - " CCONJ\n", + "\n", + " to\n", + " ADP\n", "\n", "\n", - "\n", - " to\n", - " ADP\n", + "\n", + " the\n", + " DET\n", "\n", "\n", - "\n", - " the\n", - " DET\n", + "\n", + " villagers'\n", + " NOUN\n", "\n", "\n", - "\n", - " villagers'\n", + "\n", + " memories\n", " NOUN\n", "\n", "\n", - "\n", - " memories\n", - " NOUN\n", + "\n", + " once\n", + " ADV\n", "\n", "\n", - "\n", - " once\n", + "\n", + " again.\n", " ADV\n", "\n", "\n", - "\n", - " again.\n", - " ADV\n", - "\n", - "\n", - "\n", - " \n", - " \n", - " dep\n", - " \n", - " \n", - "\n", - "\n", "\n", - " \n", + " \n", " \n", - " mark\n", + " mark\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advcl\n", + " advcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " csubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " nsubj\n", + " nsubj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " relcl\n", + " relcl\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " amod\n", + " amod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " dobj\n", + " dobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " prep\n", + " prep\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " amod\n", + " amod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " cc\n", + " cc\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " conj\n", + " conj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " det\n", + " det\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " poss\n", + " poss\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " pobj\n", + " pobj\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "\n", "\n", - " \n", + " \n", " \n", - " advmod\n", + " advmod\n", " \n", - " \n", + " \n", "\n", "" ], @@ -6343,7 +7221,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "['Agathe']\n" + "['Belle']\n" ] } ], @@ -6413,88 +7291,12 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "id": "afraid-guest", "metadata": { "scrolled": true }, - "outputs": [ - { - "data": { - "text/html": [ - "0 \n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " Beauty and the Beast\n", - " (1991)\n", - " \n", - "\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "1 \n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " Beauty and the Beast\n", - " (2017)\n", - " \n", - "\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "2 \n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " Beauty and the Beast\n", - " (2009)\n", - " \n", - "\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "Select wanted index:1\n", - "ID of the movie: 321612\n" - ] - } - ], + "outputs": [], "source": [ "# To get movies data from TMDb, we need to find the movie's ID.\n", "\n", @@ -6844,7 +7646,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -6858,7 +7660,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.5" + "version": "3.10.7" } }, "nbformat": 4, diff --git a/notebooks/age_gap/age_gap_automation.py b/notebooks/age_gap/age_gap_automation.py new file mode 100644 index 0000000..cacfbdb --- /dev/null +++ b/notebooks/age_gap/age_gap_automation.py @@ -0,0 +1,87 @@ +import sys +sys.path.append("../..") +import bechdelai.data.wikipedia as wiki +import bechdelai.data.tmdb as tmdb +import process_couples as pc +import outputformat as ouf +import pandas as pd +from datetime import datetime +import requests +import io +import spacy +from spacy import displacy +from spacy.matcher import Matcher +from spacy.tokens import Span +from spacy.matcher import PhraseMatcher +from pathlib import Path + + +class Movie: + def __init__(self, title, release_year=None): + self.title = title + self.release_year = release_year + self.plot = self.get_plot() + self.cast_wiki = self.get_cast_wiki() + self.cast = self.get_cast_tmdb() + + def __repr__(self): + return self.__str__() + + def __str__(self): + return "Film : {}".format(self.title) + + def get_plot(self): + for query_suffix in [' ('+str(self.release_year)+' film)',' (film)','']: + try: + return wiki.get_section_text(self.title+query_suffix, ['Plot'])['Plot'] # to improve + except ValueError: + continue + return None + + def get_cast_wiki(self): + return pc.get_cast_from_wikipedia(self.title,self.release_year) + + def get_cast_tmdb(self): + movie_id = tmdb.get_best_tmdb_id(self.title,self.release_year) + + # get casting data + data = tmdb.get_movie_cast_from_id(movie_id) + tmdb_cast = pd.DataFrame(data["cast"]) + wiki_cast = self.cast_wiki + cast_df = pc.correct_cast_with_wikipedia(tmdb_cast,wiki_cast) + + # only use simple quotation marks' + cast_df.replace(regex=r'\"',value="'",inplace=True) + + #remove any accents + cast_df['name'] = cast_df['name'].str.normalize('NFKD').str.encode('ascii', errors='ignore').str.decode('utf-8') + cast_df['character'] = cast_df['character'].str.normalize('NFKD').str.encode('ascii', errors='ignore').str.decode('utf-8') + + # get release date + release_date = tmdb.get_movie_details_from_id(movie_id)['release_date'] + release_date = datetime.strptime(release_date, '%Y-%m-%d') + # complete with actors/actress ages + cast_df['age_at_release'] = pc.compute_cast_age(cast_df,release_date) + + return cast_df + +def main(): + verbs = ['kisses', 'sleeps with', 'goes on a date with', 'has sex with', 'marries', 'is in love with','is in couple with', + 'is the father of', 'is the mother of','is a friend of', 'is in the family of', 'is the enemy of'] + hp4 = Movie("Harry Potter and the Goblet of Fire",2005) + ans = pc.compute_relationships_in_movie(hp4, verbs) + ans.to_csv('hp4.csv') + + call_me = Movie("Call Me by Your Name",2017) + ans = pc.compute_relationships_in_movie(call_me.cast,call_me.plot, verbs) + ans.to_csv('call_me.csv') + + lebowski = Movie("The Big Lebowski",1998) + ans = pc.compute_relationships_in_movie(lebowski.cast,lebowski.plot, verbs) + ans.to_csv('lebowski.csv') + + print(ans) + + +if __name__ == "__main__": + main() diff --git a/notebooks/age_gap/age_gap_visualisation.py b/notebooks/age_gap/age_gap_visualisation.py new file mode 100644 index 0000000..f15a450 --- /dev/null +++ b/notebooks/age_gap/age_gap_visualisation.py @@ -0,0 +1,99 @@ +import sys +sys.path.append("../..") +from age_gap_automation import Movie +import process_couples as pc +import bechdelai.data.wikipedia as wiki +import bechdelai.data.tmdb as tmdb + +import streamlit as st +import pandas as pd +import plotly.express as px + +MOVIE_FILES = {"Harry Potter and the Goblet of Fire":"hp4.csv", + "Call me by your name":"call_me.csv", + "The Big Lebowski":"lebowski.csv", + "Love Actually":"love_actually.csv"} +MOVIE_YEARS = {"Harry Potter and the Goblet of Fire":2005, + "Call me by your name":2017, + "The Big Lebowski":1998, + "Love Actually":2003} + +VERBS = ['kisses', 'sleeps with', 'goes on a date with', 'has sex with', 'marries', 'is in love with','is in couple with', 'is the father of', 'is the mother of'] +LOVE_VERBS = ['kisses', 'sleeps with', 'goes on a date with', 'has sex with', 'marries', 'is in love with','is in couple with'] + +@st.cache +def load_data_from_file(file): + return pd.read_csv(file) +def load_data(movie): + return pc.compute_relationships_in_movie(movie.cast,movie.plot, VERBS) + + +def main(): + st.set_page_config(layout="wide") + title = st.selectbox("Choose a movie:",list(MOVIE_FILES.keys())) + st.title(title) + st.subheader('Romantic relationships') + + + movie = Movie(title,MOVIE_YEARS[title]) + cast = movie.cast + + try: + scores = load_data_from_file(MOVIE_FILES[title]) + except FileNotFoundError: + with st.spinner('Wait for it...'): + scores = load_data(movie) + + scores.sort_values('score',ascending=False,inplace=True) + scores.drop_duplicates(['star1','star2'],keep='first',inplace=True) # TO DO: avoid duplicates when star1 and star2 are inversed + + count=0 + for i,row in scores.iterrows(): + + if row.question not in LOVE_VERBS: + continue + + if (count==10) | (row.score<0.7): + break + + star_younger = {'name':row.star1, + 'character':row.character1, + 'age':cast[cast.name==row.star1]['age_at_release'].iloc[0], + 'gender':cast[cast.name==row.star1]['gender'].iloc[0], + 'image' : tmdb.get_person_image_from_id(row.star_id1)["profiles"][0]["file_path"] } + star_older = {'name':row.star2, + 'character':row.character2, + 'age':cast[cast.name==row.star2]['age_at_release'].iloc[0], + 'gender':cast[cast.name==row.star2]['gender'].iloc[0], + 'image' : tmdb.get_person_image_from_id(row.star_id2)["profiles"][0]["file_path"] } + + if star_younger['age'] > star_older['age']: + star_aux = star_younger + star_younger = star_older + star_older = star_aux + + + + st.subheader('{} and {}'.format(star_younger['character'], star_older['character'])) + st.write('They were played by {} and {} respectively. '.format(star_younger['name'], star_older['name'])) + st.write('Age gap: ' ,row.age_gap) + + col1, col2, col3,col4,col5 = st.columns([1.5,5,1.5,2,10]) + col1.image('https://image.tmdb.org/t/p/original'+star_younger['image'],width=100) + + + values = col2.slider( + '', + 10, 50, + (star_younger['age'], star_older['age']), + disabled=True, key = "slider_"+str(i)) + + col3.image('https://image.tmdb.org/t/p/original'+star_older['image'],width=100) + + # relationship_true = col4.radio('Is this relationship true?', ['Yes', 'No'],key = "radio_"+str(i)) + count+=1 + + + +if __name__ == "__main__": + main() diff --git a/notebooks/age_gap/call_me.csv b/notebooks/age_gap/call_me.csv new file mode 100644 index 0000000..8b745ac --- /dev/null +++ b/notebooks/age_gap/call_me.csv @@ -0,0 +1,120 @@ +,character1,star1,star_id1,character2,star2,star_id2,age_gap,genders,question,score +0,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",kisses,0.02236003242433071 +1,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",kisses,0.0007649442995898426 +2,Marzia,Esther Garrel,935096,Oliver,Armie Hammer,53807,5,"[1, 2]",kisses,1.4268149243434891e-05 +3,Chiara,Victoire Du Bois,1592949,Oliver,Armie Hammer,53807,2,"[1, 2]",kisses,0.002751606749370694 +4,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",sleeps with,0.04277012497186661 +5,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",sleeps with,0.0009387790923938155 +6,Marzia,Esther Garrel,935096,Chiara,Victoire Du Bois,1592949,3,"[1, 1]",sleeps with,0.00011967406317126006 +7,Chiara,Victoire Du Bois,1592949,Oliver,Armie Hammer,53807,2,"[1, 2]",sleeps with,0.00028898753225803375 +8,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",goes on a date with,0.3888755440711975 +9,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",goes on a date with,0.0607670433819294 +10,Marzia,Esther Garrel,935096,Chiara,Victoire Du Bois,1592949,3,"[1, 1]",goes on a date with,0.0006294557242654264 +11,Chiara,Victoire Du Bois,1592949,Oliver,Armie Hammer,53807,2,"[1, 2]",goes on a date with,0.015255258418619633 +12,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",has sex with,0.09270702302455902 +13,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",has sex with,0.008619340136647224 +14,Marzia,Esther Garrel,935096,Chiara,Victoire Du Bois,1592949,3,"[1, 1]",has sex with,0.0005330116837285459 +15,Chiara,Victoire Du Bois,1592949,Oliver,Armie Hammer,53807,2,"[1, 2]",has sex with,0.012631401419639587 +16,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",marries,0.03229735419154167 +17,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",marries,7.398950401693583e-05 +18,Marzia,Esther Garrel,935096,Chiara,Victoire Du Bois,1592949,3,"[1, 1]",marries,4.124765382584883e-06 +19,Chiara,Victoire Du Bois,1592949,Oliver,Armie Hammer,53807,2,"[1, 2]",marries,0.0007251027273014188 +20,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is in love with,0.2001882791519165 +21,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is in love with,0.023129703477025032 +22,Marzia,Esther Garrel,935096,Chiara,Victoire Du Bois,1592949,3,"[1, 1]",is in love with,0.00010153980838367715 +23,Chiara,Victoire Du Bois,1592949,Oliver,Armie Hammer,53807,2,"[1, 2]",is in love with,0.007702960632741451 +24,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is in couple with,0.43657150864601135 +25,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is in couple with,0.020631933584809303 +26,Marzia,Esther Garrel,935096,Chiara,Victoire Du Bois,1592949,3,"[1, 1]",is in couple with,0.008215224370360374 +27,Chiara,Victoire Du Bois,1592949,Marzia,Esther Garrel,935096,3,"[1, 1]",is in couple with,0.003509797155857086 +28,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is the father of,0.5259777903556824 +29,Marzia,Esther Garrel,935096,Oliver,Armie Hammer,53807,5,"[1, 2]",is the father of,2.5519224436720833e-05 +30,Chiara,Victoire Du Bois,1592949,Oliver,Armie Hammer,53807,2,"[1, 2]",is the father of,0.03233768418431282 +31,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is the mother of,0.12548860907554626 +32,Oliver,Armie Hammer,53807,Chiara,Victoire Du Bois,1592949,2,"[2, 1]",is the mother of,0.11599305272102356 +33,Marzia,Esther Garrel,935096,Chiara,Victoire Du Bois,1592949,3,"[1, 1]",is the mother of,0.04947645589709282 +34,Chiara,Victoire Du Bois,1592949,Marzia,Esther Garrel,935096,3,"[1, 1]",is the mother of,0.027551816776394844 +35,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",kisses,0.10076455771923065 +36,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",kisses,0.19742852449417114 +37,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",sleeps with,0.07505451887845993 +38,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",sleeps with,0.13907377421855927 +39,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",goes on a date with,0.29502007365226746 +40,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",goes on a date with,0.6160463690757751 +41,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",has sex with,0.17865267395973206 +42,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",has sex with,0.5076314806938171 +43,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",marries,0.09146878868341446 +44,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",marries,0.16978126764297485 +45,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is in love with,0.2670007646083832 +46,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is in love with,0.3343277871608734 +47,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is in couple with,0.28952470421791077 +48,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is in couple with,0.8307359218597412 +49,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is the father of,0.21022772789001465 +50,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is the father of,0.25225821137428284 +51,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is the mother of,0.06736142933368683 +52,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is the mother of,0.013932377099990845 +53,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",kisses,0.13455313444137573 +54,Oliver,Armie Hammer,53807,Marzia,Esther Garrel,935096,5,"[2, 1]",kisses,0.00045860803220421076 +55,Marzia,Esther Garrel,935096,Oliver,Armie Hammer,53807,5,"[1, 2]",kisses,0.02125117927789688 +56,Elio Perlman,Timothee Chalamet,1190668,Marzia,Esther Garrel,935096,5,"[2, 1]",sleeps with,0.10003423690795898 +57,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",sleeps with,0.03252045437693596 +58,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",sleeps with,0.12104752659797668 +59,Elio Perlman,Timothee Chalamet,1190668,Marzia,Esther Garrel,935096,5,"[2, 1]",goes on a date with,0.4257059395313263 +60,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",goes on a date with,0.000293028075248003 +61,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",goes on a date with,0.9579336047172546 +62,Elio Perlman,Timothee Chalamet,1190668,Marzia,Esther Garrel,935096,5,"[2, 1]",has sex with,0.7748692035675049 +63,Oliver,Armie Hammer,53807,Marzia,Esther Garrel,935096,5,"[2, 1]",has sex with,0.10227644443511963 +64,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",has sex with,0.7969797849655151 +65,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",marries,0.14931027591228485 +66,Oliver,Armie Hammer,53807,Marzia,Esther Garrel,935096,5,"[2, 1]",marries,0.0013900812482461333 +67,Marzia,Esther Garrel,935096,Oliver,Armie Hammer,53807,5,"[1, 2]",marries,0.02367883361876011 +68,Elio Perlman,Timothee Chalamet,1190668,Marzia,Esther Garrel,935096,5,"[2, 1]",is in love with,0.43704742193222046 +69,Oliver,Armie Hammer,53807,Marzia,Esther Garrel,935096,5,"[2, 1]",is in love with,0.0055237398482859135 +70,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",is in love with,0.37938961386680603 +71,Elio Perlman,Timothee Chalamet,1190668,Marzia,Esther Garrel,935096,5,"[2, 1]",is in couple with,0.557980477809906 +72,Oliver,Armie Hammer,53807,Marzia,Esther Garrel,935096,5,"[2, 1]",is in couple with,0.03585173189640045 +73,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",is in couple with,0.6791297197341919 +74,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is the father of,0.2202511578798294 +75,Marzia,Esther Garrel,935096,Oliver,Armie Hammer,53807,5,"[1, 2]",is the father of,0.17457473278045654 +76,Elio Perlman,Timothee Chalamet,1190668,Marzia,Esther Garrel,935096,5,"[2, 1]",is the mother of,0.5952123403549194 +77,Oliver,Armie Hammer,53807,Marzia,Esther Garrel,935096,5,"[2, 1]",is the mother of,0.41029781103134155 +78,Marzia,Esther Garrel,935096,Oliver,Armie Hammer,53807,5,"[1, 2]",is the mother of,0.02427743934094906 +79,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",kisses,0.0020706665236502886 +80,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",kisses,0.004697057418525219 +81,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",kisses,3.321611359297094e-07 +82,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",sleeps with,0.002790112281218171 +83,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",sleeps with,0.0135112963616848 +84,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",sleeps with,2.945882215499296e-06 +85,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",goes on a date with,0.03919660300016403 +86,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",goes on a date with,0.3215752840042114 +87,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",goes on a date with,0.0003413085069041699 +88,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",has sex with,0.026333075016736984 +89,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",has sex with,0.08562426269054413 +90,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",has sex with,1.2786406841769349e-05 +91,Elio Perlman,Timothee Chalamet,1190668,Marzia,Esther Garrel,935096,5,"[2, 1]",marries,0.0010200577089563012 +92,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",marries,0.0007732471567578614 +93,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is in love with,0.0161771010607481 +94,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is in love with,0.5447942018508911 +95,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",is in love with,6.03783228143584e-05 +96,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is in couple with,0.030560018494725227 +97,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is in couple with,0.5960243940353394 +98,Marzia,Esther Garrel,935096,Elio,Timothee Chalamet,1190668,5,"[1, 2]",is in couple with,0.00011836746853077784 +99,Elio Perlman,Timothee Chalamet,1190668,Marzia,Esther Garrel,935096,5,"[2, 1]",is the mother of,0.559446394443512 +100,Oliver,Armie Hammer,53807,Marzia,Esther Garrel,935096,5,"[2, 1]",is the mother of,0.552978515625 +101,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",kisses,0.016442585736513138 +102,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",kisses,0.0003071910177823156 +103,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",sleeps with,0.01946844905614853 +104,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",sleeps with,0.0007810596143826842 +105,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",goes on a date with,0.2931804955005646 +106,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",goes on a date with,0.03769794479012489 +107,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",has sex with,0.11095784604549408 +108,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",has sex with,0.013328115455806255 +109,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",marries,0.2801448702812195 +110,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",marries,0.052401352673769 +111,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is in love with,0.1375037133693695 +112,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is in love with,0.1022619754076004 +113,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is in couple with,0.4212566316127777 +114,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is in couple with,0.3477884531021118 +115,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is the father of,0.38226503133773804 +116,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is the father of,0.04459923505783081 +117,Elio Perlman,Timothee Chalamet,1190668,Oliver,Armie Hammer,53807,10,"[2, 2]",is the mother of,0.047591473907232285 +118,Oliver,Armie Hammer,53807,Elio,Timothee Chalamet,1190668,10,"[2, 2]",is the mother of,0.2847294211387634 diff --git a/notebooks/age_gap/hollywood_age_gap_visualization.py b/notebooks/age_gap/hollywood_age_gap_visualization.py new file mode 100644 index 0000000..d64576c --- /dev/null +++ b/notebooks/age_gap/hollywood_age_gap_visualization.py @@ -0,0 +1,53 @@ +import streamlit as st +import pandas as pd +import plotly.express as px + +DATA_URL = 'http://hollywoodagegap.com/movies.csv' + + +@st.cache +def load_data(): + return pd.read_csv(DATA_URL) + + +def define_the_oldest(df): + gender_list = [] + for index, row in df.iterrows(): + if row["Actor 1 Age"] > row["Actor 2 Age"]: + gender_list.append(row["Actor 1 Gender"]) + elif row["Actor 2 Age"] > row["Actor 1 Age"]: + gender_list.append(row["Actor 2 Gender"]) + else: + gender_list.append("same") + return gender_list + + +def main(): + st.set_page_config(layout="wide") + st.title('Hollywood Age Gap') + raw_data = load_data() + + if st.checkbox('Show raw data'): + st.subheader('Raw data') + st.write(raw_data) + + st.subheader('Age Gap Visualization') + data = raw_data.copy() + data["Is_hetero"] = data["Actor 2 Gender"] != data["Actor 1 Gender"] + data["Gender of the oldest"] = define_the_oldest(data) + fig = px.histogram(data, x="Age Difference", + color="Gender of the oldest", + marginal="box", + hover_data=data.columns, + color_discrete_map={ + "woman": "#f9ac23", + "man": "#2fd3D3", + "same": "#000000" + }, + template="seaborn" + ) + st.plotly_chart(fig, use_container_width=True) + + +if __name__ == "__main__": + main() diff --git a/notebooks/age_gap/hp4.csv b/notebooks/age_gap/hp4.csv new file mode 100644 index 0000000..a0fb862 --- /dev/null +++ b/notebooks/age_gap/hp4.csv @@ -0,0 +1,920 @@ +,character1,star1,star_id1,character2,star2,star_id2,age_gap,genders,question,score +0,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",kisses,4.47561342298286e-06 +1,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",kisses,1.455400251870742e-05 +2,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",kisses,2.174403164190153e-07 +3,Cedric Diggory,Robert Pattinson,11288,Hermione,Emma Watson,10990,4,"[2, 1]",kisses,1.908249032567255e-06 +4,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",kisses,9.339233656646684e-05 +5,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",kisses,3.153905083763675e-07 +6,Lily Potter,Geraldine Somerville,10988,Peter Pettigrew,Timothy Spall,9191,10,"[1, 2]",kisses,2.1712864395340148e-08 +7,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",sleeps with,1.6545182006666437e-06 +8,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",sleeps with,0.0001544667175039649 +9,Peter Pettigrew,Timothy Spall,9191,Lord Voldemort,Ralph Fiennes,5469,6,"[2, 2]",sleeps with,3.040828744360624e-07 +10,Cedric Diggory,Robert Pattinson,11288,Hermione,Emma Watson,10990,4,"[2, 1]",sleeps with,2.1088592347950907e-06 +11,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",sleeps with,0.00011511822958709672 +12,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",sleeps with,1.3898761608288623e-07 +13,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",goes on a date with,0.0027546698693186045 +14,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",goes on a date with,2.033945929724723e-05 +15,Cedric Diggory,Robert Pattinson,11288,Hermione,Emma Watson,10990,4,"[2, 1]",goes on a date with,9.631505236029625e-05 +16,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",goes on a date with,0.023754741996526718 +17,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",goes on a date with,1.1118241900476278e-06 +18,Lily Potter,Geraldine Somerville,10988,Hermione,Emma Watson,10990,23,"[1, 1]",goes on a date with,2.1909525571572885e-07 +19,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",has sex with,6.220355317054782e-06 +20,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",has sex with,0.0002409464359516278 +21,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",has sex with,3.167422164551681e-06 +22,Cedric Diggory,Robert Pattinson,11288,Hermione,Emma Watson,10990,4,"[2, 1]",has sex with,4.370045644463971e-06 +23,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",has sex with,0.0005312315770424902 +24,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",has sex with,1.6284937487398565e-07 +25,Lily Potter,Geraldine Somerville,10988,Harry Potter,Daniel Radcliffe,10980,22,"[1, 2]",has sex with,2.1642920344788763e-08 +26,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",marries,7.759672735119238e-05 +27,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",marries,1.1002644129121109e-07 +28,Cedric Diggory,Robert Pattinson,11288,Hermione,Emma Watson,10990,4,"[2, 1]",marries,1.1045082146665663e-06 +29,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",marries,0.0001101656089304015 +30,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",marries,4.867262504149039e-08 +31,Harry Potter,Daniel Radcliffe,10980,Hermione,Emma Watson,10990,1,"[2, 1]",is in love with,7.768129762553144e-06 +32,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is in love with,6.378209218382835e-05 +33,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",is in love with,2.5453684884269023e-06 +34,Cedric Diggory,Robert Pattinson,11288,Hermione,Emma Watson,10990,4,"[2, 1]",is in love with,2.0059180315001868e-05 +35,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",is in love with,0.0007070263382047415 +36,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",is in love with,1.2496870738232246e-07 +37,Lily Potter,Geraldine Somerville,10988,Harry Potter,Daniel Radcliffe,10980,22,"[1, 2]",is in love with,5.621307153091948e-08 +38,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is in couple with,0.002135380171239376 +39,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",is in couple with,2.30296664085472e-05 +40,Cedric Diggory,Robert Pattinson,11288,Amos,Jeff Rawle,81022,35,"[2, 2]",is in couple with,4.723341771750711e-05 +41,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",is in couple with,0.05119556188583374 +42,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",is in couple with,4.493775577429915e-06 +43,Lily Potter,Geraldine Somerville,10988,Hermione,Emma Watson,10990,23,"[1, 1]",is in couple with,3.560064953944675e-07 +44,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",is the father of,0.011384121142327785 +45,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is the father of,0.009184175170958042 +46,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",is the father of,0.00010716285032685846 +47,Cedric Diggory,Robert Pattinson,11288,Amos,Jeff Rawle,81022,35,"[2, 2]",is the father of,0.012060464359819889 +48,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",is the father of,0.6319891214370728 +49,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",is the father of,9.215589670930058e-05 +50,Lily Potter,Geraldine Somerville,10988,Harry Potter,Daniel Radcliffe,10980,22,"[1, 2]",is the father of,0.0004176498332526535 +51,Harry Potter,Daniel Radcliffe,10980,Hermione,Emma Watson,10990,1,"[2, 1]",is the mother of,0.0026925201527774334 +52,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is the mother of,0.000136193644721061 +53,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",is the mother of,4.239382178639062e-08 +54,Cedric Diggory,Robert Pattinson,11288,Hermione,Emma Watson,10990,4,"[2, 1]",is the mother of,0.0006089386879466474 +55,Amos Diggory,Jeff Rawle,81022,Hermione,Emma Watson,10990,39,"[2, 1]",is the mother of,0.0005026301369071007 +56,James Potter,Adrian Rawlins,1643,Hermione,Emma Watson,10990,32,"[2, 1]",is the mother of,5.515257726074196e-06 +57,Lily Potter,Geraldine Somerville,10988,Hermione,Emma Watson,10990,23,"[1, 1]",is the mother of,4.521578205185506e-07 +58,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",is a friend of,0.00099365774076432 +59,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is a friend of,0.012720410712063313 +60,Peter Pettigrew,Timothy Spall,9191,Harry Potter,Daniel Radcliffe,10980,32,"[2, 2]",is a friend of,1.1025021962041137e-07 +61,Cedric Diggory,Robert Pattinson,11288,Amos,Jeff Rawle,81022,35,"[2, 2]",is a friend of,0.004546609707176685 +62,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",is a friend of,0.05876646935939789 +63,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",is a friend of,2.0433175450307317e-05 +64,Lily Potter,Geraldine Somerville,10988,Peter Pettigrew,Timothy Spall,9191,10,"[1, 2]",is a friend of,6.573093855877232e-07 +65,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is in the family of,0.0019050290575250983 +66,Peter Pettigrew,Timothy Spall,9191,Lord Voldemort,Ralph Fiennes,5469,6,"[2, 2]",is in the family of,4.2595394916133955e-05 +67,Cedric Diggory,Robert Pattinson,11288,Amos,Jeff Rawle,81022,35,"[2, 2]",is in the family of,2.2684878786094487e-05 +68,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",is in the family of,0.06659944355487823 +69,James Potter,Adrian Rawlins,1643,Peter Pettigrew,Timothy Spall,9191,1,"[2, 2]",is in the family of,6.563222996192053e-07 +70,Harry Potter,Daniel Radcliffe,10980,Lord Voldemort,Ralph Fiennes,5469,26,"[2, 2]",is the enemy of,0.16649380326271057 +71,Hermione Granger,Emma Watson,10990,Lord Voldemort,Ralph Fiennes,5469,27,"[1, 2]",is the enemy of,2.015203244809527e-05 +72,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is the enemy of,0.012186867184937 +73,Peter Pettigrew,Timothy Spall,9191,Lord Voldemort,Ralph Fiennes,5469,6,"[2, 2]",is the enemy of,0.008456787094473839 +74,James Potter,Adrian Rawlins,1643,Lord Voldemort,Ralph Fiennes,5469,5,"[2, 2]",is the enemy of,5.3465875680558383e-05 +75,Lily Potter,Geraldine Somerville,10988,Lord Voldemort,Ralph Fiennes,5469,4,"[1, 2]",is the enemy of,3.93550135413534e-06 +76,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",kisses,0.0003820952260866761 +77,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",kisses,4.6995151933515444e-05 +78,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",kisses,1.9412846086197533e-05 +79,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",kisses,1.922367482620757e-05 +80,Cedric Diggory,Robert Pattinson,11288,Viktor Krum,Stanislav Yanevski,11290,1,"[2, 2]",kisses,1.2638426596822683e-05 +81,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",kisses,5.090504600957502e-06 +82,Amos Diggory,Jeff Rawle,81022,Viktor Krum,Stanislav Yanevski,11290,34,"[2, 2]",kisses,6.051621994629386e-07 +83,Gabrielle Delacour,Angelica Mandy,1090780,Cedric Diggory,Robert Pattinson,11288,6,"[1, 2]",kisses,1.7450338418711908e-05 +84,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",sleeps with,0.003093206789344549 +85,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",sleeps with,0.0002447192382533103 +86,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",sleeps with,6.957091045478592e-06 +87,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",sleeps with,1.2331899597484153e-05 +88,Cedric Diggory,Robert Pattinson,11288,Viktor Krum,Stanislav Yanevski,11290,1,"[2, 2]",sleeps with,1.5826431990717538e-05 +89,Fleur Delacour,Clemence Poesy,11291,Viktor Krum,Stanislav Yanevski,11290,3,"[1, 2]",sleeps with,3.3499475193821127e-06 +90,Amos Diggory,Jeff Rawle,81022,Viktor Krum,Stanislav Yanevski,11290,34,"[2, 2]",sleeps with,4.4812270516558783e-07 +91,Gabrielle Delacour,Angelica Mandy,1090780,Cedric Diggory,Robert Pattinson,11288,6,"[1, 2]",sleeps with,3.170012860209681e-06 +92,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",goes on a date with,0.04613868519663811 +93,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",goes on a date with,0.001500520738773048 +94,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",goes on a date with,0.00014096013910602778 +95,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",goes on a date with,0.00021479562565218657 +96,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",goes on a date with,0.003800950711593032 +97,Fleur Delacour,Clemence Poesy,11291,Cedric Diggory,Robert Pattinson,11288,4,"[1, 2]",goes on a date with,0.00016649102326482534 +98,Amos Diggory,Jeff Rawle,81022,Cedric Diggory,Robert Pattinson,11288,35,"[2, 2]",goes on a date with,2.0052808395121247e-05 +99,Gabrielle Delacour,Angelica Mandy,1090780,Cedric Diggory,Robert Pattinson,11288,6,"[1, 2]",goes on a date with,0.00011024035484297201 +100,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",has sex with,0.01898111402988434 +101,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",has sex with,0.0017102410783991218 +102,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",has sex with,0.0002591892844066024 +103,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",has sex with,0.00013958342606201768 +104,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",has sex with,0.0017782755894586444 +105,Fleur Delacour,Clemence Poesy,11291,Cedric Diggory,Robert Pattinson,11288,4,"[1, 2]",has sex with,8.702478226041421e-05 +106,Amos Diggory,Jeff Rawle,81022,Harry,Daniel Radcliffe,10980,38,"[2, 2]",has sex with,2.021978798438795e-05 +107,Gabrielle Delacour,Angelica Mandy,1090780,Cedric Diggory,Robert Pattinson,11288,6,"[1, 2]",has sex with,0.00011067571904277429 +108,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",marries,0.00040150689892470837 +109,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",marries,2.330706047359854e-05 +110,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",marries,4.806376523447398e-07 +111,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",marries,3.5776340610027546e-06 +112,Cedric Diggory,Robert Pattinson,11288,Viktor Krum,Stanislav Yanevski,11290,1,"[2, 2]",marries,0.00011002185055986047 +113,Fleur Delacour,Clemence Poesy,11291,Viktor Krum,Stanislav Yanevski,11290,3,"[1, 2]",marries,1.0194842161581619e-06 +114,Amos Diggory,Jeff Rawle,81022,Viktor Krum,Stanislav Yanevski,11290,34,"[2, 2]",marries,3.3099286156357266e-06 +115,Gabrielle Delacour,Angelica Mandy,1090780,Viktor Krum,Stanislav Yanevski,11290,7,"[1, 2]",marries,6.194730985953356e-07 +116,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in love with,0.009393984451889992 +117,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in love with,0.00035212887451052666 +118,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is in love with,7.813492265995592e-05 +119,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",is in love with,9.407724974153098e-06 +120,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in love with,0.0010366033529862761 +121,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",is in love with,5.173892532184254e-06 +122,Amos Diggory,Jeff Rawle,81022,Harry,Daniel Radcliffe,10980,38,"[2, 2]",is in love with,6.417303666239604e-06 +123,Gabrielle Delacour,Angelica Mandy,1090780,Cedric Diggory,Robert Pattinson,11288,6,"[1, 2]",is in love with,3.239689704059856e-06 +124,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in couple with,0.013528996147215366 +125,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in couple with,0.002264125272631645 +126,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is in couple with,0.00017984486476052552 +127,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",is in couple with,5.022379627916962e-05 +128,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in couple with,0.0016700292471796274 +129,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",is in couple with,3.1634888728149235e-05 +130,Amos Diggory,Jeff Rawle,81022,Cedric Diggory,Robert Pattinson,11288,35,"[2, 2]",is in couple with,2.1303712856024504e-05 +131,Gabrielle Delacour,Angelica Mandy,1090780,Cedric Diggory,Robert Pattinson,11288,6,"[1, 2]",is in couple with,1.5992451153579168e-05 +132,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is the father of,0.013133944943547249 +133,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the father of,0.00823886413127184 +134,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",is the father of,0.0012590712867677212 +135,Cedric Diggory,Robert Pattinson,11288,Viktor Krum,Stanislav Yanevski,11290,1,"[2, 2]",is the father of,0.27382904291152954 +136,Fleur Delacour,Clemence Poesy,11291,Viktor Krum,Stanislav Yanevski,11290,3,"[1, 2]",is the father of,0.004854883532971144 +137,Amos Diggory,Jeff Rawle,81022,Cedric,Robert Pattinson,11288,35,"[2, 2]",is the father of,0.032532915472984314 +138,Gabrielle Delacour,Angelica Mandy,1090780,Viktor Krum,Stanislav Yanevski,11290,7,"[1, 2]",is the father of,0.004438083618879318 +139,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is the mother of,0.003264789469540119 +140,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the mother of,0.001361371949315071 +141,Viktor Krum,Stanislav Yanevski,11290,Fleur Delacour,Clemence Poesy,11291,3,"[2, 1]",is the mother of,9.117067747865804e-06 +142,Cedric Diggory,Robert Pattinson,11288,Viktor Krum,Stanislav Yanevski,11290,1,"[2, 2]",is the mother of,0.0061165401712059975 +143,Fleur Delacour,Clemence Poesy,11291,Viktor Krum,Stanislav Yanevski,11290,3,"[1, 2]",is the mother of,7.575440395157784e-05 +144,Amos Diggory,Jeff Rawle,81022,Viktor Krum,Stanislav Yanevski,11290,34,"[2, 2]",is the mother of,1.6827239960548468e-05 +145,Gabrielle Delacour,Angelica Mandy,1090780,Viktor Krum,Stanislav Yanevski,11290,7,"[1, 2]",is the mother of,4.58624454040546e-05 +146,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is a friend of,0.007053390610963106 +147,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is a friend of,0.00022264706785790622 +148,Albus Dumbledore,Michael Gambon,5658,Ron,Rupert Grint,10989,48,"[2, 2]",is a friend of,0.00011906315921805799 +149,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",is a friend of,1.764713306329213e-05 +150,Cedric Diggory,Robert Pattinson,11288,Viktor Krum,Stanislav Yanevski,11290,1,"[2, 2]",is a friend of,0.0006787445163354278 +151,Fleur Delacour,Clemence Poesy,11291,Viktor Krum,Stanislav Yanevski,11290,3,"[1, 2]",is a friend of,9.4398392320727e-06 +152,Amos Diggory,Jeff Rawle,81022,Cedric Diggory,Robert Pattinson,11288,35,"[2, 2]",is a friend of,9.395058441441506e-05 +153,Gabrielle Delacour,Angelica Mandy,1090780,Cedric Diggory,Robert Pattinson,11288,6,"[1, 2]",is a friend of,1.1879857993335463e-05 +154,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in the family of,0.0007557825301773846 +155,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in the family of,3.7005131162004545e-05 +156,Cedric Diggory,Robert Pattinson,11288,Viktor Krum,Stanislav Yanevski,11290,1,"[2, 2]",is in the family of,0.00022205134155228734 +157,Fleur Delacour,Clemence Poesy,11291,Viktor Krum,Stanislav Yanevski,11290,3,"[1, 2]",is in the family of,4.5821784624422435e-06 +158,Amos Diggory,Jeff Rawle,81022,Cedric Diggory,Robert Pattinson,11288,35,"[2, 2]",is in the family of,1.6784641047706828e-05 +159,Gabrielle Delacour,Angelica Mandy,1090780,Fleur Delacour is selected as the Champion from Beauxbatons,Clemence Poesy,11291,10,"[1, 1]",is in the family of,2.4420549380010925e-05 +160,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is the enemy of,0.2237788587808609 +161,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the enemy of,0.003784554312005639 +162,Albus Dumbledore,Michael Gambon,5658,Ron,Rupert Grint,10989,48,"[2, 2]",is the enemy of,0.000681803678162396 +163,Viktor Krum,Stanislav Yanevski,11290,Cedric Diggory,Robert Pattinson,11288,1,"[2, 2]",is the enemy of,4.6776731323916465e-05 +164,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is the enemy of,0.00010091336298501119 +165,Fleur Delacour,Clemence Poesy,11291,Viktor Krum,Stanislav Yanevski,11290,3,"[1, 2]",is the enemy of,5.100245743960841e-06 +166,Amos Diggory,Jeff Rawle,81022,Ron,Rupert Grint,10989,37,"[2, 2]",is the enemy of,3.7294375943019986e-05 +167,Gabrielle Delacour,Angelica Mandy,1090780,Viktor Krum,Stanislav Yanevski,11290,7,"[1, 2]",is the enemy of,7.330430889851414e-06 +168,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",kisses,0.0010143151739612222 +169,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",kisses,0.002629900351166725 +170,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",kisses,7.321027078432962e-05 +171,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",kisses,0.009802639484405518 +172,Cedric Diggory,Robert Pattinson,11288,Ron,Rupert Grint,10989,2,"[2, 2]",kisses,1.4871328630761127e-06 +173,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",sleeps with,0.003652785439044237 +174,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",sleeps with,0.0004353000840637833 +175,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",sleeps with,0.0064963968470692635 +176,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",sleeps with,0.08519358187913895 +177,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",sleeps with,4.630605872080196e-06 +178,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",sleeps with,0.0003468818322289735 +179,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",goes on a date with,0.23051732778549194 +180,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",goes on a date with,0.742298424243927 +181,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",goes on a date with,0.0001653544750297442 +182,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",has sex with,0.0151995699852705 +183,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",has sex with,0.0025165784172713757 +184,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",has sex with,0.019209494814276695 +185,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",has sex with,0.2923286557197571 +186,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",has sex with,0.00013170835154596716 +187,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",has sex with,0.0037791032809764147 +188,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",marries,0.014824699610471725 +189,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",marries,0.03580765798687935 +190,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",marries,0.000665284285787493 +191,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",marries,0.003042927011847496 +192,Cedric Diggory,Robert Pattinson,11288,Ron,Rupert Grint,10989,2,"[2, 2]",marries,3.5682139696291415e-06 +193,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",marries,0.0006675555487163365 +194,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in love with,0.01727093942463398 +195,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in love with,0.0022803430911153555 +196,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is in love with,7.454715523635969e-05 +197,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is in love with,0.12210413068532944 +198,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in love with,8.955447810876649e-06 +199,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is in love with,0.00048799050273373723 +200,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in couple with,0.06853651255369186 +201,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in couple with,0.02225462906062603 +202,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is in couple with,0.02108883112668991 +203,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is in couple with,0.2894226312637329 +204,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in couple with,8.963409345597029e-05 +205,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is in couple with,0.01798558048903942 +206,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is the father of,0.03547864034771919 +207,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the father of,0.0014765928499400616 +208,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is the father of,0.04619067534804344 +209,Viktor Krum,Stanislav Yanevski,11290,Cedric,Robert Pattinson,11288,1,"[2, 2]",is the father of,8.93367723620031e-06 +210,Cedric Diggory,Robert Pattinson,11288,Professor Moody,Brendan Gleeson,2039,31,"[2, 2]",is the father of,9.27623659663368e-06 +211,Padma Patil,Afshan Azad,234926,Viktor,Stanislav Yanevski,11290,3,"[1, 2]",is the father of,0.0039680711925029755 +212,Parvati Patil,Shefali Chowdhury,234925,Viktor,Stanislav Yanevski,11290,3,"[1, 2]",is the father of,0.00534756388515234 +213,Harry Potter,Daniel Radcliffe,10980,Padma Patil,Afshan Azad,234926,1,"[2, 1]",is the mother of,0.017757510766386986 +214,Ron Weasley,Rupert Grint,10989,Padma Patil,Afshan Azad,234926,0,"[2, 1]",is the mother of,0.011560143902897835 +215,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is the mother of,0.0025023529306054115 +216,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is the mother of,0.025062652304768562 +217,Cedric Diggory,Robert Pattinson,11288,Padma Patil respectively; while Hermione,Afshan Azad,234926,2,"[2, 1]",is the mother of,2.812700358845177e-06 +218,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is the mother of,0.45548906922340393 +219,Parvati Patil,Shefali Chowdhury,234925,Padma,Afshan Azad,234926,0,"[1, 1]",is the mother of,0.004700532648712397 +220,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is a friend of,0.0492921844124794 +221,Ron Weasley,Rupert Grint,10989,Padma Patil,Afshan Azad,234926,0,"[2, 1]",is a friend of,0.00041552798938937485 +222,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is a friend of,0.007822525687515736 +223,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is a friend of,0.0021144626662135124 +224,Cedric Diggory,Robert Pattinson,11288,Professor Moody,Brendan Gleeson,2039,31,"[2, 2]",is a friend of,3.879174619214609e-05 +225,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is a friend of,0.00043048083898611367 +226,Parvati Patil,Shefali Chowdhury,234925,Viktor,Stanislav Yanevski,11290,3,"[1, 2]",is a friend of,8.551946666557342e-05 +227,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in the family of,0.002112790709361434 +228,Ron Weasley,Rupert Grint,10989,Padma Patil,Afshan Azad,234926,0,"[2, 1]",is in the family of,0.00028127001132816076 +229,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is in the family of,0.0009301409590989351 +230,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is in the family of,1.8587164959171787e-05 +231,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is in the family of,0.017679734155535698 +232,Parvati Patil,Shefali Chowdhury,234925,Padma,Afshan Azad,234926,0,"[1, 1]",is in the family of,7.932252628961578e-05 +233,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is the enemy of,0.001276665716432035 +234,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is the enemy of,0.0012002600124105811 +235,Parvati Patil,Shefali Chowdhury,234925,Viktor,Stanislav Yanevski,11290,3,"[1, 2]",is the enemy of,4.840621477342211e-05 +236,Harry Potter,Daniel Radcliffe,10980,Neville Longbottom,Matthew Lewis,96841,0,"[2, 2]",kisses,0.00041342590702697635 +237,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",kisses,0.013880024664103985 +238,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",kisses,0.0843910351395607 +239,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",kisses,9.0521086804074e-07 +240,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",kisses,7.983667273947503e-07 +241,Sirius Black,Gary Oldman,64,Harry,Daniel Radcliffe,10980,31,"[2, 2]",kisses,5.754735866503324e-06 +242,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",kisses,6.32161827525124e-05 +243,Igor Karkaroff,Predrag Bjelac,12044,Severus Snape,Alan Rickman,4566,16,"[2, 2]",kisses,1.2275755580049008e-05 +244,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",kisses,3.140596390949213e-06 +245,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",kisses,9.512403266853653e-06 +246,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",kisses,2.167139609809965e-05 +247,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",kisses,2.2639151211478747e-05 +248,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",kisses,0.08628030866384506 +249,Neville Longbottom,Matthew Lewis,96841,Harry,Daniel Radcliffe,10980,0,"[2, 2]",kisses,2.136558759957552e-05 +250,Harry Potter,Daniel Radcliffe,10980,Fleur,Clemence Poesy,11291,7,"[2, 1]",sleeps with,2.142475568689406e-05 +251,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",sleeps with,0.004964819177985191 +252,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",sleeps with,0.05353345349431038 +253,Albus Dumbledore,Michael Gambon,5658,Severus Snape,Alan Rickman,4566,6,"[2, 2]",sleeps with,1.427554963129296e-07 +254,Sirius Black,Gary Oldman,64,Harry has to save Ron,Daniel Radcliffe,10980,31,"[2, 2]",sleeps with,7.127650292204635e-07 +255,Igor Karkaroff,Predrag Bjelac,12044,Severus Snape,Alan Rickman,4566,16,"[2, 2]",sleeps with,2.1044639652245678e-05 +256,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",sleeps with,2.7412314011598937e-05 +257,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",sleeps with,6.899400887050433e-06 +258,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",sleeps with,3.3291478302999167e-06 +259,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",sleeps with,0.017299814149737358 +260,Neville Longbottom,Matthew Lewis,96841,Harry,Daniel Radcliffe,10980,0,"[2, 2]",sleeps with,0.00014141348947305232 +261,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",goes on a date with,0.0012686402769759297 +262,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",goes on a date with,0.1103484183549881 +263,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",goes on a date with,0.14302343130111694 +264,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",goes on a date with,3.3806027204263955e-05 +265,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",goes on a date with,0.0002923708816524595 +266,Sirius Black,Gary Oldman,64,Harry,Daniel Radcliffe,10980,31,"[2, 2]",goes on a date with,8.058694220380858e-06 +267,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",goes on a date with,6.2062026700004935e-06 +268,Igor Karkaroff,Predrag Bjelac,12044,Severus Snape,Alan Rickman,4566,16,"[2, 2]",goes on a date with,0.0008167222258634865 +269,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",goes on a date with,8.273671846836805e-05 +270,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",goes on a date with,0.00048078264808282256 +271,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",goes on a date with,0.00012357723608147353 +272,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",goes on a date with,0.0007279763813130558 +273,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",goes on a date with,0.33413437008857727 +274,Neville Longbottom,Matthew Lewis,96841,Harry,Daniel Radcliffe,10980,0,"[2, 2]",goes on a date with,0.006265638861805201 +275,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",has sex with,0.00035282340832054615 +276,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",has sex with,0.09523860365152359 +277,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",has sex with,0.1658368706703186 +278,Lord Voldemort,Ralph Fiennes,5469,Harry has to save Ron,Daniel Radcliffe,10980,26,"[2, 2]",has sex with,3.4119957490474917e-06 +279,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",has sex with,1.400464384460065e-06 +280,Sirius Black,Gary Oldman,64,Harry,Daniel Radcliffe,10980,31,"[2, 2]",has sex with,6.819604095653631e-06 +281,Severus Snape,Alan Rickman,4566,Igor Karkaroff,Predrag Bjelac,12044,16,"[2, 2]",has sex with,9.914697329804767e-06 +282,Igor Karkaroff,Predrag Bjelac,12044,Severus Snape,Alan Rickman,4566,16,"[2, 2]",has sex with,0.0008748861728236079 +283,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",has sex with,1.4388064300874248e-05 +284,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",has sex with,6.0812250012531877e-05 +285,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",has sex with,3.9216498407768086e-05 +286,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",has sex with,2.976477480842732e-05 +287,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",has sex with,0.23469552397727966 +288,Neville Longbottom,Matthew Lewis,96841,Harry,Daniel Radcliffe,10980,0,"[2, 2]",has sex with,0.0011106290621683002 +289,Harry Potter,Daniel Radcliffe,10980,Neville Longbottom,Matthew Lewis,96841,0,"[2, 2]",marries,0.0005853484035469592 +290,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",marries,0.010709276422858238 +291,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",marries,0.09588634967803955 +292,Lord Voldemort,Ralph Fiennes,5469,Dumbledore,Michael Gambon,5658,23,"[2, 2]",marries,1.0585465588519583e-06 +293,Albus Dumbledore,Michael Gambon,5658,Neville Longbottom,Matthew Lewis,96841,49,"[2, 2]",marries,7.344184638213846e-08 +294,Sirius Black,Gary Oldman,64,Neville Longbottom,Matthew Lewis,96841,31,"[2, 2]",marries,1.2389281209834735e-06 +295,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",marries,0.00017429630679544061 +296,Igor Karkaroff,Predrag Bjelac,12044,Dumbledore,Michael Gambon,5658,22,"[2, 2]",marries,8.37166044220794e-06 +297,Cedric Diggory,Robert Pattinson,11288,Neville Longbottom,Matthew Lewis,96841,3,"[2, 2]",marries,3.5859168292518007e-06 +298,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",marries,5.266942935122643e-06 +299,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",marries,2.817531139953644e-06 +300,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",marries,0.084322489798069 +301,Neville Longbottom,Matthew Lewis,96841,Harry,Daniel Radcliffe,10980,0,"[2, 2]",marries,1.012600932881469e-06 +302,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in love with,0.0007668907637707889 +303,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in love with,0.05832412466406822 +304,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is in love with,0.0569547601044178 +305,Lord Voldemort,Ralph Fiennes,5469,Harry has to save Ron,Daniel Radcliffe,10980,26,"[2, 2]",is in love with,3.1607894470653264e-06 +306,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is in love with,2.3029409135233436e-07 +307,Sirius Black,Gary Oldman,64,Harry has to save Ron,Daniel Radcliffe,10980,31,"[2, 2]",is in love with,2.7805017452919856e-06 +308,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",is in love with,6.945270342839649e-06 +309,Igor Karkaroff,Predrag Bjelac,12044,Dumbledore,Michael Gambon,5658,22,"[2, 2]",is in love with,3.3713033644744428e-06 +310,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is in love with,7.15934147592634e-05 +311,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in love with,1.0336304512748029e-05 +312,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",is in love with,1.0769502978291712e-06 +313,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",is in love with,6.189587293192744e-05 +314,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",is in love with,0.1350986510515213 +315,Neville Longbottom,Matthew Lewis,96841,Harry,Daniel Radcliffe,10980,0,"[2, 2]",is in love with,4.3193249439354986e-05 +316,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in couple with,0.0013448349200189114 +317,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in couple with,0.07767089456319809 +318,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is in couple with,0.1555609405040741 +319,Lord Voldemort,Ralph Fiennes,5469,Dumbledore,Michael Gambon,5658,23,"[2, 2]",is in couple with,1.543286634841934e-05 +320,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is in couple with,6.496405603684252e-06 +321,Sirius Black,Gary Oldman,64,Harry,Daniel Radcliffe,10980,31,"[2, 2]",is in couple with,1.42858516483102e-05 +322,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",is in couple with,7.650644693057984e-05 +323,Igor Karkaroff,Predrag Bjelac,12044,Severus Snape,Alan Rickman,4566,16,"[2, 2]",is in couple with,0.0009480174630880356 +324,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is in couple with,0.00027543664327822626 +325,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in couple with,0.00021079504222143441 +326,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",is in couple with,1.6202873666770756e-05 +327,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",is in couple with,0.00044679525308310986 +328,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",is in couple with,0.19284629821777344 +329,Neville Longbottom,Matthew Lewis,96841,Harry,Daniel Radcliffe,10980,0,"[2, 2]",is in couple with,0.0008464643033221364 +330,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the father of,0.008215934969484806 +331,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is the father of,0.22264905273914337 +332,Severus Snape,Alan Rickman,4566,Igor Karkaroff,Predrag Bjelac,12044,16,"[2, 2]",is the father of,0.010159268975257874 +333,Viktor Krum,Stanislav Yanevski,11290,Igor Karkaroff,Predrag Bjelac,12044,23,"[2, 2]",is the father of,1.0905511771852616e-05 +334,Cedric Diggory,Robert Pattinson,11288,Neville Longbottom,Matthew Lewis,96841,3,"[2, 2]",is the father of,7.232451025629416e-05 +335,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",is the father of,0.42315247654914856 +336,Harry Potter,Daniel Radcliffe,10980,Fleur,Clemence Poesy,11291,7,"[2, 1]",is the mother of,0.009258048608899117 +337,Ron Weasley,Rupert Grint,10989,Fleur,Clemence Poesy,11291,6,"[2, 1]",is the mother of,0.004457854200154543 +338,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is the mother of,0.05901283398270607 +339,Sirius Black,Gary Oldman,64,Fleur,Clemence Poesy,11291,24,"[2, 1]",is the mother of,0.00011128594633191824 +340,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",is the mother of,1.3194963685236871e-05 +341,Cedric Diggory,Robert Pattinson,11288,Fleur's sister after Fleur,Clemence Poesy,11291,4,"[2, 1]",is the mother of,0.00013727211626246572 +342,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",is the mother of,9.67013111221604e-05 +343,Neville Longbottom,Matthew Lewis,96841,Fleur,Clemence Poesy,11291,7,"[2, 1]",is the mother of,4.382355655252468e-06 +344,Harry Potter,Daniel Radcliffe,10980,Neville Longbottom,Matthew Lewis,96841,0,"[2, 2]",is a friend of,0.003954112995415926 +345,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is a friend of,0.006079285405576229 +346,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is a friend of,0.15280784666538239 +347,Lord Voldemort,Ralph Fiennes,5469,Igor Karkaroff,Predrag Bjelac,12044,1,"[2, 2]",is a friend of,5.437710206024349e-05 +348,Albus Dumbledore,Michael Gambon,5658,Igor Karkaroff,Predrag Bjelac,12044,22,"[2, 2]",is a friend of,7.481738430215046e-05 +349,Sirius Black,Gary Oldman,64,Harry has to save Ron,Daniel Radcliffe,10980,31,"[2, 2]",is a friend of,3.0639159376733005e-05 +350,Severus Snape,Alan Rickman,4566,Igor Karkaroff,Predrag Bjelac,12044,16,"[2, 2]",is a friend of,0.00043574627488851547 +351,Igor Karkaroff,Predrag Bjelac,12044,Severus Snape,Alan Rickman,4566,16,"[2, 2]",is a friend of,0.0005268294480629265 +352,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is a friend of,2.2689982870360836e-05 +353,Cedric Diggory,Robert Pattinson,11288,Neville Longbottom,Matthew Lewis,96841,3,"[2, 2]",is a friend of,7.96709573478438e-05 +354,Fleur Delacour,Clemence Poesy,11291,Neville Longbottom,Matthew Lewis,96841,7,"[1, 2]",is a friend of,4.964476829627529e-05 +355,Barty Crouch Junior,David Tennant,20049,Severus Snape,Alan Rickman,4566,25,"[2, 2]",is a friend of,1.2809920008294284e-05 +356,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",is a friend of,0.2517260015010834 +357,Neville Longbottom,Matthew Lewis,96841,Harry has to save Ron,Daniel Radcliffe,10980,0,"[2, 2]",is a friend of,6.7473092713044025e-06 +358,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in the family of,0.012156964279711246 +359,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in the family of,0.0012059749569743872 +360,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is in the family of,0.002256202744320035 +361,Sirius Black,Gary Oldman,64,Ron,Rupert Grint,10989,30,"[2, 2]",is in the family of,3.271520108683035e-05 +362,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is in the family of,0.00023137705284170806 +363,Cedric Diggory,Robert Pattinson,11288,Cho,Katie Leung,234933,1,"[2, 1]",is in the family of,0.0005029170424677432 +364,Fleur Delacour,Clemence Poesy,11291,her sister,Robert Wilfort,72313,5,"[1, 2]",is in the family of,0.00021712786110583693 +365,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",is in the family of,0.005288101267069578 +366,Harry Potter,Daniel Radcliffe,10980,Voldemort,Ralph Fiennes,5469,26,"[2, 2]",is the enemy of,0.0060158176347613335 +367,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the enemy of,0.0022091541904956102 +368,Hermione Granger,Emma Watson,10990,Viktor,Stanislav Yanevski,11290,5,"[1, 2]",is the enemy of,0.004225651267915964 +369,Lord Voldemort,Ralph Fiennes,5469,Igor Karkaroff,Predrag Bjelac,12044,1,"[2, 2]",is the enemy of,0.00015626718231942505 +370,Albus Dumbledore,Michael Gambon,5658,Igor Karkaroff,Predrag Bjelac,12044,22,"[2, 2]",is the enemy of,0.00022485015506390482 +371,Sirius Black,Gary Oldman,64,Voldemort,Ralph Fiennes,5469,5,"[2, 2]",is the enemy of,0.00017800561909098178 +372,Viktor Krum,Stanislav Yanevski,11290,Hermione,Emma Watson,10990,5,"[2, 1]",is the enemy of,6.994731847953517e-06 +373,Cedric Diggory,Robert Pattinson,11288,Cho,Katie Leung,234933,1,"[2, 1]",is the enemy of,1.2835830602853093e-05 +374,Fleur Delacour,Clemence Poesy,11291,Ron,Rupert Grint,10989,6,"[1, 2]",is the enemy of,8.671779141877778e-06 +375,Barty Crouch Junior,David Tennant,20049,Igor Karkaroff,Predrag Bjelac,12044,9,"[2, 2]",is the enemy of,0.0016280579147860408 +376,Cho Chang,Katie Leung,234933,Cedric,Robert Pattinson,11288,1,"[1, 2]",is the enemy of,0.0019132103770971298 +377,Neville Longbottom,Matthew Lewis,96841,Fleur,Clemence Poesy,11291,7,"[2, 1]",is the enemy of,1.3150996664990089e-06 +378,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",kisses,0.0011424206895753741 +379,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",kisses,4.773705586558208e-05 +380,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",kisses,0.00014972995268180966 +381,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",sleeps with,0.0020075440406799316 +382,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",sleeps with,0.0010630744509398937 +383,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",goes on a date with,0.04811009764671326 +384,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",goes on a date with,0.01717871055006981 +385,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",has sex with,0.024519847705960274 +386,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",has sex with,0.0032772603444755077 +387,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",marries,0.014827633276581764 +388,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",marries,0.0003355786029715091 +389,Peter Pettigrew,Timothy Spall,9191,Harry,Daniel Radcliffe,10980,32,"[2, 2]",marries,3.221827853394643e-07 +390,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",marries,0.00028600008226931095 +391,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",is in love with,0.02961285039782524 +392,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in love with,0.0022925008088350296 +393,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",is in couple with,0.20594578981399536 +394,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in couple with,0.028427235782146454 +395,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",is the father of,0.0650436282157898 +396,Lord Voldemort,Ralph Fiennes,5469,Pettigrew,Timothy Spall,9191,6,"[2, 2]",is the father of,0.0033444829750806093 +397,Peter Pettigrew,Timothy Spall,9191,Voldemort,Ralph Fiennes,5469,6,"[2, 2]",is the father of,0.00026160417473874986 +398,Cedric Diggory,Robert Pattinson,11288,Pettigrew,Timothy Spall,9191,29,"[2, 2]",is the father of,0.012009527534246445 +399,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",is the mother of,0.0006543207564391196 +400,Lord Voldemort,Ralph Fiennes,5469,Cedric,Robert Pattinson,11288,23,"[2, 2]",is the mother of,8.951314521254972e-05 +401,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is the mother of,5.22038244525902e-05 +402,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",is a friend of,0.16952946782112122 +403,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is a friend of,0.0011464962735772133 +404,Harry Potter,Daniel Radcliffe,10980,Cedric,Robert Pattinson,11288,3,"[2, 2]",is in the family of,0.007895841263234615 +405,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in the family of,9.689271246315911e-05 +406,Harry Potter,Daniel Radcliffe,10980,Voldemort,Ralph Fiennes,5469,26,"[2, 2]",is the enemy of,0.09788063168525696 +407,Lord Voldemort,Ralph Fiennes,5469,Pettigrew,Timothy Spall,9191,6,"[2, 2]",is the enemy of,0.004268270451575518 +408,Peter Pettigrew,Timothy Spall,9191,Voldemort,Ralph Fiennes,5469,6,"[2, 2]",is the enemy of,0.07283134758472443 +409,Cedric Diggory,Robert Pattinson,11288,Voldemort,Ralph Fiennes,5469,23,"[2, 2]",is the enemy of,0.03380030393600464 +410,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",kisses,0.007836055010557175 +411,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",kisses,0.0004992980975657701 +412,Albus Dumbledore,Michael Gambon,5658,Moody,Brendan Gleeson,2039,15,"[2, 2]",kisses,0.0006659837090410292 +413,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",kisses,8.140571299009025e-05 +414,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",kisses,0.0006748071755282581 +415,Cedric Diggory,Robert Pattinson,11288,Moody,Brendan Gleeson,2039,31,"[2, 2]",kisses,0.0002955961390398443 +416,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",kisses,4.175102003500797e-05 +417,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",sleeps with,0.040312767028808594 +418,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",sleeps with,0.0019718767143785954 +419,Albus Dumbledore,Michael Gambon,5658,Moody,Brendan Gleeson,2039,15,"[2, 2]",sleeps with,0.0008776334580034018 +420,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",sleeps with,0.0005607620696537197 +421,Cedric Diggory,Robert Pattinson,11288,Harry is dragged by Moody,Daniel Radcliffe,10980,3,"[2, 2]",sleeps with,0.0007225794834084809 +422,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",sleeps with,0.0005295004812069237 +423,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",goes on a date with,0.3406515419483185 +424,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",goes on a date with,0.001917386776767671 +425,Albus Dumbledore,Michael Gambon,5658,Snape,Alan Rickman,4566,6,"[2, 2]",goes on a date with,0.0039843241684138775 +426,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",goes on a date with,0.0001403188070980832 +427,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",goes on a date with,0.020597897469997406 +428,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",goes on a date with,0.00405123783275485 +429,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",goes on a date with,0.0003280216478742659 +430,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",has sex with,0.08281753957271576 +431,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",has sex with,0.0017558560939505696 +432,Albus Dumbledore,Michael Gambon,5658,Snape,Alan Rickman,4566,6,"[2, 2]",has sex with,0.002463080221787095 +433,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",has sex with,0.007445661351084709 +434,Cedric Diggory,Robert Pattinson,11288,Moody,Brendan Gleeson,2039,31,"[2, 2]",has sex with,0.0011488331947475672 +435,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",has sex with,0.0013747566845268011 +436,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",marries,0.006319117266684771 +437,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",marries,0.0006463761092163622 +438,Albus Dumbledore,Michael Gambon,5658,Snape,Alan Rickman,4566,6,"[2, 2]",marries,0.0005751039716415107 +439,Severus Snape,Alan Rickman,4566,Minerva McGonagall,Maggie Smith,10978,11,"[2, 1]",marries,0.00030308961868286133 +440,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",marries,0.001577637973241508 +441,Cedric Diggory,Robert Pattinson,11288,Dumbledore,Michael Gambon,5658,46,"[2, 2]",marries,5.454924757941626e-05 +442,Barty Crouch Junior,David Tennant,20049,Dumbledore,Michael Gambon,5658,31,"[2, 2]",marries,1.467027141188737e-05 +443,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",is in love with,0.07733295857906342 +444,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",is in love with,0.0018766975263133645 +445,Albus Dumbledore,Michael Gambon,5658,Moody,Brendan Gleeson,2039,15,"[2, 2]",is in love with,0.0017114790389314294 +446,Severus Snape,Alan Rickman,4566,Moody,Brendan Gleeson,2039,9,"[2, 2]",is in love with,4.427699423104059e-06 +447,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",is in love with,0.0005755386664532125 +448,Cedric Diggory,Robert Pattinson,11288,Moody,Brendan Gleeson,2039,31,"[2, 2]",is in love with,0.0014063192065805197 +449,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",is in love with,0.00046742631820961833 +450,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",is in couple with,0.11348534375429153 +451,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",is in couple with,0.002530377823859453 +452,Albus Dumbledore,Michael Gambon,5658,Snape,Alan Rickman,4566,6,"[2, 2]",is in couple with,0.005789600778371096 +453,Severus Snape,Alan Rickman,4566,Minerva McGonagall,Maggie Smith,10978,11,"[2, 1]",is in couple with,0.006174720358103514 +454,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",is in couple with,0.03266735002398491 +455,Cedric Diggory,Robert Pattinson,11288,Harry is dragged by Moody,Daniel Radcliffe,10980,3,"[2, 2]",is in couple with,0.001423183479346335 +456,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",is in couple with,0.0011146612232550979 +457,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",is the father of,0.19163058698177338 +458,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",is the father of,0.030278798192739487 +459,Albus Dumbledore,Michael Gambon,5658,Moody,Brendan Gleeson,2039,15,"[2, 2]",is the father of,0.01946660876274109 +460,Severus Snape,Alan Rickman,4566,Moody,Brendan Gleeson,2039,9,"[2, 2]",is the father of,0.0001689448399702087 +461,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",is the father of,0.0005214246921241283 +462,Cedric Diggory,Robert Pattinson,11288,Moody,Brendan Gleeson,2039,31,"[2, 2]",is the father of,0.03552961349487305 +463,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",is the father of,0.04349388927221298 +464,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",is the mother of,0.05765285715460777 +465,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",is the mother of,0.012137314304709435 +466,Albus Dumbledore,Michael Gambon,5658,Moody,Brendan Gleeson,2039,15,"[2, 2]",is the mother of,0.0047346968203783035 +467,Severus Snape,Alan Rickman,4566,Minerva McGonagall,Maggie Smith,10978,11,"[2, 1]",is the mother of,0.0013421451440081 +468,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",is the mother of,3.5949428820458706e-06 +469,Cedric Diggory,Robert Pattinson,11288,Moody,Brendan Gleeson,2039,31,"[2, 2]",is the mother of,0.015801990404725075 +470,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",is the mother of,0.0025739511474967003 +471,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",is a friend of,0.17403027415275574 +472,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",is a friend of,0.022416258230805397 +473,Albus Dumbledore,Michael Gambon,5658,Snape,Alan Rickman,4566,6,"[2, 2]",is a friend of,0.008163902908563614 +474,Severus Snape,Alan Rickman,4566,Minerva McGonagall,Maggie Smith,10978,11,"[2, 1]",is a friend of,0.0008989553898572922 +475,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",is a friend of,0.00877982098609209 +476,Cedric Diggory,Robert Pattinson,11288,Moody,Brendan Gleeson,2039,31,"[2, 2]",is a friend of,0.021143628284335136 +477,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",is a friend of,0.0008389039430767298 +478,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",is in the family of,0.09311586618423462 +479,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",is in the family of,0.0058914124965667725 +480,Albus Dumbledore,Michael Gambon,5658,Moody,Brendan Gleeson,2039,15,"[2, 2]",is in the family of,0.002143822843208909 +481,Severus Snape,Alan Rickman,4566,Dumbledore,Michael Gambon,5658,6,"[2, 2]",is in the family of,5.534383490157779e-06 +482,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",is in the family of,0.0009705330594442785 +483,Cedric Diggory,Robert Pattinson,11288,Moody,Brendan Gleeson,2039,31,"[2, 2]",is in the family of,0.004390615504235029 +484,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",is in the family of,0.0012953957775607705 +485,Harry Potter,Daniel Radcliffe,10980,Moody,Brendan Gleeson,2039,34,"[2, 2]",is the enemy of,0.23453906178474426 +486,Lord Voldemort,Ralph Fiennes,5469,Moody,Brendan Gleeson,2039,8,"[2, 2]",is the enemy of,0.04964218661189079 +487,Albus Dumbledore,Michael Gambon,5658,Moody,Brendan Gleeson,2039,15,"[2, 2]",is the enemy of,0.023163150995969772 +488,Severus Snape,Alan Rickman,4566,Moody,Brendan Gleeson,2039,9,"[2, 2]",is the enemy of,0.0002502111019566655 +489,Minerva McGonagall,Maggie Smith,10978,Snape,Alan Rickman,4566,11,"[1, 2]",is the enemy of,0.0019259839318692684 +490,Cedric Diggory,Robert Pattinson,11288,Voldemort,Ralph Fiennes,5469,23,"[2, 2]",is the enemy of,0.2119603157043457 +491,Barty Crouch Junior,David Tennant,20049,Moody,Brendan Gleeson,2039,16,"[2, 2]",is the enemy of,0.04215544834733009 +492,Hermione Granger,Emma Watson,10990,"Harry, Ron",Rupert Grint,10989,2,"[1, 2]",kisses,0.0072325775399804115 +493,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",kisses,0.0002580239379312843 +494,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",kisses,0.003621054347604513 +495,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",sleeps with,0.008202124387025833 +496,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",sleeps with,0.003218509256839752 +497,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",sleeps with,0.003950230777263641 +498,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",sleeps with,0.003182207467034459 +499,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",sleeps with,2.8123429729021154e-05 +500,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",goes on a date with,0.036851897835731506 +501,Hermione Granger,Emma Watson,10990,"Harry, Ron",Rupert Grint,10989,2,"[1, 2]",goes on a date with,0.015863850712776184 +502,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",goes on a date with,0.14588074386119843 +503,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",goes on a date with,0.029009146615862846 +504,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",goes on a date with,0.0004667031462304294 +505,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",has sex with,0.013639582321047783 +506,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",has sex with,0.014080840162932873 +507,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",has sex with,0.05265769734978676 +508,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",has sex with,0.013971851207315922 +509,Cedric Diggory,Robert Pattinson,11288,Dumbledore,Michael Gambon,5658,46,"[2, 2]",has sex with,0.00020379746274556965 +510,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",marries,0.018092183396220207 +511,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",marries,0.011778178624808788 +512,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",marries,0.00018633408762980253 +513,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",marries,0.0010147909633815289 +514,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",is in love with,0.07102980464696884 +515,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",is in love with,0.0030985772609710693 +516,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is in love with,0.003451830940321088 +517,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is in love with,0.004001259803771973 +518,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in love with,7.667413592571393e-05 +519,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",is in couple with,0.15822426974773407 +520,Hermione Granger,Emma Watson,10990,"Harry, Ron",Rupert Grint,10989,2,"[1, 2]",is in couple with,0.03506234288215637 +521,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is in couple with,0.0028426535427570343 +522,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is in couple with,0.006894368678331375 +523,Harry Potter,Daniel Radcliffe,10980,Dumbledore,Michael Gambon,5658,49,"[2, 2]",is the father of,0.02574446052312851 +524,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the father of,0.014950496144592762 +525,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",is the father of,0.019987061619758606 +526,Lord Voldemort,Ralph Fiennes,5469,Cedric,Robert Pattinson,11288,23,"[2, 2]",is the father of,0.006174351088702679 +527,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is the father of,0.012096120975911617 +528,Cedric Diggory,Robert Pattinson,11288,Dumbledore,Michael Gambon,5658,46,"[2, 2]",is the father of,0.03306801617145538 +529,Harry Potter,Daniel Radcliffe,10980,Hermione,Emma Watson,10990,1,"[2, 1]",is the mother of,0.09148059785366058 +530,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",is the mother of,0.2706192135810852 +531,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",is the mother of,0.0014246193459257483 +532,Lord Voldemort,Ralph Fiennes,5469,Cedric,Robert Pattinson,11288,23,"[2, 2]",is the mother of,0.002840070053935051 +533,Albus Dumbledore,Michael Gambon,5658,Hermione,Emma Watson,10990,50,"[2, 1]",is the mother of,0.00329207512550056 +534,Cedric Diggory,Robert Pattinson,11288,Dumbledore,Michael Gambon,5658,46,"[2, 2]",is the mother of,0.0006934466073289514 +535,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",is a friend of,0.026693224906921387 +536,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",is a friend of,0.01116557139903307 +537,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is a friend of,0.005796500947326422 +538,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is a friend of,0.024805106222629547 +539,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is a friend of,0.0014202974271029234 +540,Ron Weasley,Rupert Grint,10989,Hermione,Emma Watson,10990,2,"[2, 1]",is in the family of,0.018639015033841133 +541,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",is in the family of,0.004874559119343758 +542,Lord Voldemort,Ralph Fiennes,5469,Cedric,Robert Pattinson,11288,23,"[2, 2]",is in the family of,0.0015627065440639853 +543,Albus Dumbledore,Michael Gambon,5658,Harry,Daniel Radcliffe,10980,49,"[2, 2]",is in the family of,0.001418225932866335 +544,Cedric Diggory,Robert Pattinson,11288,Dumbledore,Michael Gambon,5658,46,"[2, 2]",is in the family of,0.0002442184486426413 +545,Harry Potter,Daniel Radcliffe,10980,Voldemort,Ralph Fiennes,5469,26,"[2, 2]",is the enemy of,0.14070652425289154 +546,Ron Weasley,Rupert Grint,10989,Voldemort,Ralph Fiennes,5469,25,"[2, 2]",is the enemy of,0.00041984289418905973 +547,Hermione Granger,Emma Watson,10990,Ron,Rupert Grint,10989,2,"[1, 2]",is the enemy of,0.0011384058743715286 +548,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is the enemy of,0.0008559802663512528 +549,Albus Dumbledore,Michael Gambon,5658,Voldemort,Ralph Fiennes,5469,23,"[2, 2]",is the enemy of,0.3426632881164551 +550,Cedric Diggory,Robert Pattinson,11288,Voldemort,Ralph Fiennes,5469,23,"[2, 2]",is the enemy of,0.646350622177124 +551,James Potter,Adrian Rawlins,1643,List of Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",kisses,1.2070480615022916e-08 +552,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",kisses,7.52678452897726e-09 +553,James Potter,Adrian Rawlins,1643,Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",sleeps with,5.018891258146141e-08 +554,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",sleeps with,2.96247097963942e-08 +555,James Potter,Adrian Rawlins,1643,Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",goes on a date with,6.69954602017242e-07 +556,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",goes on a date with,1.0947060502530803e-07 +557,James Potter,Adrian Rawlins,1643,Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",has sex with,1.8449463823344558e-07 +558,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",has sex with,8.720890321001207e-08 +559,James Potter,Adrian Rawlins,1643,Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",marries,4.742116477274294e-09 +560,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",marries,3.643541468534295e-09 +561,James Potter,Adrian Rawlins,1643,Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",is in love with,2.2187704473708436e-07 +562,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",is in love with,1.4223785171907366e-07 +563,James Potter,Adrian Rawlins,1643,Harry Potter,Daniel Radcliffe,10980,31,"[2, 2]",is in couple with,3.2746342526479566e-07 +564,Lily Potter,Geraldine Somerville,10988,Harry Potter,Daniel Radcliffe,10980,22,"[1, 2]",is in couple with,4.6767604544584174e-07 +565,James Potter,Adrian Rawlins,1643,Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",is the father of,8.657416117330285e-09 +566,Lily Potter,Geraldine Somerville,10988,Harry Potter,Daniel Radcliffe,10980,22,"[1, 2]",is the father of,5.960587401432349e-08 +567,James Potter,Adrian Rawlins,1643,Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",is the mother of,6.7131309400281225e-09 +568,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",is the mother of,7.3338952688573045e-09 +569,James Potter,Adrian Rawlins,1643,Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",is a friend of,8.327985412392991e-09 +570,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",is a friend of,3.7759453341834615e-09 +571,James Potter,Adrian Rawlins,1643,Harry Potter,Daniel Radcliffe,10980,31,"[2, 2]",is in the family of,3.5814125567412702e-06 +572,Lily Potter,Geraldine Somerville,10988,Harry Potter,Daniel Radcliffe,10980,22,"[1, 2]",is in the family of,1.346778162769624e-06 +573,James Potter,Adrian Rawlins,1643,List of Harry Potter cast members,Daniel Radcliffe,10980,31,"[2, 2]",is the enemy of,2.8057920431479033e-09 +574,Lily Potter,Geraldine Somerville,10988,Harry Potter cast members,Daniel Radcliffe,10980,22,"[1, 2]",is the enemy of,3.868409148566343e-09 +575,Lord Voldemort,Ralph Fiennes,5469,Daniel Radcliffe as Harry Potter,Alfred Enoch,234923,26,"[2, 2]",is the father of,3.4682454952417174e-07 +576,Lord Voldemort,Ralph Fiennes,5469,Harry Potter,Daniel Radcliffe,10980,26,"[2, 2]",is the mother of,4.471570491659804e-08 +577,Lord Voldemort,Ralph Fiennes,5469,Daniel Radcliffe as Harry Potter,Alfred Enoch,234923,26,"[2, 2]",is in the family of,3.2791445846669376e-05 +578,James Potter,Adrian Rawlins,1643,Lord Voldemort,Ralph Fiennes,5469,5,"[2, 2]",is in the family of,1.1951116221098346e-06 +579,Lily Potter,Geraldine Somerville,10988,Lord Voldemort,Ralph Fiennes,5469,4,"[1, 2]",is in the family of,3.5172392927051987e-06 +580,Harry Potter,Daniel Radcliffe,10980,Lord Voldemort,Ralph Fiennes,5469,26,"[2, 2]",is the enemy of,0.4272652566432953 +581,Lord Voldemort,Ralph Fiennes,5469,Harry Potter,Daniel Radcliffe,10980,26,"[2, 2]",is the enemy of,5.4970769269857556e-05 +582,James Potter,Adrian Rawlins,1643,Lord Voldemort,Ralph Fiennes,5469,5,"[2, 2]",is the enemy of,7.235176599351689e-05 +583,Lily Potter,Geraldine Somerville,10988,Lord Voldemort,Ralph Fiennes,5469,4,"[1, 2]",is the enemy of,4.8372232413385063e-05 +584,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",kisses,0.006162421312183142 +585,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",sleeps with,0.006168692838400602 +586,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",sleeps with,0.00043467868817970157 +587,Arthur Weasley,Mark Williams,20999,Ron Weasley,Rupert Grint,10989,29,"[2, 2]",sleeps with,4.2428351321177615e-07 +588,Fred Weasley,James Phelps,96851,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",sleeps with,2.8812087293772493e-06 +589,George Weasley,Oliver Phelps,140368,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",sleeps with,5.591040235231048e-07 +590,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",sleeps with,1.022981564346992e-06 +591,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",goes on a date with,0.1480148732662201 +592,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",goes on a date with,0.05110602453351021 +593,Arthur Weasley,Mark Williams,20999,Harry,Daniel Radcliffe,10980,30,"[2, 2]",goes on a date with,1.796670039766468e-05 +594,Fred Weasley,James Phelps,96851,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",goes on a date with,9.400396083947271e-05 +595,George Weasley,Oliver Phelps,140368,Harry,Daniel Radcliffe,10980,3,"[2, 2]",goes on a date with,1.244479699380463e-05 +596,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",goes on a date with,1.3880052392778452e-05 +597,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",has sex with,0.09359104931354523 +598,Arthur Weasley,Mark Williams,20999,Ron Weasley,Rupert Grint,10989,29,"[2, 2]",has sex with,5.263305138214491e-05 +599,Fred Weasley,James Phelps,96851,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",has sex with,0.00029473702306859195 +600,George Weasley,Oliver Phelps,140368,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",has sex with,3.760423351195641e-05 +601,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",has sex with,0.00010152763570658863 +602,Harry Potter,Daniel Radcliffe,10980,Rupert Grint as Ron Weasley,Alfred Enoch,234923,0,"[2, 2]",marries,0.0012282606912776828 +603,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",is in love with,0.0055817714892327785 +604,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in love with,0.008419105783104897 +605,George Weasley,Oliver Phelps,140368,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in love with,3.28952614836453e-06 +606,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",is in couple with,0.047633618116378784 +607,Arthur Weasley,Mark Williams,20999,Harry,Daniel Radcliffe,10980,30,"[2, 2]",is in couple with,1.0453234608576167e-05 +608,Fred Weasley,James Phelps,96851,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is in couple with,0.00015293736942112446 +609,George Weasley,Oliver Phelps,140368,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in couple with,1.8297134374734014e-05 +610,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",is in couple with,1.098242591979215e-05 +611,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",is the father of,0.14127786457538605 +612,Arthur Weasley,Mark Williams,20999,Ron Weasley,Rupert Grint,10989,29,"[2, 2]",is the father of,0.0017441813834011555 +613,Fred Weasley,James Phelps,96851,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is the father of,0.0053579481318593025 +614,George Weasley,Oliver Phelps,140368,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is the father of,0.0007444227812811732 +615,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",is the father of,0.007160580717027187 +616,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",is the mother of,0.0008423905237577856 +617,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the mother of,0.00011880238889716566 +618,Arthur Weasley,Mark Williams,20999,Ron Weasley,Rupert Grint,10989,29,"[2, 2]",is the mother of,3.973513230448589e-06 +619,Fred Weasley,James Phelps,96851,Ron,Rupert Grint,10989,2,"[2, 2]",is the mother of,5.017072180635296e-05 +620,George Weasley,Oliver Phelps,140368,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is the mother of,2.8539598133647814e-06 +621,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",is the mother of,8.274682841147296e-07 +622,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",is a friend of,0.9189558625221252 +623,Arthur Weasley,Mark Williams,20999,Ron Weasley,Rupert Grint,10989,29,"[2, 2]",is a friend of,0.00041350454557687044 +624,Fred Weasley,James Phelps,96851,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is a friend of,0.006120929028838873 +625,George Weasley,Oliver Phelps,140368,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is a friend of,0.0003963033959735185 +626,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",is a friend of,6.005696195643395e-05 +627,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",is in the family of,0.30907881259918213 +628,Arthur Weasley,Mark Williams,20999,Ron Weasley,Rupert Grint,10989,29,"[2, 2]",is in the family of,3.9587117498740554e-05 +629,Fred Weasley,James Phelps,96851,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is in the family of,7.84460935392417e-05 +630,George Weasley,Oliver Phelps,140368,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is in the family of,2.534903251216747e-05 +631,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",is in the family of,2.939597106887959e-05 +632,Harry Potter,Daniel Radcliffe,10980,Ron Weasley,Rupert Grint,10989,1,"[2, 2]",is the enemy of,0.00015780565445311368 +633,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the enemy of,9.303352271672338e-05 +634,Arthur Weasley,Mark Williams,20999,Ron Weasley,Rupert Grint,10989,29,"[2, 2]",is the enemy of,9.428868906979915e-06 +635,Fred Weasley,James Phelps,96851,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is the enemy of,5.819727084599435e-05 +636,George Weasley,Oliver Phelps,140368,Ron Weasley,Rupert Grint,10989,2,"[2, 2]",is the enemy of,1.6414378478657454e-05 +637,Ginny Weasley,Bonnie Wright,10991,Ron Weasley,Rupert Grint,10989,3,"[1, 2]",is the enemy of,3.0484893613902386e-06 +638,Harry Potter,Daniel Radcliffe,10980,Hermione Granger,Emma Watson,10990,1,"[2, 1]",kisses,0.008169093169271946 +639,Harry Potter,Daniel Radcliffe,10980,Hermione Granger,Emma Watson,10990,1,"[2, 1]",sleeps with,0.03743206337094307 +640,Harry Potter,Daniel Radcliffe,10980,Hermione Granger,Emma Watson,10990,1,"[2, 1]",goes on a date with,0.2513003647327423 +641,Harry Potter,Daniel Radcliffe,10980,Hermione Granger,Emma Watson,10990,1,"[2, 1]",has sex with,0.15484151244163513 +642,Harry Potter,Daniel Radcliffe,10980,Hermione Granger,Emma Watson,10990,1,"[2, 1]",is in couple with,0.24326342344284058 +643,Hermione Granger,Emma Watson,10990,Harry,Daniel Radcliffe,10980,1,"[1, 2]",is the father of,0.041608136147260666 +644,Harry Potter,Daniel Radcliffe,10980,Hermione Granger,Emma Watson,10990,1,"[2, 1]",is a friend of,0.9340982437133789 +645,Harry Potter,Daniel Radcliffe,10980,Hermione Granger,Emma Watson,10990,1,"[2, 1]",is in the family of,0.17868661880493164 +646,Hermione Granger,Emma Watson,10990,Harry,Daniel Radcliffe,10980,1,"[1, 2]",is in the family of,0.006679655984044075 +647,Harry Potter,Daniel Radcliffe,10980,Hermione Granger,Emma Watson,10990,1,"[2, 1]",is the enemy of,0.00021031132200732827 +648,Hermione Granger,Emma Watson,10990,Harry,Daniel Radcliffe,10980,1,"[1, 2]",is the enemy of,6.659625069005415e-05 +649,Lord Voldemort,Ralph Fiennes,5469,"caricature"" as a reason for his casting.",Alfred Enoch,234923,26,"[2, 2]",is the mother of,2.142851940334367e-08 +650,Albus Dumbledore,Michael Gambon,5658,"Alastor ""Mad-Eye"" Moody",Brendan Gleeson,2039,15,"[2, 2]",sleeps with,1.2954203157278243e-05 +651,Barty Crouch Junior,David Tennant,20049,"Brendan Gleeson as Alastor ""Mad-Eye"" Moody",Alfred Enoch,234923,18,"[2, 2]",sleeps with,6.265840823971303e-08 +652,Albus Dumbledore,Michael Gambon,5658,"Brendan Gleeson as Alastor ""Mad-Eye"" Moody",Alfred Enoch,234923,49,"[2, 2]",goes on a date with,0.00041891177534125745 +653,Barty Crouch Junior,David Tennant,20049,Mad-Eye,Brendan Gleeson,2039,16,"[2, 2]",goes on a date with,4.991953233002278e-07 +654,Albus Dumbledore,Michael Gambon,5658,"Brendan Gleeson as Alastor ""Mad-Eye"" Moody",Alfred Enoch,234923,49,"[2, 2]",has sex with,0.00017562413995619863 +655,Barty Crouch Junior,David Tennant,20049,Mad-Eye,Brendan Gleeson,2039,16,"[2, 2]",is in couple with,8.57669135712058e-07 +656,Albus Dumbledore,Michael Gambon,5658,"Alastor ""Mad-Eye"" Moody",Brendan Gleeson,2039,15,"[2, 2]",is the father of,0.0005533949006348848 +657,Barty Crouch Junior,David Tennant,20049,"Alastor ""Mad-Eye"" Moody",Brendan Gleeson,2039,16,"[2, 2]",is the father of,0.0012634546728804708 +658,Albus Dumbledore,Michael Gambon,5658,Moody,Brendan Gleeson,2039,15,"[2, 2]",is the mother of,6.075279088690877e-05 +659,Barty Crouch Junior,David Tennant,20049,"Alastor ""Mad-Eye"" Moody",Brendan Gleeson,2039,16,"[2, 2]",is the mother of,6.53747483738698e-05 +660,Albus Dumbledore,Michael Gambon,5658,"Alastor ""Mad-Eye"" Moody",Brendan Gleeson,2039,15,"[2, 2]",is a friend of,0.00012557441368699074 +661,Albus Dumbledore,Michael Gambon,5658,"Alastor ""Mad-Eye"" Moody",Brendan Gleeson,2039,15,"[2, 2]",is in the family of,0.00014031365572009236 +662,Barty Crouch Junior,David Tennant,20049,"Mad-Eye"" Moody",Brendan Gleeson,2039,16,"[2, 2]",is in the family of,1.4408736888071871e-06 +663,Albus Dumbledore,Michael Gambon,5658,"Alastor ""Mad-Eye"" Moody",Brendan Gleeson,2039,15,"[2, 2]",is the enemy of,0.006368257571011782 +664,Barty Crouch Junior,David Tennant,20049,"Alastor ""Mad-Eye"" Moody",Brendan Gleeson,2039,16,"[2, 2]",is the enemy of,0.0007198539096862078 +665,Lucius Malfoy,Jason Isaacs,11355,Draco,Tom Felton,10993,24,"[2, 2]",sleeps with,5.683847484760918e-05 +666,Draco Malfoy,Tom Felton,10993,Lucius Malfoy,Jason Isaacs,11355,24,"[2, 2]",sleeps with,0.00012454397801775485 +667,Draco Malfoy,Tom Felton,10993,Lucius Malfoy,Jason Isaacs,11355,24,"[2, 2]",has sex with,0.005118907429277897 +668,Draco Malfoy,Tom Felton,10993,Lucius Malfoy,Jason Isaacs,11355,24,"[2, 2]",is the father of,0.8930890560150146 +669,Draco Malfoy,Tom Felton,10993,Lucius Malfoy,Jason Isaacs,11355,24,"[2, 2]",is a friend of,0.0005306869861669838 +670,Draco Malfoy,Tom Felton,10993,Lucius Malfoy,Jason Isaacs,11355,24,"[2, 2]",is the enemy of,0.004720417317003012 +671,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",kisses,0.001085641561076045 +672,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",sleeps with,0.02923826314508915 +673,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",goes on a date with,0.08716735243797302 +674,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",has sex with,0.16937005519866943 +675,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",is in love with,0.016588393598794937 +676,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",is in couple with,0.015456780791282654 +677,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",is the father of,0.45671945810317993 +678,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",is the mother of,0.0008048326708376408 +679,Sirius Black,Gary Oldman,64,Harry,Daniel Radcliffe,10980,31,"[2, 2]",is the mother of,1.6270989817712689e-06 +680,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",is a friend of,0.016288768500089645 +681,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",is in the family of,0.3338853716850281 +682,Harry Potter,Daniel Radcliffe,10980,Sirius Black,Gary Oldman,64,31,"[2, 2]",is the enemy of,0.02312670648097992 +683,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",kisses,0.00013812391262035817 +684,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",kisses,1.1251449905103073e-05 +685,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",sleeps with,0.00022326748876366764 +686,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",sleeps with,1.3087432307656854e-05 +687,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",goes on a date with,0.00240528816357255 +688,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",goes on a date with,0.00044551174505613744 +689,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",has sex with,0.0032395676244050264 +690,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",has sex with,0.0002155454712919891 +691,Harry Potter,Daniel Radcliffe,10980,Timothy Spall as Peter Pettigrew,Alfred Enoch,234923,0,"[2, 2]",marries,0.00011705912766046822 +692,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",marries,4.056073521496728e-05 +693,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is in love with,5.434047125163488e-05 +694,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",is in couple with,0.001102248439565301 +695,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is in couple with,0.0006479830481112003 +696,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",is the father of,0.25191938877105713 +697,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is the father of,0.010118861682713032 +698,Peter Pettigrew,Timothy Spall,9191,Harry,Daniel Radcliffe,10980,32,"[2, 2]",is the father of,0.00430000014603138 +699,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",is the mother of,0.0015921444864943624 +700,Lord Voldemort,Ralph Fiennes,5469,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is the mother of,0.004862604662775993 +701,Peter Pettigrew,Timothy Spall,9191,Harry,Daniel Radcliffe,10980,32,"[2, 2]",is the mother of,0.000619677419308573 +702,Harry Potter,Daniel Radcliffe,10980,Peter Pettigrew,Timothy Spall,9191,32,"[2, 2]",is a friend of,0.0011452097678557038 +703,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is a friend of,6.824558658991009e-05 +704,Peter Pettigrew,Timothy Spall,9191,Harry,Daniel Radcliffe,10980,32,"[2, 2]",is in the family of,0.0014436471974477172 +705,Harry Potter,Daniel Radcliffe,10980,Voldemort,Ralph Fiennes,5469,26,"[2, 2]",is the enemy of,0.46045392751693726 +706,Lord Voldemort,Ralph Fiennes,5469,Peter Pettigrew,Timothy Spall,9191,6,"[2, 2]",is the enemy of,0.0002558762498665601 +707,Peter Pettigrew,Timothy Spall,9191,Voldemort,Ralph Fiennes,5469,6,"[2, 2]",is the enemy of,0.027698706835508347 +708,Ron Weasley,Rupert Grint,10989,Bonnie Wright portrays their sister Ginny,Bonnie Wright,10991,3,"[2, 1]",kisses,1.0584979008854134e-06 +709,Lucius Malfoy,Jason Isaacs,11355,Harry,Daniel Radcliffe,10980,26,"[2, 2]",kisses,5.173953354642435e-07 +710,Draco Malfoy,Tom Felton,10993,Harry,Daniel Radcliffe,10980,2,"[2, 2]",kisses,8.738390533835627e-06 +711,George Weasley,Oliver Phelps,140368,Ron,Rupert Grint,10989,2,"[2, 2]",kisses,2.5732495487318374e-05 +712,Neville Longbottom,Matthew Lewis,96841,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",kisses,1.26234044728335e-05 +713,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",kisses,0.00031378003768622875 +714,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",kisses,0.0002968083426821977 +715,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",kisses,1.3127369129506405e-05 +716,Harry Potter,Daniel Radcliffe,10980,Draco,Tom Felton,10993,2,"[2, 2]",sleeps with,8.78031860338524e-05 +717,Lucius Malfoy,Jason Isaacs,11355,Draco,Tom Felton,10993,24,"[2, 2]",sleeps with,7.660366100026295e-05 +718,Draco Malfoy,Tom Felton,10993,Harry,Daniel Radcliffe,10980,2,"[2, 2]",sleeps with,0.00036688815453089774 +719,Moaning Myrtle,Shirley Henderson,1834,Cornelius Fudge,Robert Hardy,23076,41,"[1, 2]",sleeps with,3.7486225323846156e-07 +720,Arthur Weasley,Mark Williams,20999,Ginny,Bonnie Wright,10991,32,"[2, 1]",sleeps with,4.8721682105679065e-05 +721,Fred Weasley,James Phelps,96851,Ron,Rupert Grint,10989,2,"[2, 2]",sleeps with,0.0007960553048178554 +722,George Weasley,Oliver Phelps,140368,Ron,Rupert Grint,10989,2,"[2, 2]",sleeps with,0.0016732834046706557 +723,Ginny Weasley,Bonnie Wright,10991,Arthur Weasley,Mark Williams,20999,32,"[1, 2]",sleeps with,0.0002844628179445863 +724,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",sleeps with,0.0708150789141655 +725,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",sleeps with,0.00885543879121542 +726,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",sleeps with,0.007128897588700056 +727,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",sleeps with,0.0002934684744104743 +728,James Potter,Adrian Rawlins,1643,Arthur Weasley,Mark Williams,20999,1,"[2, 2]",sleeps with,4.428526381161646e-07 +729,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",goes on a date with,0.00014463344996329397 +730,Lucius Malfoy,Jason Isaacs,11355,Harry,Daniel Radcliffe,10980,26,"[2, 2]",goes on a date with,0.0013369759544730186 +731,Draco Malfoy,Tom Felton,10993,Harry,Daniel Radcliffe,10980,2,"[2, 2]",goes on a date with,0.005997927393764257 +732,Arthur Weasley,Mark Williams,20999,Ginny,Bonnie Wright,10991,32,"[2, 1]",goes on a date with,4.4946475100005046e-05 +733,Fred Weasley,James Phelps,96851,George,Oliver Phelps,140368,0,"[2, 2]",goes on a date with,0.0033578353468328714 +734,George Weasley,Oliver Phelps,140368,Ron,Rupert Grint,10989,2,"[2, 2]",goes on a date with,0.006398951169103384 +735,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",goes on a date with,0.25704294443130493 +736,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",goes on a date with,0.10946255922317505 +737,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",goes on a date with,0.023654786869883537 +738,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",goes on a date with,0.00547361746430397 +739,James Potter,Adrian Rawlins,1643,Ron,Rupert Grint,10989,30,"[2, 2]",goes on a date with,9.858733847067924e-07 +740,Harry Potter,Daniel Radcliffe,10980,Draco,Tom Felton,10993,2,"[2, 2]",has sex with,0.00035422685323283076 +741,Lucius Malfoy,Jason Isaacs,11355,Draco,Tom Felton,10993,24,"[2, 2]",has sex with,0.003293232526630163 +742,Draco Malfoy,Tom Felton,10993,Harry,Daniel Radcliffe,10980,2,"[2, 2]",has sex with,0.0026669627986848354 +743,Fred Weasley,James Phelps,96851,Ron,Rupert Grint,10989,2,"[2, 2]",has sex with,0.0032566608861088753 +744,George Weasley,Oliver Phelps,140368,Ron,Rupert Grint,10989,2,"[2, 2]",has sex with,0.007499216590076685 +745,Ginny Weasley,Bonnie Wright,10991,Arthur Weasley,Mark Williams,20999,32,"[1, 2]",has sex with,0.00023063340631779283 +746,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",has sex with,0.050516434013843536 +747,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",has sex with,0.03460785746574402 +748,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",has sex with,0.002853326965123415 +749,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",has sex with,0.0014291165862232447 +750,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",marries,2.908059968831367e-06 +751,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",marries,0.007769105024635792 +752,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",marries,0.001117672654800117 +753,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in love with,9.46702275541611e-05 +754,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in love with,2.029644019785337e-05 +755,Lucius Malfoy,Jason Isaacs,11355,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is in love with,0.00036626483779400587 +756,Draco Malfoy,Tom Felton,10993,Harry,Daniel Radcliffe,10980,2,"[2, 2]",is in love with,0.004742340184748173 +757,Fred Weasley,James Phelps,96851,Ron,Rupert Grint,10989,2,"[2, 2]",is in love with,0.0025398586876690388 +758,George Weasley,Oliver Phelps,140368,Ron,Rupert Grint,10989,2,"[2, 2]",is in love with,0.003660459304228425 +759,Ginny Weasley,Bonnie Wright,10991,Ron,Rupert Grint,10989,3,"[1, 2]",is in love with,7.677152461837977e-05 +760,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",is in love with,0.009033650159835815 +761,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",is in love with,0.008258946239948273 +762,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",is in love with,0.001201701001264155 +763,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",is in love with,0.0005844943807460368 +764,James Potter,Adrian Rawlins,1643,Ron,Rupert Grint,10989,30,"[2, 2]",is in love with,4.495377083912899e-07 +765,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is in couple with,0.0007707243203185499 +766,Lucius Malfoy,Jason Isaacs,11355,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is in couple with,0.0013760594883933663 +767,Draco Malfoy,Tom Felton,10993,Harry,Daniel Radcliffe,10980,2,"[2, 2]",is in couple with,0.004507651552557945 +768,Fred Weasley,James Phelps,96851,George,Oliver Phelps,140368,0,"[2, 2]",is in couple with,0.276608407497406 +769,George Weasley,Oliver Phelps,140368,Fred,James Phelps,96851,0,"[2, 2]",is in couple with,0.03164913132786751 +770,Ginny Weasley,Bonnie Wright,10991,Ron,Rupert Grint,10989,3,"[1, 2]",is in couple with,0.0001231455971719697 +771,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",is in couple with,0.3120719790458679 +772,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",is in couple with,0.11207570880651474 +773,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",is in couple with,0.04330351948738098 +774,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",is in couple with,0.009510533884167671 +775,Harry Potter,Daniel Radcliffe,10980,Arthur Weasley,Mark Williams,20999,30,"[2, 2]",is the father of,0.5858624577522278 +776,Ron Weasley,Rupert Grint,10989,Arthur Weasley,Mark Williams,20999,29,"[2, 2]",is the father of,0.452230304479599 +777,Lucius Malfoy,Jason Isaacs,11355,Arthur Weasley,Mark Williams,20999,4,"[2, 2]",is the father of,0.1254812479019165 +778,Draco Malfoy,Tom Felton,10993,Lucius,Jason Isaacs,11355,24,"[2, 2]",is the father of,0.46977558732032776 +779,Moaning Myrtle,Shirley Henderson,1834,Cornelius Fudge,Robert Hardy,23076,41,"[1, 2]",is the father of,0.11288681626319885 +780,Fred Weasley,James Phelps,96851,Arthur Weasley,Mark Williams,20999,27,"[2, 2]",is the father of,0.30898237228393555 +781,George Weasley,Oliver Phelps,140368,Arthur Weasley,Mark Williams,20999,27,"[2, 2]",is the father of,0.4643263518810272 +782,Ginny Weasley,Bonnie Wright,10991,Arthur Weasley,Mark Williams,20999,32,"[1, 2]",is the father of,0.6021912097930908 +783,Neville Longbottom,Matthew Lewis,96841,Dean Thomas,Alfred Enoch,234923,0,"[2, 2]",is the father of,0.00033486043685115874 +784,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",is the father of,0.1711297631263733 +785,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",is the father of,0.009667525999248028 +786,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",is the father of,7.622875273227692e-05 +787,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",is the father of,0.006527811288833618 +788,James Potter,Adrian Rawlins,1643,Arthur Weasley,Mark Williams,20999,1,"[2, 2]",is the father of,0.031743768602609634 +789,Harry Potter,Daniel Radcliffe,10980,Ginny,Bonnie Wright,10991,2,"[2, 1]",is the mother of,0.048963725566864014 +790,Ron Weasley,Rupert Grint,10989,Ginny,Bonnie Wright,10991,3,"[2, 1]",is the mother of,0.03980425000190735 +791,Lucius Malfoy,Jason Isaacs,11355,Ginny,Bonnie Wright,10991,28,"[2, 1]",is the mother of,0.0009513218537904322 +792,Argus Filch,David Bradley,11180,Professor Filius Flitwick,Warwick Davis,11184,28,"[2, 2]",is the mother of,9.05884153326042e-05 +793,Draco Malfoy,Tom Felton,10993,Lucius,Jason Isaacs,11355,24,"[2, 2]",is the mother of,0.006149897817522287 +794,Arthur Weasley,Mark Williams,20999,Ginny,Bonnie Wright,10991,32,"[2, 1]",is the mother of,0.0008246477809734643 +795,Fred Weasley,James Phelps,96851,Ginny,Bonnie Wright,10991,5,"[2, 1]",is the mother of,0.011146118864417076 +796,George Weasley,Oliver Phelps,140368,Ginny,Bonnie Wright,10991,5,"[2, 1]",is the mother of,0.015621034428477287 +797,Neville Longbottom,Matthew Lewis,96841,Dean Thomas,Alfred Enoch,234923,0,"[2, 2]",is the mother of,4.577382424031384e-05 +798,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",is the mother of,0.027563869953155518 +799,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",is the mother of,0.004895150661468506 +800,Vincent Crabbe,Jamie Waylett,956224,Ginny,Bonnie Wright,10991,2,"[2, 1]",is the mother of,8.129695743264165e-06 +801,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",is the mother of,0.008097819052636623 +802,James Potter,Adrian Rawlins,1643,Ginny,Bonnie Wright,10991,33,"[2, 1]",is the mother of,0.0027740534860640764 +803,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",is a friend of,0.00028522577486000955 +804,Lucius Malfoy,Jason Isaacs,11355,Harry,Daniel Radcliffe,10980,26,"[2, 2]",is a friend of,1.1727252967830282e-05 +805,Draco Malfoy,Tom Felton,10993,Harry,Daniel Radcliffe,10980,2,"[2, 2]",is a friend of,5.058515671407804e-05 +806,Moaning Myrtle,Shirley Henderson,1834,Cornelius Fudge,Robert Hardy,23076,41,"[1, 2]",is a friend of,9.270049190490681e-07 +807,Fred Weasley,James Phelps,96851,George,Oliver Phelps,140368,0,"[2, 2]",is a friend of,0.0003258200304117054 +808,George Weasley,Oliver Phelps,140368,Ron,Rupert Grint,10989,2,"[2, 2]",is a friend of,0.00032913527684286237 +809,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",is a friend of,0.1334177553653717 +810,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",is a friend of,0.04738878458738327 +811,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",is a friend of,0.0005463099805638194 +812,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",is a friend of,0.00020340995979495347 +813,Harry Potter,Daniel Radcliffe,10980,Arthur Weasley,Mark Williams,20999,30,"[2, 2]",is in the family of,0.004934421740472317 +814,Lucius Malfoy,Jason Isaacs,11355,Draco,Tom Felton,10993,24,"[2, 2]",is in the family of,0.35401052236557007 +815,Draco Malfoy,Tom Felton,10993,Lucius Malfoy,Jason Isaacs,11355,24,"[2, 2]",is in the family of,0.05277577415108681 +816,Ginny Weasley,Bonnie Wright,10991,Arthur Weasley,Mark Williams,20999,32,"[1, 2]",is in the family of,0.04311775043606758 +817,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",is in the family of,0.00529065728187561 +818,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",is in the family of,0.010987420566380024 +819,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",is in the family of,5.2763854910153896e-05 +820,Gregory Goyle,Josh Herdman,11212,Crabbe,Jamie Waylett,956224,2,"[2, 2]",is in the family of,0.00022151805751491338 +821,Harry Potter,Daniel Radcliffe,10980,Draco,Tom Felton,10993,2,"[2, 2]",is the enemy of,0.547900378704071 +822,Ron Weasley,Rupert Grint,10989,Draco,Tom Felton,10993,1,"[2, 2]",is the enemy of,0.026678118854761124 +823,Lucius Malfoy,Jason Isaacs,11355,Draco,Tom Felton,10993,24,"[2, 2]",is the enemy of,0.1948036253452301 +824,Argus Filch,David Bradley,11180,Draco,Tom Felton,10993,45,"[2, 2]",is the enemy of,5.5550266552018e-05 +825,Filius Flitwick,Warwick Davis,11184,Draco,Tom Felton,10993,17,"[2, 2]",is the enemy of,7.037058821879327e-05 +826,Draco Malfoy,Tom Felton,10993,Harry,Daniel Radcliffe,10980,2,"[2, 2]",is the enemy of,0.7067006230354309 +827,Cornelius Fudge,Robert Hardy,23076,Draco,Tom Felton,10993,62,"[2, 2]",is the enemy of,8.410720329266042e-05 +828,Moaning Myrtle,Shirley Henderson,1834,Draco,Tom Felton,10993,21,"[1, 2]",is the enemy of,0.0001609925675438717 +829,Arthur Weasley,Mark Williams,20999,Draco,Tom Felton,10993,28,"[2, 2]",is the enemy of,0.007307331543415785 +830,Fred Weasley,James Phelps,96851,Draco,Tom Felton,10993,1,"[2, 2]",is the enemy of,0.011981675401329994 +831,George Weasley,Oliver Phelps,140368,Draco,Tom Felton,10993,1,"[2, 2]",is the enemy of,0.002775692380964756 +832,Ginny Weasley,Bonnie Wright,10991,Draco,Tom Felton,10993,4,"[1, 2]",is the enemy of,0.013573971576988697 +833,Seamus Finnigan,Devon Murray,234922,Dean Thomas,Alfred Enoch,234923,1,"[2, 2]",is the enemy of,0.02149607054889202 +834,Dean Thomas,Alfred Enoch,234923,Seamus Finnigan,Devon Murray,234922,1,"[2, 2]",is the enemy of,0.011120934970676899 +835,Vincent Crabbe,Jamie Waylett,956224,Goyle,Josh Herdman,11212,2,"[2, 2]",is the enemy of,0.014035860076546669 +836,Gregory Goyle,Josh Herdman,11212,Draco,Tom Felton,10993,0,"[2, 2]",is the enemy of,0.00044433935545384884 +837,James Potter,Adrian Rawlins,1643,Draco,Tom Felton,10993,29,"[2, 2]",is the enemy of,0.005321388132870197 +838,Harry Potter,Daniel Radcliffe,10980,Cho Chang,Katie Leung,234933,2,"[2, 1]",kisses,0.0024101559538394213 +839,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",kisses,0.00012747448636218905 +840,Igor Karkaroff,Predrag Bjelac,12044,Harry,Daniel Radcliffe,10980,27,"[2, 2]",kisses,3.6777063883164374e-07 +841,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",kisses,1.5485265976167284e-05 +842,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",kisses,6.4382188611489255e-06 +843,Harry Potter,Daniel Radcliffe,10980,Cho Chang,Katie Leung,234933,2,"[2, 1]",sleeps with,0.0019721556454896927 +844,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",sleeps with,0.0008062773267738521 +845,Olympe Maxime,Frances de la Tour,47468,Harry,Daniel Radcliffe,10980,45,"[1, 2]",sleeps with,1.0931393035207293e-06 +846,Igor Karkaroff,Predrag Bjelac,12044,Harry,Daniel Radcliffe,10980,27,"[2, 2]",sleeps with,5.303953685142915e-07 +847,Viktor Krum,Stanislav Yanevski,11290,Rita Skeeter,Miranda Richardson,8436,27,"[2, 1]",sleeps with,6.050043793948134e-06 +848,Cedric Diggory,Robert Pattinson,11288,Amos,Jeff Rawle,81022,35,"[2, 2]",sleeps with,6.128843233454973e-05 +849,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",sleeps with,4.4674103264696896e-05 +850,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",sleeps with,7.472544893971644e-06 +851,Amos Diggory,Jeff Rawle,81022,Jeff Rawle appears as Cedric's father,Alfred Enoch,234923,38,"[2, 2]",sleeps with,4.805613116332097e-06 +852,Cho Chang,Katie Leung,234933,Harry,Daniel Radcliffe,10980,2,"[1, 2]",sleeps with,0.07531292736530304 +853,Gabrielle Delacour,Angelica Mandy,1090780,Harry,Daniel Radcliffe,10980,3,"[1, 2]",sleeps with,4.3699026718968526e-05 +854,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",goes on a date with,0.24504515528678894 +855,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",goes on a date with,0.03846303001046181 +856,Igor Karkaroff,Predrag Bjelac,12044,Harry,Daniel Radcliffe,10980,27,"[2, 2]",goes on a date with,4.5335818867897615e-05 +857,Viktor Krum,Stanislav Yanevski,11290,Harry,Daniel Radcliffe,10980,4,"[2, 2]",goes on a date with,8.071115735219792e-05 +858,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",goes on a date with,0.0006462741876021028 +859,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",goes on a date with,0.0007572876638732851 +860,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",goes on a date with,7.371168612735346e-05 +861,Amos Diggory,Jeff Rawle,81022,Harry,Daniel Radcliffe,10980,38,"[2, 2]",goes on a date with,3.4742351999739185e-05 +862,Cho Chang,Katie Leung,234933,Harry,Daniel Radcliffe,10980,2,"[1, 2]",goes on a date with,0.44714686274528503 +863,Gabrielle Delacour,Angelica Mandy,1090780,Harry,Daniel Radcliffe,10980,3,"[1, 2]",goes on a date with,0.0005332357250154018 +864,Roger Davies,Henry Lloyd-Hughes,513677,Harry,Daniel Radcliffe,10980,4,"[2, 2]",goes on a date with,1.268858227376768e-07 +865,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",has sex with,0.0023361535277217627 +866,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",has sex with,0.0033664857037365437 +867,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",has sex with,0.0001820905163185671 +868,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",has sex with,7.43046184652485e-05 +869,Cho Chang,Katie Leung,234933,Harry,Daniel Radcliffe,10980,2,"[1, 2]",has sex with,0.3224542438983917 +870,Harry Potter,Daniel Radcliffe,10980,Ron,Rupert Grint,10989,1,"[2, 2]",marries,0.0009007923072203994 +871,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",marries,0.0006067630019970238 +872,Harry Potter,Daniel Radcliffe,10980,Cho Chang,Katie Leung,234933,2,"[2, 1]",is in love with,0.6987861394882202 +873,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in love with,0.0361996591091156 +874,Viktor Krum,Stanislav Yanevski,11290,Harry,Daniel Radcliffe,10980,4,"[2, 2]",is in love with,0.0005159208667464554 +875,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in love with,0.010830529034137726 +876,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",is in love with,0.005675111897289753 +877,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",is in love with,0.00196304963901639 +878,Amos Diggory,Jeff Rawle,81022,Harry,Daniel Radcliffe,10980,38,"[2, 2]",is in love with,0.0003676828637253493 +879,Cho Chang,Katie Leung,234933,Harry,Daniel Radcliffe,10980,2,"[1, 2]",is in love with,0.8709089159965515 +880,Gabrielle Delacour,Angelica Mandy,1090780,Harry,Daniel Radcliffe,10980,3,"[1, 2]",is in love with,0.006777429953217506 +881,Roger Davies,Henry Lloyd-Hughes,513677,Katie Leung appears as Cho Chang,Alfred Enoch,234923,4,"[2, 2]",is in love with,2.772661900962703e-06 +882,Harry Potter,Daniel Radcliffe,10980,Cho Chang,Katie Leung,234933,2,"[2, 1]",is in couple with,0.1107490137219429 +883,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is in couple with,0.03594038635492325 +884,Viktor Krum,Stanislav Yanevski,11290,Harry,Daniel Radcliffe,10980,4,"[2, 2]",is in couple with,0.00039134640246629715 +885,Cedric Diggory,Robert Pattinson,11288,Harry,Daniel Radcliffe,10980,3,"[2, 2]",is in couple with,0.010491077788174152 +886,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",is in couple with,0.0047851852141320705 +887,Barty Crouch Junior,David Tennant,20049,Harry,Daniel Radcliffe,10980,18,"[2, 2]",is in couple with,0.0019563406240195036 +888,Amos Diggory,Jeff Rawle,81022,Harry,Daniel Radcliffe,10980,38,"[2, 2]",is in couple with,0.00039386184653267264 +889,Cho Chang,Katie Leung,234933,Harry,Daniel Radcliffe,10980,2,"[1, 2]",is in couple with,0.7948440909385681 +890,Gabrielle Delacour,Angelica Mandy,1090780,Harry,Daniel Radcliffe,10980,3,"[1, 2]",is in couple with,0.005409414879977703 +891,Cedric Diggory,Robert Pattinson,11288,Amos,Jeff Rawle,81022,35,"[2, 2]",is the father of,0.32037442922592163 +892,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is the father of,0.0038175699301064014 +893,Parvati Patil,Shefali Chowdhury,234925,Padma,Afshan Azad,234926,0,"[1, 1]",is the father of,0.0003215185133740306 +894,Ron Weasley,Rupert Grint,10989,Padma Patil,Afshan Azad,234926,0,"[2, 1]",is the mother of,0.017904767766594887 +895,Barty Crouch Junior,David Tennant,20049,Amos,Jeff Rawle,81022,20,"[2, 2]",is the mother of,7.900301170593593e-06 +896,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is the mother of,0.47808638215065 +897,Parvati Patil,Shefali Chowdhury,234925,Padma,Afshan Azad,234926,0,"[1, 1]",is the mother of,0.16925464570522308 +898,Harry Potter,Daniel Radcliffe,10980,Cho Chang,Katie Leung,234933,2,"[2, 1]",is a friend of,0.007347775157541037 +899,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is a friend of,0.00034153222804889083 +900,Fleur Delacour,Clemence Poesy,11291,Cho Chang,Katie Leung,234933,5,"[1, 1]",is a friend of,0.0001927428093040362 +901,Barty Crouch Junior,David Tennant,20049,Cho Chang,Katie Leung,234933,16,"[2, 1]",is a friend of,1.273229941034515e-06 +902,Cho Chang,Katie Leung,234933,Harry,Daniel Radcliffe,10980,2,"[1, 2]",is a friend of,0.03698871284723282 +903,Gabrielle Delacour,Angelica Mandy,1090780,Cho Chang,Katie Leung,234933,5,"[1, 1]",is a friend of,0.00024975620908662677 +904,Harry Potter,Daniel Radcliffe,10980,Cedric Diggory,Robert Pattinson,11288,3,"[2, 2]",is in the family of,0.006692143157124519 +905,Cedric Diggory,Robert Pattinson,11288,father Amos,Jeff Rawle,81022,35,"[2, 2]",is in the family of,0.5205039381980896 +906,Amos Diggory,Jeff Rawle,81022,Jeff Rawle appears as Cedric's father,Alfred Enoch,234923,38,"[2, 2]",is in the family of,0.0018816804513335228 +907,Cho Chang,Katie Leung,234933,Harry,Daniel Radcliffe,10980,2,"[1, 2]",is in the family of,0.07385297864675522 +908,Padma Patil,Afshan Azad,234926,Parvati,Shefali Chowdhury,234925,0,"[1, 1]",is in the family of,0.09011708945035934 +909,Parvati Patil,Shefali Chowdhury,234925,Padma,Afshan Azad,234926,0,"[1, 1]",is in the family of,0.0007107267156243324 +910,Harry Potter,Daniel Radcliffe,10980,Cedric Diggory,Robert Pattinson,11288,3,"[2, 2]",is the enemy of,0.00030581222381442785 +911,Ron Weasley,Rupert Grint,10989,Harry,Daniel Radcliffe,10980,1,"[2, 2]",is the enemy of,0.00034195187618024647 +912,Rita Skeeter,Miranda Richardson,8436,Viktor Krum,Stanislav Yanevski,11290,27,"[1, 2]",is the enemy of,7.20092475603451e-06 +913,Olympe Maxime,Frances de la Tour,47468,Igor Karkaroff,Predrag Bjelac,12044,18,"[1, 2]",is the enemy of,1.4786816109335632e-06 +914,Viktor Krum,Stanislav Yanevski,11290,Rita Skeeter,Miranda Richardson,8436,27,"[2, 1]",is the enemy of,3.551941699697636e-05 +915,Cedric Diggory,Robert Pattinson,11288,Amos,Jeff Rawle,81022,35,"[2, 2]",is the enemy of,0.00010704030137276277 +916,Fleur Delacour,Clemence Poesy,11291,Harry,Daniel Radcliffe,10980,7,"[1, 2]",is the enemy of,3.975790150434477e-06 +917,Cho Chang,Katie Leung,234933,Harry,Daniel Radcliffe,10980,2,"[1, 2]",is the enemy of,0.011350635439157486 +918,Gabrielle Delacour,Angelica Mandy,1090780,Cho Chang,Katie Leung,234933,5,"[1, 1]",is the enemy of,4.644543423637515e-06 diff --git a/notebooks/age_gap/hp4_chars_relationships.html b/notebooks/age_gap/hp4_chars_relationships.html new file mode 100644 index 0000000..227875d --- /dev/null +++ b/notebooks/age_gap/hp4_chars_relationships.html @@ -0,0 +1,108 @@ + + + + +
+

+
+ + + + + + + + +
+ + + + + \ No newline at end of file diff --git a/notebooks/age_gap/hp4_chars_relationships_circular.html b/notebooks/age_gap/hp4_chars_relationships_circular.html new file mode 100644 index 0000000..438e33a --- /dev/null +++ b/notebooks/age_gap/hp4_chars_relationships_circular.html @@ -0,0 +1,108 @@ + + + + +
+

+
+ + + + + + + + +
+ + + + + \ No newline at end of file diff --git a/notebooks/age_gap/lebowski.csv b/notebooks/age_gap/lebowski.csv new file mode 100644 index 0000000..c2d4ed9 --- /dev/null +++ b/notebooks/age_gap/lebowski.csv @@ -0,0 +1,533 @@ +,character1,star1,star_id1,character2,star2,star_id2,age_gap,genders,question,score +0,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",kisses,1.4812725567026064e-05 +1,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",kisses,4.553976395982318e-06 +2,The Big,David Huddleston,1232,Jackie Treehorn,Ben Gazzara,856,0,"[2, 2]",kisses,2.187761856475845e-05 +3,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",kisses,5.324226549419109e-06 +4,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",kisses,3.1918191325530643e-06 +5,the Malibu Police Chief,Leon Russom,169920,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,8,"[2, 2]",kisses,7.804849389003721e-08 +6,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",sleeps with,0.01739129051566124 +7,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",sleeps with,3.346806261106394e-05 +8,The Big,David Huddleston,1232,Jackie Treehorn,Ben Gazzara,856,0,"[2, 2]",sleeps with,0.001513503142632544 +9,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",sleeps with,4.2343726818216965e-05 +10,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",sleeps with,0.0003131652483716607 +11,Jackie Treehorn,Ben Gazzara,856,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,19,"[2, 2]",sleeps with,0.010788513347506523 +12,the Malibu Police Chief,Leon Russom,169920,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,8,"[2, 2]",sleeps with,4.283888756617671e-06 +13,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",goes on a date with,0.08055385202169418 +14,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",goes on a date with,0.00037111793062649667 +15,The Big,David Huddleston,1232,Jackie Treehorn,Ben Gazzara,856,0,"[2, 2]",goes on a date with,0.0014137764228507876 +16,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",goes on a date with,6.17938712821342e-05 +17,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",goes on a date with,0.00028983416268602014 +18,Jackie Treehorn,Ben Gazzara,856,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,19,"[2, 2]",goes on a date with,0.03793257474899292 +19,the Malibu Police Chief,Leon Russom,169920,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,8,"[2, 2]",goes on a date with,1.0569834557827562e-05 +20,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",has sex with,0.2509578466415405 +21,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",has sex with,0.00023197483096737415 +22,The Big,David Huddleston,1232,Jackie Treehorn,Ben Gazzara,856,0,"[2, 2]",has sex with,0.013219126500189304 +23,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",has sex with,3.1499264878220856e-05 +24,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",has sex with,0.0010329431388527155 +25,Jackie Treehorn,Ben Gazzara,856,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,19,"[2, 2]",has sex with,0.01298939622938633 +26,the Malibu Police Chief,Leon Russom,169920,Jackie Treehorn,Ben Gazzara,856,11,"[2, 2]",has sex with,2.7914480597246438e-05 +27,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",marries,0.0007131330203264952 +28,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",marries,0.000250463024713099 +29,The Big,David Huddleston,1232,Jackie Treehorn,Ben Gazzara,856,0,"[2, 2]",marries,0.0006603061920031905 +30,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",marries,4.037189864902757e-05 +31,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",marries,4.456674651009962e-05 +32,the Malibu Police Chief,Leon Russom,169920,Jackie Treehorn,Ben Gazzara,856,11,"[2, 2]",marries,1.3145420325599844e-06 +33,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",is in love with,0.000889794435352087 +34,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",is in love with,7.514948811149225e-05 +35,The Big,David Huddleston,1232,Jackie Treehorn,Ben Gazzara,856,0,"[2, 2]",is in love with,0.0006121081532910466 +36,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",is in love with,1.1877734323206823e-05 +37,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",is in love with,2.799547291942872e-05 +38,Jackie Treehorn,Ben Gazzara,856,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,19,"[2, 2]",is in love with,0.004048026166856289 +39,the Malibu Police Chief,Leon Russom,169920,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,8,"[2, 2]",is in love with,1.1291993359918706e-05 +40,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",is in couple with,0.19587291777133942 +41,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",is in couple with,0.0025932099670171738 +42,The Big,David Huddleston,1232,Jackie Treehorn,Ben Gazzara,856,0,"[2, 2]",is in couple with,0.025069650262594223 +43,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",is in couple with,0.0002104796003550291 +44,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",is in couple with,0.0005580766592174768 +45,the Malibu Police Chief,Leon Russom,169920,Jackie Treehorn,Ben Gazzara,856,11,"[2, 2]",is in couple with,2.291598320880439e-05 +46,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",is the father of,0.13830925524234772 +47,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",is the father of,0.01480341237038374 +48,The Big,David Huddleston,1232,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,19,"[2, 2]",is the father of,0.04618799686431885 +49,Bunny Lebowski,Tara Reid,1234,"Jeffrey ""The Dude",Jeff Bridges,1229,26,"[1, 2]",is the father of,0.011473972350358963 +50,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",is the father of,0.000619790400378406 +51,Jackie Treehorn,Ben Gazzara,856,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,19,"[2, 2]",is the father of,0.12568193674087524 +52,the Malibu Police Chief,Leon Russom,169920,"Jeffrey ""The Dude"" Lebowski",Jeff Bridges,1229,8,"[2, 2]",is the father of,4.912930671707727e-05 +53,The Dude,Jeff Bridges,1229,Jackie Treehorn,Ben Gazzara,856,19,"[2, 2]",is the mother of,0.0843605175614357 +54,Maude Lebowski,Julianne Moore,1231,Jackie Treehorn,Ben Gazzara,856,30,"[1, 2]",is the mother of,0.00014701401232741773 +55,The Big,David Huddleston,1232,Jackie Treehorn,Ben Gazzara,856,0,"[2, 2]",is the mother of,0.005983238108456135 +56,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",is the mother of,0.00018329473095946014 +57,The Stranger,Sam Elliott,16431,Jackie Treehorn,Ben Gazzara,856,14,"[2, 2]",is the mother of,0.0002387009735684842 +58,the Malibu Police Chief,Leon Russom,169920,Jackie Treehorn,Ben Gazzara,856,11,"[2, 2]",is the mother of,1.6805133782327175e-05 +59,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",kisses,0.005193002056330442 +60,Walter Sobchak,John Goodman,1230,Donny Kerabatsos,Steve Buscemi,884,5,"[2, 2]",kisses,3.7635112676071e-05 +61,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",kisses,1.1257803635089658e-05 +62,Donny Kerabatsos,Steve Buscemi,884,Walter Sobchak,John Goodman,1230,5,"[2, 2]",kisses,7.528782589361072e-05 +63,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",kisses,0.0005288832471705973 +64,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",kisses,0.00017378314805682749 +65,Uli Kunkel/Karl Hungus,Flea,1237,Bunny,Tara Reid,1234,13,"[2, 1]",kisses,0.0007562469691038132 +66,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",kisses,1.0346696399210487e-05 +67,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",kisses,1.0259117289024289e-06 +68,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",sleeps with,0.03772883862257004 +69,Walter Sobchak,John Goodman,1230,Donny Kerabatsos,Steve Buscemi,884,5,"[2, 2]",sleeps with,0.0007884657243266702 +70,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",sleeps with,0.0002512288047000766 +71,Donny Kerabatsos,Steve Buscemi,884,Walter Sobchak,John Goodman,1230,5,"[2, 2]",sleeps with,0.006769146770238876 +72,Brandt,Philip Seymour Hoffman,1233,Bunny,Tara Reid,1234,8,"[2, 1]",sleeps with,4.356239514891058e-06 +73,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",sleeps with,0.007752189412713051 +74,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",sleeps with,0.001032311120070517 +75,Uli Kunkel/Karl Hungus,Flea,1237,Bunny,Tara Reid,1234,13,"[2, 1]",sleeps with,0.015195077285170555 +76,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",sleeps with,0.00013632660557050258 +77,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",sleeps with,1.5893361705821007e-05 +78,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",goes on a date with,0.377450168132782 +79,Donny Kerabatsos,Steve Buscemi,884,Walter Sobchak,John Goodman,1230,5,"[2, 2]",goes on a date with,0.05867386609315872 +80,Brandt,Philip Seymour Hoffman,1233,Bunny,Tara Reid,1234,8,"[2, 1]",goes on a date with,0.0002741265925578773 +81,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",goes on a date with,0.351595014333725 +82,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",goes on a date with,0.025959165766835213 +83,Uli Kunkel/Karl Hungus,Flea,1237,Bunny,Tara Reid,1234,13,"[2, 1]",goes on a date with,0.166961207985878 +84,Treehorn's thugs,Mark Pellegrino,1236,Dude,Jeff Bridges,1229,16,"[2, 2]",goes on a date with,0.001701359637081623 +85,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",goes on a date with,0.003151367185637355 +86,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",has sex with,0.18246714770793915 +87,Walter Sobchak,John Goodman,1230,Donny Kerabatsos,Steve Buscemi,884,5,"[2, 2]",has sex with,0.001056963694281876 +88,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",has sex with,0.00022489242837764323 +89,Donny Kerabatsos,Steve Buscemi,884,Walter Sobchak,John Goodman,1230,5,"[2, 2]",has sex with,0.01330857165157795 +90,Brandt,Philip Seymour Hoffman,1233,Dude,Jeff Bridges,1229,18,"[2, 2]",has sex with,7.742261004750617e-06 +91,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",has sex with,0.025396671146154404 +92,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",has sex with,0.0018126660725101829 +93,Uli Kunkel/Karl Hungus,Flea,1237,Bunny,Tara Reid,1234,13,"[2, 1]",has sex with,0.014712189324200153 +94,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",has sex with,9.594920265953988e-05 +95,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",has sex with,9.904137550620362e-05 +96,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",marries,0.09065522998571396 +97,Walter Sobchak,John Goodman,1230,Donny Kerabatsos,Steve Buscemi,884,5,"[2, 2]",marries,0.0002330657298443839 +98,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",marries,0.0002634892298374325 +99,Donny Kerabatsos,Steve Buscemi,884,Walter Sobchak,John Goodman,1230,5,"[2, 2]",marries,0.00172249018214643 +100,Brandt,Philip Seymour Hoffman,1233,Dude,Jeff Bridges,1229,18,"[2, 2]",marries,5.408514311966428e-07 +101,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",marries,0.003275779541581869 +102,Bunny Lebowski,Tara Reid,1234,The Dude,Jeff Bridges,1229,26,"[1, 2]",marries,0.0015247873961925507 +103,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",marries,0.0006964606000110507 +104,Uli Kunkel/Karl Hungus,Flea,1237,Bunny,Tara Reid,1234,13,"[2, 1]",marries,0.007348864804953337 +105,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",marries,0.0002228773373644799 +106,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",marries,3.914467743015848e-05 +107,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is in love with,0.15468235313892365 +108,Walter Sobchak,John Goodman,1230,Donny Kerabatsos,Steve Buscemi,884,5,"[2, 2]",is in love with,6.247730925679207e-05 +109,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is in love with,0.0008234689012169838 +110,Donny Kerabatsos,Steve Buscemi,884,Walter Sobchak,John Goodman,1230,5,"[2, 2]",is in love with,0.0004399031458888203 +111,Brandt,Philip Seymour Hoffman,1233,Bunny,Tara Reid,1234,8,"[2, 1]",is in love with,3.2119557999976678e-06 +112,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",is in love with,0.00987281370908022 +113,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",is in love with,0.0034112809225916862 +114,Uli Kunkel/Karl Hungus,Flea,1237,Bunny,Tara Reid,1234,13,"[2, 1]",is in love with,0.050171736627817154 +115,Treehorn's thugs,Mark Pellegrino,1236,Maude,Julianne Moore,1231,5,"[2, 1]",is in love with,0.0003852371301036328 +116,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",is in love with,0.0009232991724275053 +117,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is in couple with,0.5566124320030212 +118,Walter Sobchak,John Goodman,1230,Donny Kerabatsos,Steve Buscemi,884,5,"[2, 2]",is in couple with,0.5156876444816589 +119,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is in couple with,0.05855179578065872 +120,Donny Kerabatsos,Steve Buscemi,884,Walter Sobchak,John Goodman,1230,5,"[2, 2]",is in couple with,0.3632311224937439 +121,Brandt,Philip Seymour Hoffman,1233,Bunny,Tara Reid,1234,8,"[2, 1]",is in couple with,0.0012712294701486826 +122,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",is in couple with,0.2456556260585785 +123,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",is in couple with,0.021196063607931137 +124,Uli Kunkel/Karl Hungus,Flea,1237,Bunny,Tara Reid,1234,13,"[2, 1]",is in couple with,0.2134191244840622 +125,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",is in couple with,0.0036462624557316303 +126,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",is in couple with,0.0013800839660689235 +127,Walter Sobchak,John Goodman,1230,Donny Kerabatsos,Steve Buscemi,884,5,"[2, 2]",is the father of,0.26199039816856384 +128,Donny Kerabatsos,Steve Buscemi,884,Walter Sobchak,John Goodman,1230,5,"[2, 2]",is the father of,0.16951194405555725 +129,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is the mother of,0.23121881484985352 +130,Walter Sobchak,John Goodman,1230,Donny Kerabatsos,Steve Buscemi,884,5,"[2, 2]",is the mother of,0.008033312857151031 +131,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is the mother of,0.11417538672685623 +132,Donny Kerabatsos,Steve Buscemi,884,Bunny,Tara Reid,1234,18,"[2, 1]",is the mother of,0.006955097895115614 +133,Brandt,Philip Seymour Hoffman,1233,Bunny,Tara Reid,1234,8,"[2, 1]",is the mother of,0.003969315905123949 +134,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",is the mother of,0.13078555464744568 +135,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",is the mother of,0.015592058189213276 +136,Uli Kunkel/Karl Hungus,Flea,1237,Bunny,Tara Reid,1234,13,"[2, 1]",is the mother of,0.3080085813999176 +137,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",is the mother of,0.00459298025816679 +138,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",is the mother of,0.02957209013402462 +139,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",kisses,0.000625342596322298 +140,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",kisses,0.038306139409542084 +141,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",kisses,5.4911170082050376e-06 +142,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",kisses,0.0010339015861973166 +143,Bunny Lebowski,Tara Reid,1234,The Dude,Jeff Bridges,1229,26,"[1, 2]",kisses,1.9291315766167827e-05 +144,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",kisses,0.00011549380724318326 +145,the Malibu Police Chief,Leon Russom,169920,The Dude,Jeff Bridges,1229,8,"[2, 2]",kisses,8.603607420809567e-05 +146,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",sleeps with,0.001772899879142642 +147,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",sleeps with,0.11454718559980392 +148,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",sleeps with,2.4886821847758256e-05 +149,The Big,David Huddleston,1232,The Dude,Jeff Bridges,1229,19,"[2, 2]",sleeps with,0.0015153740532696247 +150,Bunny Lebowski,Tara Reid,1234,The Dude,Jeff Bridges,1229,26,"[1, 2]",sleeps with,0.00017960320110432804 +151,The Stranger,Sam Elliott,16431,"Bunny ""kidnapped herself"", Walter",Tara Reid,1234,31,"[2, 1]",sleeps with,0.00032246491173282266 +152,the Malibu Police Chief,Leon Russom,169920,The Dude,Jeff Bridges,1229,8,"[2, 2]",sleeps with,0.00026417424669489264 +153,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",goes on a date with,0.04288312420248985 +154,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",goes on a date with,0.6351117491722107 +155,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",goes on a date with,0.000585694273468107 +156,The Stranger,Sam Elliott,16431,The Dude,Jeff Bridges,1229,5,"[2, 2]",goes on a date with,0.005793997086584568 +157,the Malibu Police Chief,Leon Russom,169920,The Dude,Jeff Bridges,1229,8,"[2, 2]",goes on a date with,0.0026932330802083015 +158,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",has sex with,0.01336701214313507 +159,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",has sex with,0.22679319977760315 +160,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",has sex with,3.28302412526682e-05 +161,Bunny Lebowski,Tara Reid,1234,The Dude,Jeff Bridges,1229,26,"[1, 2]",has sex with,0.00034028381924144924 +162,the Malibu Police Chief,Leon Russom,169920,The Dude,Jeff Bridges,1229,8,"[2, 2]",has sex with,0.0011595682008191943 +163,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",marries,0.03207670897245407 +164,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",marries,0.02826990745961666 +165,Maude Lebowski,Julianne Moore,1231,Walter,John Goodman,1230,8,"[1, 2]",marries,1.0825004210346378e-05 +166,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",marries,0.004097107797861099 +167,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",marries,9.789684554561973e-05 +168,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",marries,0.0008569071651436388 +169,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",marries,0.00021949036454316229 +170,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",is in love with,0.2469227910041809 +171,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",is in love with,4.804097261512652e-05 +172,Bunny Lebowski,Tara Reid,1234,The Dude,Jeff Bridges,1229,26,"[1, 2]",is in love with,0.00031019916059449315 +173,The Stranger,Sam Elliott,16431,The Dude,Jeff Bridges,1229,5,"[2, 2]",is in love with,0.0020486004650592804 +174,the Malibu Police Chief,Leon Russom,169920,The Dude,Jeff Bridges,1229,8,"[2, 2]",is in love with,0.005278223659843206 +175,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",is in couple with,0.051843807101249695 +176,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",is in couple with,0.332060307264328 +177,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",is in couple with,0.0001905204844661057 +178,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",is in couple with,0.01246738899499178 +179,Bunny Lebowski,Tara Reid,1234,The Dude,Jeff Bridges,1229,26,"[1, 2]",is in couple with,0.00046890939120203257 +180,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",is in couple with,0.0029041364323347807 +181,the Malibu Police Chief,Leon Russom,169920,The Dude,Jeff Bridges,1229,8,"[2, 2]",is in couple with,0.0007411057013086975 +182,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",is the father of,0.02654062770307064 +183,Maude Lebowski,Julianne Moore,1231,Walter,John Goodman,1230,8,"[1, 2]",is the father of,8.643942419439554e-05 +184,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",is the father of,0.038522057235240936 +185,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",is the father of,0.0003203683882020414 +186,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",is the father of,0.021237200126051903 +187,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",is the father of,0.008570262230932713 +188,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is the mother of,0.0237351655960083 +189,Walter Sobchak,John Goodman,1230,Bunny,Tara Reid,1234,23,"[2, 1]",is the mother of,0.05982740968465805 +190,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is the mother of,4.982725840818603e-06 +191,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",is the mother of,0.055752310901880264 +192,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",is the mother of,4.623675704351626e-05 +193,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",is the mother of,0.029941922053694725 +194,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",is the mother of,0.013654991053044796 +195,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",kisses,0.0003680817608255893 +196,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",kisses,0.0004198739770799875 +197,Jackie Treehorn,Ben Gazzara,856,Bunny,Tara Reid,1234,45,"[2, 1]",kisses,0.0033822173718363047 +198,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",kisses,0.00037584532401524484 +199,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",kisses,3.216474215150811e-05 +200,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",sleeps with,0.005471952259540558 +201,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",sleeps with,0.0001350763050140813 +202,Bunny Lebowski,Tara Reid,1234,Dude,Jeff Bridges,1229,26,"[1, 2]",sleeps with,0.0006474694237112999 +203,Jackie Treehorn,Ben Gazzara,856,Bunny,Tara Reid,1234,45,"[2, 1]",sleeps with,0.010717058554291725 +204,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",sleeps with,7.331426604650915e-05 +205,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",sleeps with,9.876835974864662e-05 +206,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",goes on a date with,0.07095643877983093 +207,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",goes on a date with,0.005168350413441658 +208,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",goes on a date with,0.04504648968577385 +209,Jackie Treehorn,Ben Gazzara,856,Maude,Julianne Moore,1231,30,"[2, 1]",goes on a date with,0.11807365715503693 +210,Treehorn's thugs,Mark Pellegrino,1236,Maude,Julianne Moore,1231,5,"[2, 1]",goes on a date with,0.0015588324749842286 +211,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",goes on a date with,0.004899142310023308 +212,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",has sex with,0.05110330879688263 +213,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",has sex with,0.0018582561751827598 +214,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",has sex with,0.006226059049367905 +215,Jackie Treehorn,Ben Gazzara,856,Bunny,Tara Reid,1234,45,"[2, 1]",has sex with,0.16092580556869507 +216,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",has sex with,0.0005760084022767842 +217,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",has sex with,0.0006606573588214815 +218,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",marries,0.00722461985424161 +219,Maude Lebowski,Julianne Moore,1231,Dude,Jeff Bridges,1229,11,"[1, 2]",marries,0.0002478086098562926 +220,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",marries,0.001216435106471181 +221,Jackie Treehorn,Ben Gazzara,856,Maude,Julianne Moore,1231,30,"[2, 1]",marries,0.0035011209547519684 +222,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",marries,9.930266242008656e-05 +223,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is in love with,0.0015256425831466913 +224,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",is in love with,0.004456820897758007 +225,Jackie Treehorn,Ben Gazzara,856,Bunny,Tara Reid,1234,45,"[2, 1]",is in love with,0.2400757521390915 +226,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",is in love with,0.002247333526611328 +227,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",is in love with,0.0018355845240876079 +228,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is in couple with,0.13661693036556244 +229,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is in couple with,0.013644821010529995 +230,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",is in couple with,0.02633291482925415 +231,Jackie Treehorn,Ben Gazzara,856,Bunny,Tara Reid,1234,45,"[2, 1]",is in couple with,0.3738318085670471 +232,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",is in couple with,0.001694715698249638 +233,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is the father of,0.008827119134366512 +234,Maude Lebowski,Julianne Moore,1231,Dude,Jeff Bridges,1229,11,"[1, 2]",is the father of,0.033663369715213776 +235,Bunny Lebowski,Tara Reid,1234,Dude,Jeff Bridges,1229,26,"[1, 2]",is the father of,0.04062870144844055 +236,Jackie Treehorn,Ben Gazzara,856,Dude,Jeff Bridges,1229,19,"[2, 2]",is the father of,0.10877373814582825 +237,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",is the father of,0.02142530307173729 +238,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is the mother of,0.14537109434604645 +239,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is the mother of,0.004319641273468733 +240,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",is the mother of,0.016087371855974197 +241,Jackie Treehorn,Ben Gazzara,856,Bunny,Tara Reid,1234,45,"[2, 1]",is the mother of,0.22381287813186646 +242,Treehorn's thugs,Mark Pellegrino,1236,Bunny,Tara Reid,1234,10,"[2, 1]",is the mother of,0.0017550034681335092 +243,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",kisses,0.0013229266041889787 +244,Walter Sobchak,John Goodman,1230,Larry Sellers,Jesse Flanagan,1667649,30,"[2, 2]",kisses,5.857751148141688e-06 +245,Maude Lebowski,Julianne Moore,1231,Walter,John Goodman,1230,8,"[1, 2]",kisses,1.6380268789362162e-05 +246,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",kisses,0.0029485258273780346 +247,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",kisses,0.0002886983857024461 +248,Arthur Digby Sellers,Harry Bugin,4510,Walter,John Goodman,1230,23,"[0, 2]",kisses,0.0001097095591831021 +249,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",kisses,6.502123142126948e-05 +250,Larry Sellers,Jesse Flanagan,1667649,Walter,John Goodman,1230,30,"[2, 2]",kisses,0.0001612849155208096 +251,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",sleeps with,0.012144980952143669 +252,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",sleeps with,6.546849181177095e-05 +253,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",sleeps with,9.677992784418166e-05 +254,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",sleeps with,0.017256665974855423 +255,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",sleeps with,0.0027589399833232164 +256,Arthur Digby Sellers,Harry Bugin,4510,Walter,John Goodman,1230,23,"[0, 2]",sleeps with,3.05671856040135e-05 +257,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",sleeps with,0.00010782455501612276 +258,Larry Sellers,Jesse Flanagan,1667649,Walter,John Goodman,1230,30,"[2, 2]",sleeps with,0.00033178896410390735 +259,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",goes on a date with,0.4505068063735962 +260,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",goes on a date with,0.011682843789458275 +261,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",goes on a date with,0.020570050925016403 +262,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",goes on a date with,0.1522330790758133 +263,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",goes on a date with,0.006148149725049734 +264,Arthur Digby Sellers,Harry Bugin,4510,Walter,John Goodman,1230,23,"[0, 2]",goes on a date with,0.0004939131904393435 +265,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",goes on a date with,0.00295417383313179 +266,Larry Sellers,Jesse Flanagan,1667649,Walter,John Goodman,1230,30,"[2, 2]",goes on a date with,0.0037225147243589163 +267,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",has sex with,0.031172014772892 +268,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",has sex with,6.665904948022217e-05 +269,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",has sex with,0.00029544770950451493 +270,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",has sex with,0.027581719681620598 +271,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",has sex with,0.003863648045808077 +272,Arthur Digby Sellers,Harry Bugin,4510,Walter,John Goodman,1230,23,"[0, 2]",has sex with,0.0001960212830454111 +273,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",has sex with,0.00026726233772933483 +274,Larry Sellers,Jesse Flanagan,1667649,Walter,John Goodman,1230,30,"[2, 2]",has sex with,0.0015084802871569991 +275,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",marries,0.011196711100637913 +276,Walter Sobchak,John Goodman,1230,Larry Sellers,Jesse Flanagan,1667649,30,"[2, 2]",marries,1.4281968105933629e-05 +277,Maude Lebowski,Julianne Moore,1231,Walter,John Goodman,1230,8,"[1, 2]",marries,2.1783172996947542e-05 +278,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",marries,0.01464433316141367 +279,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",marries,0.0027073596138507128 +280,Arthur Digby Sellers,Harry Bugin,4510,Walter,John Goodman,1230,23,"[0, 2]",marries,2.2680354959447868e-05 +281,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",marries,0.0001007027312880382 +282,Larry Sellers,Jesse Flanagan,1667649,Walter,John Goodman,1230,30,"[2, 2]",marries,0.0006618508487008512 +283,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",is in love with,0.03465671464800835 +284,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",is in love with,0.0003526071668602526 +285,Maude Lebowski,Julianne Moore,1231,Dude,Jeff Bridges,1229,11,"[1, 2]",is in love with,0.00014337037282530218 +286,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",is in love with,0.04197164997458458 +287,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",is in love with,0.010069803334772587 +288,Arthur Digby Sellers,Harry Bugin,4510,Walter,John Goodman,1230,23,"[0, 2]",is in love with,0.00046484783524647355 +289,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",is in love with,0.0005439755623228848 +290,Larry Sellers,Jesse Flanagan,1667649,Walter,John Goodman,1230,30,"[2, 2]",is in love with,0.0015715938061475754 +291,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",is in couple with,0.046179819852113724 +292,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",is in couple with,0.0010177093790844083 +293,Maude Lebowski,Julianne Moore,1231,Walter,John Goodman,1230,8,"[1, 2]",is in couple with,0.00033898584661073983 +294,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",is in couple with,0.04143211618065834 +295,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",is in couple with,0.0038471685256808996 +296,Arthur Digby Sellers,Harry Bugin,4510,Walter,John Goodman,1230,23,"[0, 2]",is in couple with,0.00033256105962209404 +297,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",is in couple with,0.00028884553466923535 +298,Larry Sellers,Jesse Flanagan,1667649,Walter,John Goodman,1230,30,"[2, 2]",is in couple with,0.0006922981119714677 +299,The Dude,Jeff Bridges,1229,Larry Sellers,Jesse Flanagan,1667649,33,"[2, 2]",is the father of,0.40373340249061584 +300,Walter Sobchak,John Goodman,1230,Larry Sellers,Jesse Flanagan,1667649,30,"[2, 2]",is the father of,0.20223765075206757 +301,Maude Lebowski,Julianne Moore,1231,Larry Sellers,Jesse Flanagan,1667649,22,"[1, 2]",is the father of,0.04490293189883232 +302,The Big,David Huddleston,1232,Larry Sellers,Jesse Flanagan,1667649,52,"[2, 2]",is the father of,0.3454550504684448 +303,The Stranger,Sam Elliott,16431,Larry Sellers,Jesse Flanagan,1667649,38,"[2, 2]",is the father of,0.12672299146652222 +304,Arthur Digby Sellers,Harry Bugin,4510,Larry Sellers,Jesse Flanagan,1667649,53,"[0, 2]",is the father of,0.011552182026207447 +305,the Malibu Police Chief,Leon Russom,169920,Larry Sellers,Jesse Flanagan,1667649,41,"[2, 2]",is the father of,0.04051940143108368 +306,Larry Sellers,Jesse Flanagan,1667649,Walter,John Goodman,1230,30,"[2, 2]",is the father of,0.22396321594715118 +307,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",is the mother of,0.6473472118377686 +308,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",is the mother of,0.01760719157755375 +309,Maude Lebowski,Julianne Moore,1231,Larry Sellers,Jesse Flanagan,1667649,22,"[1, 2]",is the mother of,0.0013478373875841498 +310,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",is the mother of,0.4488241672515869 +311,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",is the mother of,0.014527421444654465 +312,Arthur Digby Sellers,Harry Bugin,4510,Maude,Julianne Moore,1231,31,"[0, 1]",is the mother of,0.011267931200563908 +313,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",is the mother of,0.025349918752908707 +314,Larry Sellers,Jesse Flanagan,1667649,Maude,Julianne Moore,1231,22,"[2, 1]",is the mother of,0.06499523669481277 +315,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",kisses,0.0014867838472127914 +316,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",kisses,3.761069820029661e-06 +317,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",kisses,0.000501931004691869 +318,Bunny Lebowski,Tara Reid,1234,Dude,Jeff Bridges,1229,26,"[1, 2]",kisses,0.0001252198708243668 +319,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",kisses,2.732438406383153e-05 +320,Jackie Treehorn,Ben Gazzara,856,Dude,Jeff Bridges,1229,19,"[2, 2]",kisses,3.4370079902146244e-06 +321,Treehorn's thugs,Mark Pellegrino,1236,Dude,Jeff Bridges,1229,16,"[2, 2]",kisses,1.0367355116613908e-06 +322,Arthur Digby Sellers,Harry Bugin,4510,Bunny,Tara Reid,1234,46,"[0, 1]",kisses,1.0896960702666547e-06 +323,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",kisses,2.9949344337865114e-08 +324,Larry Sellers,Jesse Flanagan,1667649,Bunny,Tara Reid,1234,7,"[2, 1]",kisses,1.6022366253309883e-05 +325,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",sleeps with,0.006292277947068214 +326,Maude Lebowski,Julianne Moore,1231,Dude,Jeff Bridges,1229,11,"[1, 2]",sleeps with,8.980516213341616e-06 +327,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",sleeps with,0.001241647987626493 +328,Bunny Lebowski,Tara Reid,1234,Dude,Jeff Bridges,1229,26,"[1, 2]",sleeps with,0.0025391995441168547 +329,The Stranger,Sam Elliott,16431,Larry Sellers,Jesse Flanagan,1667649,38,"[2, 2]",sleeps with,3.779561666306108e-05 +330,Jackie Treehorn,Ben Gazzara,856,Dude,Jeff Bridges,1229,19,"[2, 2]",sleeps with,0.00032959322561509907 +331,Treehorn's thugs,Mark Pellegrino,1236,Dude,Jeff Bridges,1229,16,"[2, 2]",sleeps with,0.0007483806693926454 +332,Arthur Digby Sellers,Harry Bugin,4510,Bunny,Tara Reid,1234,46,"[0, 1]",sleeps with,3.296086788395769e-06 +333,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",sleeps with,3.393954102648422e-06 +334,Larry Sellers,Jesse Flanagan,1667649,Bunny,Tara Reid,1234,7,"[2, 1]",sleeps with,0.0006374910590238869 +335,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",goes on a date with,0.03665613383054733 +336,Maude Lebowski,Julianne Moore,1231,Dude,Jeff Bridges,1229,11,"[1, 2]",goes on a date with,0.00027458928525447845 +337,The Big,David Huddleston,1232,Dude,Jeff Bridges,1229,19,"[2, 2]",goes on a date with,0.021135056391358376 +338,Bunny Lebowski,Tara Reid,1234,Dude,Jeff Bridges,1229,26,"[1, 2]",goes on a date with,0.04180474951863289 +339,The Stranger,Sam Elliott,16431,Dude,Jeff Bridges,1229,5,"[2, 2]",goes on a date with,3.943540286854841e-05 +340,Jackie Treehorn,Ben Gazzara,856,Dude,Jeff Bridges,1229,19,"[2, 2]",goes on a date with,0.026476768776774406 +341,Arthur Digby Sellers,Harry Bugin,4510,Dude,Jeff Bridges,1229,20,"[0, 2]",goes on a date with,8.963863365352154e-05 +342,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",goes on a date with,0.00011088549945270643 +343,Larry Sellers,Jesse Flanagan,1667649,Dude,Jeff Bridges,1229,33,"[2, 2]",goes on a date with,0.0011210395023226738 +344,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",has sex with,0.010500808246433735 +345,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",has sex with,2.1133979316800833e-05 +346,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",has sex with,0.0017660761950537562 +347,Bunny Lebowski,Tara Reid,1234,Dude,Jeff Bridges,1229,26,"[1, 2]",has sex with,0.0045906309969723225 +348,The Stranger,Sam Elliott,16431,Larry Sellers,Jesse Flanagan,1667649,38,"[2, 2]",has sex with,6.630652933381498e-05 +349,Jackie Treehorn,Ben Gazzara,856,Dude,Jeff Bridges,1229,19,"[2, 2]",has sex with,0.0005845179548487067 +350,Treehorn's thugs,Mark Pellegrino,1236,Dude,Jeff Bridges,1229,16,"[2, 2]",has sex with,0.0014251378597691655 +351,Arthur Digby Sellers,Harry Bugin,4510,Bunny,Tara Reid,1234,46,"[0, 1]",has sex with,1.7597969417693093e-05 +352,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",has sex with,2.394944658590248e-06 +353,Larry Sellers,Jesse Flanagan,1667649,Bunny,Tara Reid,1234,7,"[2, 1]",has sex with,0.0015921398298814893 +354,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",marries,0.0009138363529928029 +355,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",marries,2.6796369638759643e-06 +356,The Big,David Huddleston,1232,Larry Sellers,Jesse Flanagan,1667649,52,"[2, 2]",marries,0.0003231269074603915 +357,Bunny Lebowski,Tara Reid,1234,Larry Sellers,Jesse Flanagan,1667649,7,"[1, 2]",marries,0.000125139529700391 +358,The Stranger,Sam Elliott,16431,Larry Sellers,Jesse Flanagan,1667649,38,"[2, 2]",marries,9.359069736092351e-06 +359,Jackie Treehorn,Ben Gazzara,856,Dude,Jeff Bridges,1229,19,"[2, 2]",marries,1.6198564480873756e-05 +360,Treehorn's thugs,Mark Pellegrino,1236,Dude,Jeff Bridges,1229,16,"[2, 2]",marries,1.059718124452047e-05 +361,Arthur Digby Sellers,Harry Bugin,4510,Larry Sellers,Jesse Flanagan,1667649,53,"[0, 2]",marries,5.408922788774362e-06 +362,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",marries,2.939960808134856e-08 +363,Larry Sellers,Jesse Flanagan,1667649,Bunny,Tara Reid,1234,7,"[2, 1]",marries,3.7059128317196155e-06 +364,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is in love with,0.011397444643080235 +365,Maude Lebowski,Julianne Moore,1231,Dude,Jeff Bridges,1229,11,"[1, 2]",is in love with,7.373563857981935e-05 +366,The Big,David Huddleston,1232,Dude,Jeff Bridges,1229,19,"[2, 2]",is in love with,0.00355386920273304 +367,Bunny Lebowski,Tara Reid,1234,Dude,Jeff Bridges,1229,26,"[1, 2]",is in love with,0.011050540022552013 +368,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",is in love with,6.46483531454578e-05 +369,Jackie Treehorn,Ben Gazzara,856,Dude,Jeff Bridges,1229,19,"[2, 2]",is in love with,0.00047176401130855083 +370,Treehorn's thugs,Mark Pellegrino,1236,Dude,Jeff Bridges,1229,16,"[2, 2]",is in love with,0.0015679451171308756 +371,Arthur Digby Sellers,Harry Bugin,4510,Dude,Jeff Bridges,1229,20,"[0, 2]",is in love with,3.6407138850336196e-06 +372,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",is in love with,2.2475028345070314e-06 +373,Larry Sellers,Jesse Flanagan,1667649,Bunny,Tara Reid,1234,7,"[2, 1]",is in love with,0.0002522904542274773 +374,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",is in couple with,0.06847703456878662 +375,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is in couple with,0.00017266659415327013 +376,The Big,David Huddleston,1232,Larry Sellers,Jesse Flanagan,1667649,52,"[2, 2]",is in couple with,0.009352602995932102 +377,Bunny Lebowski,Tara Reid,1234,Larry Sellers,Jesse Flanagan,1667649,7,"[1, 2]",is in couple with,0.0013705517631024122 +378,The Stranger,Sam Elliott,16431,Larry Sellers,Jesse Flanagan,1667649,38,"[2, 2]",is in couple with,0.00029470756999216974 +379,Jackie Treehorn,Ben Gazzara,856,Bunny,Tara Reid,1234,45,"[2, 1]",is in couple with,0.00047006874228827655 +380,Treehorn's thugs,Mark Pellegrino,1236,Dude,Jeff Bridges,1229,16,"[2, 2]",is in couple with,0.015574036166071892 +381,Arthur Digby Sellers,Harry Bugin,4510,Bunny,Tara Reid,1234,46,"[0, 1]",is in couple with,0.00022891255503054708 +382,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",is in couple with,2.7300655347062275e-05 +383,Larry Sellers,Jesse Flanagan,1667649,Bunny,Tara Reid,1234,7,"[2, 1]",is in couple with,0.008331166580319405 +384,The Dude,Jeff Bridges,1229,Larry Sellers,Jesse Flanagan,1667649,33,"[2, 2]",is the father of,0.07382218539714813 +385,Maude Lebowski,Julianne Moore,1231,Larry Sellers,Jesse Flanagan,1667649,22,"[1, 2]",is the father of,0.0018392078345641494 +386,The Big,David Huddleston,1232,Larry Sellers,Jesse Flanagan,1667649,52,"[2, 2]",is the father of,0.04249422624707222 +387,Bunny Lebowski,Tara Reid,1234,Larry Sellers,Jesse Flanagan,1667649,7,"[1, 2]",is the father of,0.015143037773668766 +388,The Stranger,Sam Elliott,16431,Larry Sellers,Jesse Flanagan,1667649,38,"[2, 2]",is the father of,0.0045669968239963055 +389,Jackie Treehorn,Ben Gazzara,856,Larry Sellers,Jesse Flanagan,1667649,52,"[2, 2]",is the father of,0.0007336176931858063 +390,Treehorn's thugs,Mark Pellegrino,1236,Jackie,Ben Gazzara,856,35,"[2, 2]",is the father of,3.283388650743291e-05 +391,Arthur Digby Sellers,Harry Bugin,4510,Larry,Jesse Flanagan,1667649,53,"[0, 2]",is the father of,0.005069655366241932 +392,Larry Sellers,Jesse Flanagan,1667649,Jackie Treehorn,Ben Gazzara,856,52,"[2, 2]",is the father of,2.6270006856066175e-05 +393,The Dude,Jeff Bridges,1229,Bunny,Tara Reid,1234,26,"[2, 1]",is the mother of,0.05927528068423271 +394,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is the mother of,0.0006854631938040257 +395,The Big,David Huddleston,1232,Bunny,Tara Reid,1234,45,"[2, 1]",is the mother of,0.017535919323563576 +396,Bunny Lebowski,Tara Reid,1234,Jackie Treehorn,Ben Gazzara,856,45,"[1, 2]",is the mother of,0.0005857066134922206 +397,The Stranger,Sam Elliott,16431,Bunny,Tara Reid,1234,31,"[2, 1]",is the mother of,0.0006059209699742496 +398,Jackie Treehorn,Ben Gazzara,856,Bunny,Tara Reid,1234,45,"[2, 1]",is the mother of,0.0026102468837052584 +399,Treehorn's thugs,Mark Pellegrino,1236,Jackie,Ben Gazzara,856,35,"[2, 2]",is the mother of,0.00199985783547163 +400,Arthur Digby Sellers,Harry Bugin,4510,Bunny,Tara Reid,1234,46,"[0, 1]",is the mother of,0.0014110130723565817 +401,the Malibu Police Chief,Leon Russom,169920,Bunny,Tara Reid,1234,34,"[2, 1]",is the mother of,2.9139114303688984e-06 +402,Larry Sellers,Jesse Flanagan,1667649,Bunny,Tara Reid,1234,7,"[2, 1]",is the mother of,0.006036759354174137 +403,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",kisses,0.058477867394685745 +404,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",kisses,0.00018587979138828814 +405,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",kisses,0.0060991402715444565 +406,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",kisses,0.012384758330881596 +407,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",kisses,0.0007285719620995224 +408,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",kisses,0.0022806418128311634 +409,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",kisses,7.784987974446267e-05 +410,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",sleeps with,0.09441851079463959 +411,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",sleeps with,0.00016820215387269855 +412,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",sleeps with,0.001896498491987586 +413,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",sleeps with,0.03012475185096264 +414,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",sleeps with,0.0002003477275138721 +415,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",sleeps with,0.007769650314003229 +416,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",sleeps with,0.00039696769090369344 +417,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",goes on a date with,0.6424052715301514 +418,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",goes on a date with,0.0020320385228842497 +419,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",goes on a date with,0.07058342546224594 +420,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",goes on a date with,0.11996275931596756 +421,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",goes on a date with,0.00976446270942688 +422,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",goes on a date with,0.015798339620232582 +423,the Malibu Police Chief,Leon Russom,169920,The Dude,Jeff Bridges,1229,8,"[2, 2]",goes on a date with,0.0024752458557486534 +424,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",has sex with,0.9641138315200806 +425,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",has sex with,0.00019744515884667635 +426,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",has sex with,0.05787060409784317 +427,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",has sex with,0.4251385033130646 +428,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",has sex with,0.002291213721036911 +429,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",has sex with,0.017368437722325325 +430,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",has sex with,0.006860268767923117 +431,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",marries,0.014002756215631962 +432,Walter Sobchak,John Goodman,1230,Dude,Jeff Bridges,1229,3,"[2, 2]",marries,5.854765549884178e-05 +433,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",marries,0.004895808175206184 +434,The Big,David Huddleston,1232,Dude,Jeff Bridges,1229,19,"[2, 2]",marries,0.00115890521556139 +435,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",marries,0.0014381668297573924 +436,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",marries,0.00025764922611415386 +437,the Malibu Police Chief,Leon Russom,169920,Dude,Jeff Bridges,1229,8,"[2, 2]",marries,5.425812923931517e-05 +438,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",is in love with,0.6085063815116882 +439,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",is in love with,0.000572714488953352 +440,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",is in love with,0.049358069896698 +441,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",is in love with,0.06776194274425507 +442,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",is in love with,0.00244642305187881 +443,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",is in love with,0.026072999462485313 +444,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",is in love with,0.0012824415462091565 +445,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",is in couple with,0.6205911040306091 +446,Walter Sobchak,John Goodman,1230,Bunny,Tara Reid,1234,23,"[2, 1]",is in couple with,0.002089024754241109 +447,Maude Lebowski,Julianne Moore,1231,The Dude,Jeff Bridges,1229,11,"[1, 2]",is in couple with,0.03674733638763428 +448,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",is in couple with,0.09345649927854538 +449,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",is in couple with,0.005939587019383907 +450,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",is in couple with,0.01833498291671276 +451,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",is in couple with,0.000307406357023865 +452,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is the father of,0.2292165607213974 +453,Bunny Lebowski,Tara Reid,1234,Walter,John Goodman,1230,23,"[1, 2]",is the father of,0.010555580258369446 +454,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",is the mother of,0.4858996272087097 +455,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",is the mother of,0.02966710366308689 +456,Maude Lebowski,Julianne Moore,1231,Bunny,Tara Reid,1234,15,"[1, 1]",is the mother of,0.16394899785518646 +457,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",is the mother of,0.2304718941450119 +458,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",is the mother of,0.09349412471055984 +459,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",is the mother of,0.0562460757791996 +460,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",is the mother of,0.08049950003623962 +461,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",kisses,0.0003012291854247451 +462,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",kisses,0.0001698215928627178 +463,Maude Lebowski,Julianne Moore,1231,Walter,John Goodman,1230,8,"[1, 2]",kisses,1.4693076082039624e-05 +464,Donny Kerabatsos,Steve Buscemi,884,Walter,John Goodman,1230,5,"[2, 2]",kisses,0.0012789894826710224 +465,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",kisses,0.00037810750654898584 +466,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",kisses,8.939963299781084e-05 +467,The Stranger,Sam Elliott,16431,Dude,Jeff Bridges,1229,5,"[2, 2]",kisses,0.0014353550504893064 +468,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",kisses,3.002794437634293e-05 +469,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",sleeps with,0.0005941772251389921 +470,Walter Sobchak,John Goodman,1230,Dude,Jeff Bridges,1229,3,"[2, 2]",sleeps with,0.0013726491015404463 +471,Maude Lebowski,Julianne Moore,1231,Donny,Steve Buscemi,884,3,"[1, 2]",sleeps with,1.6850235624588095e-05 +472,Donny Kerabatsos,Steve Buscemi,884,Dude,Jeff Bridges,1229,8,"[2, 2]",sleeps with,0.0014861010713502765 +473,The Big,David Huddleston,1232,Dude,Jeff Bridges,1229,19,"[2, 2]",sleeps with,0.0009153473656624556 +474,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",sleeps with,0.001852026442065835 +475,The Stranger,Sam Elliott,16431,Dude,Jeff Bridges,1229,5,"[2, 2]",sleeps with,0.000722740136552602 +476,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",sleeps with,3.0206269002519548e-05 +477,The Dude,Jeff Bridges,1229,Stranger,Sam Elliott,16431,5,"[2, 2]",goes on a date with,0.022082945331931114 +478,Walter Sobchak,John Goodman,1230,The Dude,Jeff Bridges,1229,3,"[2, 2]",goes on a date with,0.013534913770854473 +479,Maude Lebowski,Julianne Moore,1231,Donny,Steve Buscemi,884,3,"[1, 2]",goes on a date with,0.00015718111535534263 +480,Donny Kerabatsos,Steve Buscemi,884,Walter,John Goodman,1230,5,"[2, 2]",goes on a date with,0.005918591283261776 +481,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",goes on a date with,0.005922708194702864 +482,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",goes on a date with,0.0012897796696051955 +483,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",goes on a date with,0.0002654354611877352 +484,The Dude,Jeff Bridges,1229,Stranger,Sam Elliott,16431,5,"[2, 2]",has sex with,0.004519522190093994 +485,Walter Sobchak,John Goodman,1230,Dude,Jeff Bridges,1229,3,"[2, 2]",has sex with,0.0017909449525177479 +486,Maude Lebowski,Julianne Moore,1231,Donny,Steve Buscemi,884,3,"[1, 2]",has sex with,0.0002750623389147222 +487,Donny Kerabatsos,Steve Buscemi,884,Walter,John Goodman,1230,5,"[2, 2]",has sex with,0.00282853189855814 +488,The Big,David Huddleston,1232,Dude,Jeff Bridges,1229,19,"[2, 2]",has sex with,0.002589937997981906 +489,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",has sex with,0.003076332388445735 +490,The Stranger,Sam Elliott,16431,Dude,Jeff Bridges,1229,5,"[2, 2]",has sex with,0.036401618272066116 +491,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",has sex with,8.515125227859244e-05 +492,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",marries,0.0011397734051570296 +493,Walter Sobchak,John Goodman,1230,Dude,Jeff Bridges,1229,3,"[2, 2]",marries,4.036407335661352e-05 +494,Maude Lebowski,Julianne Moore,1231,Walter,John Goodman,1230,8,"[1, 2]",marries,9.186840179609135e-05 +495,Donny Kerabatsos,Steve Buscemi,884,Walter,John Goodman,1230,5,"[2, 2]",marries,0.0009466069168411195 +496,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",marries,0.0010058957850560546 +497,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",marries,0.019527273252606392 +498,The Stranger,Sam Elliott,16431,Dude,Jeff Bridges,1229,5,"[2, 2]",marries,0.00231488817371428 +499,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",marries,7.174225902417675e-05 +500,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",is in love with,0.0017599324928596616 +501,Walter Sobchak,John Goodman,1230,Dude,Jeff Bridges,1229,3,"[2, 2]",is in love with,0.0020835164468735456 +502,Maude Lebowski,Julianne Moore,1231,Stranger,Sam Elliott,16431,16,"[1, 2]",is in love with,0.0004447051614988595 +503,Donny Kerabatsos,Steve Buscemi,884,Walter,John Goodman,1230,5,"[2, 2]",is in love with,0.0012010973878204823 +504,The Big,David Huddleston,1232,Dude,Jeff Bridges,1229,19,"[2, 2]",is in love with,0.0033981858287006617 +505,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",is in love with,0.011829538270831108 +506,The Stranger,Sam Elliott,16431,Dude,Jeff Bridges,1229,5,"[2, 2]",is in love with,0.00462081516161561 +507,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",is in love with,0.00024494261015206575 +508,The Dude,Jeff Bridges,1229,Walter,John Goodman,1230,3,"[2, 2]",is in couple with,0.008395267650485039 +509,Walter Sobchak,John Goodman,1230,Dude,Jeff Bridges,1229,3,"[2, 2]",is in couple with,0.004001726862043142 +510,Maude Lebowski,Julianne Moore,1231,Donny,Steve Buscemi,884,3,"[1, 2]",is in couple with,0.00029726169304922223 +511,Donny Kerabatsos,Steve Buscemi,884,Dude,Jeff Bridges,1229,8,"[2, 2]",is in couple with,0.0022405683994293213 +512,The Big,David Huddleston,1232,The Dude,Jeff Bridges,1229,19,"[2, 2]",is in couple with,0.00322951702401042 +513,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",is in couple with,0.00593913160264492 +514,The Stranger,Sam Elliott,16431,Dude,Jeff Bridges,1229,5,"[2, 2]",is in couple with,0.004393735434859991 +515,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",is in couple with,0.00029190455097705126 +516,The Dude,Jeff Bridges,1229,"Walter violently fends them off, but during the scuffle, Donny",John Goodman,1230,3,"[2, 2]",is the father of,0.04149060696363449 +517,Walter Sobchak,John Goodman,1230,Donny,Steve Buscemi,884,5,"[2, 2]",is the father of,0.01175767369568348 +518,Maude Lebowski,Julianne Moore,1231,Donny,Steve Buscemi,884,3,"[1, 2]",is the father of,0.02824445255100727 +519,Donny Kerabatsos,Steve Buscemi,884,Walter,John Goodman,1230,5,"[2, 2]",is the father of,0.07867587357759476 +520,The Big,David Huddleston,1232,Walter,John Goodman,1230,22,"[2, 2]",is the father of,0.02749609760940075 +521,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",is the father of,0.00887025985866785 +522,The Stranger,Sam Elliott,16431,Walter,John Goodman,1230,8,"[2, 2]",is the father of,0.008065703324973583 +523,the Malibu Police Chief,Leon Russom,169920,Walter,John Goodman,1230,11,"[2, 2]",is the father of,0.006277182605117559 +524,The Dude,Jeff Bridges,1229,Maude,Julianne Moore,1231,11,"[2, 1]",is the mother of,0.17646676301956177 +525,Walter Sobchak,John Goodman,1230,Maude,Julianne Moore,1231,8,"[2, 1]",is the mother of,0.08199296146631241 +526,Maude Lebowski,Julianne Moore,1231,Stranger,Sam Elliott,16431,16,"[1, 2]",is the mother of,0.00559441652148962 +527,Donny Kerabatsos,Steve Buscemi,884,Maude,Julianne Moore,1231,3,"[2, 1]",is the mother of,0.2266591638326645 +528,The Big,David Huddleston,1232,Maude,Julianne Moore,1231,30,"[2, 1]",is the mother of,0.15737628936767578 +529,Bunny Lebowski,Tara Reid,1234,Maude,Julianne Moore,1231,15,"[1, 1]",is the mother of,0.6819509863853455 +530,The Stranger,Sam Elliott,16431,Maude,Julianne Moore,1231,16,"[2, 1]",is the mother of,0.32321953773498535 +531,the Malibu Police Chief,Leon Russom,169920,Maude,Julianne Moore,1231,19,"[2, 1]",is the mother of,0.0006215673638507724 diff --git a/notebooks/age_gap/plot_relation_with_pyvis.ipynb b/notebooks/age_gap/plot_relation_with_pyvis.ipynb new file mode 100644 index 0000000..c2da2df --- /dev/null +++ b/notebooks/age_gap/plot_relation_with_pyvis.ipynb @@ -0,0 +1,155 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "worst-member", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from age_gap_automation import Movie\n", + "from pyvis.options import EdgeOptions\n", + "from pyvis.network import Network\n", + "\n", + "import sys\n", + "sys.path.append(\"../..\")\n", + "import bechdelai.data.tmdb as tmdb\n", + "\n", + "hp4 = pd.read_csv('hp4.csv')\n", + "\n", + "hp4_data = Movie(\"Harry Potter and the Goblet of Fire\",2005)\n", + "cast = hp4_data.cast" + ] + }, + { + "cell_type": "markdown", + "id": "waiting-graph", + "metadata": {}, + "source": [ + "# Plot Characters relationships" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "detected-effects", + "metadata": {}, + "outputs": [], + "source": [ + "# Define color by relationship type\n", + "relationship_type = {'kisses':'love', \n", + " 'sleeps with':'love', \n", + " 'goes on a date with':'love', \n", + " 'has sex with':'love', \n", + " 'marries':'love', \n", + " 'is in love with':'love',\n", + " 'is in couple with':'love',\n", + " 'is the father of':'family', \n", + " 'is the mother of':'family',\n", + " 'is a friend of':'friend', \n", + " 'is in the family of':'family', \n", + " 'is the enemy of':'enemy'}\n", + "relationship_color = {'love':'#fca311', \n", + " 'family':'#cce03d', \n", + " 'friend':'#35c4d7', \n", + " 'enemy':'#000000'}" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "square-answer", + "metadata": {}, + "outputs": [], + "source": [ + "# get edges\n", + "hp4 = hp4.sort_values('score',ascending=False)\n", + "hp4 = hp4[hp4.score>0.4]\n", + "\n", + "all_stars = np.unique(list(hp4.star1.values)+list(hp4.star2.values))" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "exciting-theme", + "metadata": {}, + "outputs": [], + "source": [ + "g = Network()\n", + "\n", + "# add nodes\n", + "for star in all_stars:\n", + " star_data = cast[cast.name==star]\n", + " character = star_data['character'].iloc[0]\n", + " image_path = tmdb.get_person_image_from_id(star_data.id.iloc[0])\n", + " image = 'https://image.tmdb.org/t/p/original'+image_path[\"profiles\"][0][\"file_path\"]\n", + " g.add_node(star, \n", + " label = character,\n", + " title = star,\n", + " shape='circularImage', image =image,\n", + " borderWidth=0,\n", + " size = 30,\n", + " labelHighlightBold=True)\n", + "\n", + "# add edges\n", + "for i,row in hp4.iterrows():\n", + " row_relation_type = relationship_type[row.question]\n", + " title = \"At movie release\\n\"+\\\n", + " '{} was {} years old \\n'.format(row.star1,cast[cast.name==row.star1]['age_at_release'].iloc[0])+\\\n", + " '{} was {} years old \\n'.format(row.star2,cast[cast.name==row.star2]['age_at_release'].iloc[0])\n", + " \n", + " \n", + "# if row_relation_type=='love': # is romantic relationship\n", + "# title = age_gap\n", + " g.add_edge(row.star1,row.star2, \n", + " value=100*row.score,\n", + " color=relationship_color[row_relation_type],\n", + " title = title)" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "featured-greek", + "metadata": {}, + "outputs": [], + "source": [ + "g.show(\"hp4_chars_relationships_circular.html\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "consistent-iceland", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.7" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/age_gap/process_couples.py b/notebooks/age_gap/process_couples.py new file mode 100644 index 0000000..e5748e2 --- /dev/null +++ b/notebooks/age_gap/process_couples.py @@ -0,0 +1,373 @@ +import sys +sys.path.append("..\..") +import bechdelai.data.wikipedia as wiki +import bechdelai.data.tmdb as tmdb + +import numpy as np +from datetime import datetime +import re +import pandas as pd + +import spacy +from transformers import pipeline + + +def age(birthdate,release_date): + """ + Compute age at release_date for a person born in birthdate + Parameters + ---------- + birthdate : datetime + release_date : datetime + + + Returns + ------- + int + age in years + + """ + # Difference in years + year_difference = release_date.year - birthdate.year + + # Check if birthday happened before or after release date + one_or_zero = ((release_date.month, release_date.day) < (birthdate.month, birthdate.day)) + + # If release before birthday -> substract 1 + # If release after birthday -> substract 0 + age = year_difference - one_or_zero + + return age + +def compute_cast_age(cast_df,release_date): + """ + Compute age at release_date for each actor/actress in the cast_df + Parameters + ---------- + cast_df : DataFrame + should contain the collumn id with the TMDB id of each actor/actress + release_date : datetime + + + Returns + ------- + numpy.ndarray + with age in years for each person in cast_df (None if birthday is not available) + + """ + age_at_release = np.repeat(None,len(cast_df)) + for i,row in cast_df.iterrows(): + birthday = tmdb.get_person_details_from_id(row['id'])['birthday'] + try: + age_at_release[i] = age(datetime.strptime(birthday, '%Y-%m-%d'),release_date) + except TypeError: + age_at_release[i] = None + return age_at_release + +def get_character_from_wikipedia(star_name,cast_wiki): + """ + Get the name of the character as it is presented in the Wikipedia Cast section. + + Parameters + ---------- + star_name : str + the name of the movie star + cast_wiki : str + the cast description from Wikipedia + + + Returns + ------- + str + The name of the character played by movie_star as written in Wikipedia + + """ + pattern = '('+star_name+' (as|-|–) )(.+?)(,|:|\n)' + match = re.search(pattern,cast_wiki) + if match==None: + return None + return match[3] + +def get_cast_from_wikipedia(title,release_year): + """ + Get the cast section from Wikipedia page for movie title. + In case of ambiguous pages in Wikipedia, the release_year may be needed to find the right page. + + + Parameters + ---------- + title : str + the name of the movie + release_year : int + the year of movie release + + + Returns + ------- + str + the cast description from Wikipedia. + Return None if Cast section not found + + """ + for query_suffix in [' ('+str(release_year)+' film)',' (film)','']: + try: + return wiki.get_section_text(title+query_suffix, ['Cast'])['Cast'] # to improve + except (ValueError,KeyError): + continue + return None + +def correct_cast_with_wikipedia(tmdb_cast,wiki_cast): + """ + Correct the characters' names in tmdb_cast if its written in a different form in Wikipedia. + + + Parameters + ---------- + tmdb_cast : DataFrame + cast data from TMDB + wiki_cast : str + cast data from Wikipedia + + + Returns + ------- + DataFrame + the cast description from Wikipedia. + Return None if Cast section not found + + """ + # Get character's name that are different in TMDB and Wikipedia + for i,star_name in tmdb_cast.name.items(): + character_wiki = get_character_from_wikipedia(star_name,wiki_cast) + if character_wiki!=None: + tmdb_cast.loc[i,'character'] = character_wiki.replace('"',"'") + return tmdb_cast + +def detect_relationship(character,verb,context,qa=None): + """ + Answers the question 'Who {} {}?'.format(verb,character) + + + Parameters + ---------- + character : str + name of the character + verb : str + sentence that is used to build the question + context : str + Text used as context for question answering + qa : pipeline + If None, pipeline is created in the function + + + Returns + ------- + str + the answer for the question + float + the score given for the answer + + """ + if qa==None: + # Load model + nlp = spacy.load('en_core_web_lg') + model_name = "deepset/roberta-base-squad2" + + qa = pipeline('question-answering', model=model_name, tokenizer=model_name, top_k=1) + + # Only ask question when the character is mentionned in the context + if not character_is_mentionned(character,context): + return None,np.nan + + QA_input = { + 'question': 'Who {} {}?'.format(verb,character), + 'context': context + } + a = qa(QA_input) + + # The answer should contain a single character. If it's not the case, the answer is not accepted + if ' and ' in a['answer']: + return None,np.nan + # Ignore if detected couple is twice the same character + if character==a['answer']: + return None,np.nan + + return a['answer'],a['score'] + +def get_character_nickname(name): + """ + Characters' names as they are extracted from TMDB can be formatted in different ways. + When characters are refered by a nickname, it's commonly presented between \' or \" + + """ + nickname = re.search(r'(\'|\")(.*?)(\'|\")',name) + if nickname != None: + name = nickname.group(2) + return name + +def get_actor_from_character(cast_data,character): + """ + Find in cast_data the actor/actress who played the character + + Parameters + ---------- + cast_data : DataFrame + cast data + character : str + name of the character to search + + + Returns + ------- + str or list + the name(s) of the actor/actress that players the character + + """ + # to be sure that regex works, remove parenthesis + character = character.replace('(','') + character = character.replace(')','') + character = character.replace('"',"'")# only use ' + + # look for character's name match with all names in character (consider that middle names can be missing from character) + pattern = '\s.*'.join(character.split(' '))+'.?(?:\s|$)' + # \s makes sure name ends (so characters like Phuong's Sister, Franz's girlfiend are not included) + actor = cast_data[cast_data.character.str.contains(pattern)]['name'].values + actor_id = cast_data[cast_data.character.str.contains(pattern)]['id'].values + + if not len(actor): + # character name with all names not found in cast_data + for character_name in character.split(' '): + pattern = character_name+'(?:\s|$)' + actor = cast_data[cast_data.character.str.contains(pattern)]['name'].values + actor_id = cast_data[cast_data.character.str.contains(pattern)]['id'].values + if len(actor): + break + + if not len(actor): + # character's name still not found + return None,None + elif len(actor)==1: + # only one actor corresponding to character + return actor[0], actor_id[0] + else: + # multiple actors/resses, return as a list + return list(actor),list(actor_id) + + +def get_age_gap(cast_data,couple): + + # If any of the actor/actress in the couple was not identified (None), return None + if (couple[0]==None) | (couple[1]==None): + return None, None + + # To compute the age gap, we must have identified exactly 1 actor/actress for each character (that are not the same) + if (type(couple[0])==list) | (type(couple[1])==list) | (couple[0]==couple[1]): + return None, None + + # get data for each person + person0 = cast_data[cast_data.name==couple[0]] + if not len(person0): + return None, None + age0 = person0.age_at_release.values[0] + gender0 = person0.gender.values[0] + + person1 = cast_data[cast_data.name==couple[1]] + if not len(person1): + return None, None + age1 = person1.age_at_release.values[0] + gender1 = person1.gender.values[0] + + # if age is not defined for any person + if (age0==None) | (age1==None): + return None,[gender0,gender1] + + # if both are from same gender, use absolute difference + if gender0==gender1: + return abs(age0-age1),[gender0,gender1] + else: + return abs(age0-age1),[gender0,gender1] + +def character_is_mentionned(character_name,text): + ''' + Check if any part of the character's name is mentionned in the text given + ''' + for name_part in character_name.split(' '): + match = re.search(r'\b'+name_part+r'\b',text) + if not match==None: + return 1 + return 0 + +def remove_players_from_text(cast_names,text): + ''' + Remove mentions to the actors and actresses names in the Wikipedia plot as it may confuse the question answering algorithms + ''' + for name in cast_names: + text = re.sub('(\('+name+'\))', '', text) + return text + + + +def fill_scores(df, new_entry, column_to_update): + ''' + This function adds the new_entry in the DataFrame df. + If the couple_actors in new_entry already exists in df, update the score in the column_to_update. + Else, add a new role, with all data in new_entry. + ''' + # was this couple previously detected? + couple_actors = new_entry['actors'] + couple_in_df = [((row.actors==couple_actors) or (row.actors==couple_actors[::-1])) and (row.movie==movie) for i,row in df.iterrows()] + + if sum(couple_in_df): # if this couple appeared before + previous_score = df.loc[couple_in_df,v].iloc[0] + df.loc[couple_in_df,column_to_update] = np.nanmax([previous_score,new_entry[column_to_update]]) + else: # if it is the first time a couple appears + df = pd.concat([df,pd.Series(new_entry).to_frame().T], ignore_index=True) + return df + + +def compute_relationships_in_movie(movie, verbs): + + # Load model + nlp = spacy.load('en_core_web_lg') + model_name = "deepset/roberta-base-squad2" + + qa = pipeline('question-answering', model=model_name, tokenizer=model_name, top_k=1) + + ans = pd.DataFrame(columns = ['character1','star1','star_id1','character2','star2','star_id2','age_gap','genders','question','score']) + people = [get_character_nickname(name) for name in movie.cast.character] + + document_string = movie.plot.split('\n') + movie.cast_wiki.split('\n') + + # Prediction -> Combine characters and questions + for context in document_string: + if not len(context): + continue + for v in verbs: + for person1 in people: + + person2, score = detect_relationship(person1,v,context,qa) + if person2==None: + continue + + # create new entry in ans dataframe + star1,star_id1 = get_actor_from_character(movie.cast,person1) + star2,star_id2 = get_actor_from_character(movie.cast,person2) + # compute age gap + age_gap,genders = get_age_gap(movie.cast,[star1,star2]) + # ignore entry if age gap not computed + if age_gap==None: + continue + + new_entry = {'character1':person1, + 'star1':star1, + 'star_id1':star_id1, + 'character2':person2, + 'star2':star2, + 'star_id2':star_id2, + 'age_gap':age_gap, + 'genders':genders, + 'question':v, + 'score':score} + + ans = pd.concat([ans,pd.Series(new_entry).to_frame().T], ignore_index=True) + return ans diff --git a/notebooks/age_gap/relationships_streamlit.py b/notebooks/age_gap/relationships_streamlit.py new file mode 100644 index 0000000..d8817af --- /dev/null +++ b/notebooks/age_gap/relationships_streamlit.py @@ -0,0 +1,249 @@ + +import sys +sys.path.append("../..") +from age_gap_automation import Movie +import process_couples as pc +import bechdelai.data.wikipedia as wiki +import bechdelai.data.tmdb as tmdb +from pyvis.network import Network +import numpy as np +import streamlit.components.v1 as components +from pyvis import network as net + +import streamlit as st +import pandas as pd +from streamlit_option_menu import option_menu + + +MOVIE_FILES = {"Harry Potter et la Coupe de Feu":"hp4.csv", + "Call me by your name":"call_me.csv", + "The Big Lebowski":"lebowski.csv", + "Love Actually":"love_actually.csv"} +MOVIE_YEARS = {"Harry Potter et la Coupe de Feu":2005, + "Call me by your name":2017, + "The Big Lebowski":1998, + "Love Actually":2003} +MOVIE_ORIG = {"Harry Potter et la Coupe de Feu":"Harry Potter and the Goblet of Fire", + "Call me by your name":"Call me by your name", + "The Big Lebowski":"The Big Lebowski", + "Love Actually":"Love Actually"} + +VERBS = ['kisses', 'sleeps with', 'goes on a date with', 'has sex with', 'marries', 'is in love with','is in couple with', 'is the father of', 'is the mother of'] +LOVE_VERBS = ['kisses', 'sleeps with', 'goes on a date with', 'has sex with', 'marries', 'is in love with','is in couple with'] + +@st.cache(allow_output_mutation=True) +def load_data_from_file(file): + return pd.read_csv(file) +@st.cache +def load_data(movie): + return pc.compute_relationships_in_movie(movie.cast,movie.plot, VERBS) + + +# --------------- MENU SELECTION +def menu_horizontal(): + selected_info = option_menu(None, + ["Relations", "Couples", "Corrections"], + icons=['people', 'heart', "check-all",], + menu_icon="cast", + default_index=0, + orientation="horizontal", + styles={ + "container": {"padding": "0!important", "background-color": "#fafafa"}, + "icon": {"color": "#EEAE46", "font-size": "20px"}, + "nav-link": {"font-size": "20px", "text-align": "left", "margin":"0px", "--hover-color": "#eee"}, + "nav-link-selected": {"background-color": "#D0DE5C"}, + } + ) + return selected_info + +def create_network(cast,scores): + # Define color by relationship type + relationship_type = {'kisses':'love', + 'sleeps with':'love', + 'goes on a date with':'love', + 'has sex with':'love', + 'marries':'love', + 'is in love with':'love', + 'is in couple with':'love', + 'is the father of':'family', + 'is the mother of':'family', + 'is the son of':'family', + 'is the daughter of':'family', + 'is a friend of':'friend', + 'is in the family of':'family', + 'is the enemy of':'enemy'} + relationship_color = {'love':'#fca311', + 'family':'#cce03d', + 'friend':'#35c4d7', + 'enemy':'#000000'} + color_node = {0:'#187498', + 1:'#F9D923', + 2:'#36AE7C', + 3:'#EB5353'} + + g = Network('750px', '690px') + + # add nodes + all_stars = np.unique(list(scores.star1.values)+list(scores.star2.values)) + for star in all_stars: + star_data = cast[cast.name==star] + character = star_data['character'].iloc[0] + image_path = tmdb.get_person_image_from_id(star_data.id.iloc[0]) + try: + image = 'https://image.tmdb.org/t/p/original'+image_path["profiles"][0]["file_path"] + except IndexError: + image = "http://cdn.onlinewebfonts.com/svg/img_233997.png" + g.add_node(star, + label = character, + title = star, + shape='circularImage', + image =image, + # borderWidth=0, # without border + color = color_node[star_data['gender'].iloc[0]], # with color border by gender + borderWidth=3, # with color border + size = 30, + labelHighlightBold=True) + + # add edges + for i,row in scores.iterrows(): + row_relation_type = relationship_type[row.question] + title = "{} {} {}\n\n".format(row.character2,row.question,row.character1)+\ + "At movie release\n"+\ + '{} was {} years old \n'.format(row.star1,cast[cast.name==row.star1]['age_at_release'].iloc[0])+\ + '{} was {} years old \n'.format(row.star2,cast[cast.name==row.star2]['age_at_release'].iloc[0]) + + + # if row_relation_type=='love': # is romantic relationship + # title = age_gap + g.add_edge(row.star1,row.star2, + value=100*row.score, + color=relationship_color[row_relation_type], + title = title) + return g + +def do_relations(cast,scores): + g = create_network(cast,scores) + g.save_graph(f'relation_graph.html') + # st.header('Connections by Company Graph') + HtmlFile = open(f'relation_graph.html','r',encoding='utf-8') + + # Load HTML into HTML component for display on Streamlit + components.html(HtmlFile.read(), height=800, width=800) + +def get_scores(movie,title): + try: + scores = load_data_from_file(MOVIE_FILES[title]) + except FileNotFoundError: + with st.spinner('Patientez...'): + scores = load_data(movie) + return scores + +def do_couples(scores, cast): + scores.sort_values('score',ascending=False,inplace=True) + scores.drop_duplicates(['star1','star2'],keep='first',inplace=True) # TO DO: avoid duplicates when star1 and star2 are inversed + + count=0 + for i,row in scores.iterrows(): + + if row.question not in LOVE_VERBS: + continue + + if (count==10) | (row.score<0.7): + break + + star_younger = {'name':row.star1, + 'character':row.character1, + 'age':cast[cast.name==row.star1]['age_at_release'].iloc[0], + 'gender':cast[cast.name==row.star1]['gender'].iloc[0], + 'image' : tmdb.get_person_image_from_id(row.star_id1)["profiles"][0]["file_path"] } + star_older = {'name':row.star2, + 'character':row.character2, + 'age':cast[cast.name==row.star2]['age_at_release'].iloc[0], + 'gender':cast[cast.name==row.star2]['gender'].iloc[0], + 'image' : tmdb.get_person_image_from_id(row.star_id2)["profiles"][0]["file_path"] } + + if star_younger['age'] > star_older['age']: + star_aux = star_younger + star_younger = star_older + star_older = star_aux + + + + st.subheader('{} et {}'.format(star_younger['character'], star_older['character'])) + st.write('Ces personnages ont été joués par {} et {} respectivement. '.format(star_younger['name'], star_older['name'])) + st.write('Ecart d\'âge: ' ,row.age_gap) + + col1, col2, col3 = st.columns([1.5,5,1.5]) + col1.image('https://image.tmdb.org/t/p/original'+star_younger['image'],width=100) + + + values = col2.slider( + '', + 10, 50, + (star_younger['age'], star_older['age']), + disabled=True, key = "slider_"+str(i)) + + col3.image('https://image.tmdb.org/t/p/original'+star_older['image'],width=100) + + count+=1 + +def do_corrections(scores): + count=0 + for i,row in scores.iterrows(): + + if row.question not in VERBS: + continue + + if (count==10): + break + + if ('mother' in row.question) | ('father' in row.question): # for parental relationship, the threshold is high + if row.score < 0.85: + continue + st.subheader('{} {} {}'.format(row.character2, row.question, row.character1)) + st.write('Score: ',row.score) + # st.write('Age gap: ' ,row.age_gap) + + col1, col2, col3 = st.columns([2,2,2]) + img_star2 = tmdb.get_person_image_from_id(row.star_id2) + col1.image('https://image.tmdb.org/t/p/original'+img_star2["profiles"][0]["file_path"],width=150) + + img_star1 = tmdb.get_person_image_from_id(row.star_id1) + col2.image('https://image.tmdb.org/t/p/original'+img_star1["profiles"][0]["file_path"],width=150) + + relationship_true = col3.radio('Is this relationship true?', ['Yes', 'No'],key = "couple_"+str(i)) + + st.text("\n") + count+=1 + + +menu_nav_viz_dict = { +"Relations" : {"fn": do_relations}, +"Couples" : {"fn": do_couples}, +"Corrections" : {"fn": do_corrections},} + + +def main(): + st.set_page_config(layout="centered") + title = st.selectbox("Choisissez un film:",list(MOVIE_FILES.keys())) + # st.title(title) + + movie = Movie(MOVIE_ORIG[title],MOVIE_YEARS[title]) + cast = movie.cast + scores = get_scores(movie,title) + scores = scores.sort_values('score',ascending=False) + + selected_info= menu_horizontal() + + if selected_info in menu_nav_viz_dict.keys(): + if selected_info == "Relations": + do_relations(cast,scores[scores.score>0.4]) + elif selected_info == "Couples": + do_couples(scores,cast) + elif selected_info == "Corrections": + do_corrections(scores[scores.score>0.4]) + else : + st.empty() + +if __name__ == "__main__": + main() diff --git a/notebooks/age_gap/relationships_visualisation.py b/notebooks/age_gap/relationships_visualisation.py new file mode 100644 index 0000000..3b633ab --- /dev/null +++ b/notebooks/age_gap/relationships_visualisation.py @@ -0,0 +1,70 @@ +import sys +sys.path.append("../..") +from age_gap_automation import Movie +import process_couples as pc +import bechdelai.data.wikipedia as wiki +import bechdelai.data.tmdb as tmdb + +import streamlit as st +import pandas as pd +import plotly.express as px + +MOVIE_FILES = {"Harry Potter and the Goblet of Fire":"hp4.csv", + "Call me by your name":"call_me.csv", + "The Big Lebowski":"lebowski.csv", + "Love Actually":"love_actually.csv"} +MOVIE_YEARS = {"Harry Potter and the Goblet of Fire":2005, + "Call me by your name":2017, + "The Big Lebowski":1998, + "Love Actually":2003} + +VERBS = ['kisses', 'sleeps with', 'goes on a date with', 'has sex with', 'marries', 'is in love with','is in couple with', 'is the father of', 'is the mother of'] + +@st.cache +def load_data_from_file(file): + return pd.read_csv(file) +def load_data(movie): + return pc.compute_relationships_in_movie(movie.cast,movie.plot, VERBS) + + +def main(): + st.set_page_config(layout="wide") + title = st.selectbox("Choose a movie:",list(MOVIE_FILES.keys())) + st.title(title) + try: + scores = load_data_from_file(MOVIE_FILES[title]) + except FileNotFoundError: + with st.spinner('Wait for it...'): + movie = Movie(title,MOVIE_YEARS[title]) + scores = load_data(movie) + + count=0 + for i,row in scores.sort_values('score',ascending=False).iterrows(): + + if row.question not in VERBS: + continue + + if (count==10) | (row.score<0.3): + break + + if ('mother' in row.question) | ('father' in row.question): # for parental relationship, the threshold is high + if row.score < 0.85: + continue + st.subheader('{} {} {}'.format(row.character2, row.question, row.character1)) + st.write('Score: ',row.score) + st.write('Age gap: ' ,row.age_gap) + + col1, col2, col3,col4 = st.columns([3,3,2,10]) + img_star2 = tmdb.get_person_image_from_id(row.star_id2) + col1.image('https://image.tmdb.org/t/p/original'+img_star2["profiles"][0]["file_path"],width=200) + + img_star1 = tmdb.get_person_image_from_id(row.star_id1) + col2.image('https://image.tmdb.org/t/p/original'+img_star1["profiles"][0]["file_path"],width=200) + + relationship_true = col3.radio('Is this relationship true?', ['Yes', 'No'],key = "couple_"+str(i)) + count+=1 + + + +if __name__ == "__main__": + main() diff --git a/poetry.lock b/poetry.lock index 1e6dafb..a7fa7aa 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,17 +1,31 @@ [[package]] name = "absl-py" -version = "1.0.0" +version = "1.4.0" description = "Abseil Python Common Libraries, see https://github.com/abseil/abseil-py." category = "main" optional = false python-versions = ">=3.6" +[[package]] +name = "anyio" +version = "3.6.2" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +category = "main" +optional = false +python-versions = ">=3.6.2" + [package.dependencies] -six = "*" +idna = ">=2.8" +sniffio = ">=1.1" + +[package.extras] +doc = ["packaging", "sphinx-rtd-theme", "sphinx-autodoc-typehints (>=1.2.0)"] +test = ["coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "contextlib2", "uvloop (<0.15)", "mock (>=4)", "uvloop (>=0.15)"] +trio = ["trio (>=0.16,<0.22)"] [[package]] name = "appnope" -version = "0.1.2" +version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" category = "main" optional = false @@ -48,9 +62,20 @@ cffi = ">=1.0.1" dev = ["pytest", "cogapp", "pre-commit", "wheel"] tests = ["pytest"] +[[package]] +name = "arrow" +version = "1.2.3" +description = "Better dates & times for Python" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +python-dateutil = ">=2.7.0" + [[package]] name = "asttokens" -version = "2.0.5" +version = "2.2.1" description = "Annotate AST trees with source code positions" category = "main" optional = false @@ -75,17 +100,19 @@ six = ">=1.6.1,<2.0" [[package]] name = "attrs" -version = "21.4.0" +version = "22.2.0" description = "Classes Without Boilerplate" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.6" [package.extras] -dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"] -docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] -tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "cloudpickle"] -tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "cloudpickle"] +cov = ["attrs", "coverage-enable-subprocess", "coverage[toml] (>=5.3)"] +dev = ["attrs"] +docs = ["furo", "sphinx", "myst-parser", "zope.interface", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier"] +tests = ["attrs", "zope.interface"] +tests-no-zope = ["hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist", "cloudpickle", "mypy (>=0.971,<0.990)", "pytest-mypy-plugins"] +tests_no_zope = ["hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist", "cloudpickle", "mypy (>=0.971,<0.990)", "pytest-mypy-plugins"] [[package]] name = "backcall" @@ -97,11 +124,11 @@ python-versions = "*" [[package]] name = "beautifulsoup4" -version = "4.10.0" +version = "4.11.1" description = "Screen-scraping library" category = "main" optional = false -python-versions = ">3.0.0" +python-versions = ">=3.6.0" [package.dependencies] soupsieve = ">1.2" @@ -111,65 +138,59 @@ html5lib = ["html5lib"] lxml = ["lxml"] [[package]] -name = "bertopic" -version = "0.9.4" -description = "BERTopic performs topic Modeling with state-of-the-art transformer models." +name = "bleach" +version = "5.0.1" +description = "An easy safelist-based HTML-sanitizing tool." category = "main" optional = false python-versions = ">=3.7" [package.dependencies] -hdbscan = ">=0.8.27" -numpy = ">=1.20.0" -pandas = ">=1.1.5" -plotly = ">=4.7.0" -pyyaml = "<6.0" -scikit-learn = ">=0.22.2.post1" -sentence-transformers = ">=0.4.1" -tqdm = ">=4.41.1" -umap-learn = ">=0.5.0" +six = ">=1.9.0" +webencodings = "*" [package.extras] -dev = ["mkdocs (>=1.1)", "mkdocs-material (>=4.6.3)", "mkdocstrings (>=0.8.0)", "pytest (>=5.4.3)", "pytest-cov (>=2.6.1)", "transformers (==3.5.1)", "torch (>=1.4.0,<1.7.1)", "flair (==0.7)", "spacy (>=3.0.1)", "tensorflow", "tensorflow-hub", "tensorflow-text", "gensim (>=3.6.0)"] -docs = ["mkdocs (>=1.1)", "mkdocs-material (>=4.6.3)", "mkdocstrings (>=0.8.0)"] -flair = ["transformers (==3.5.1)", "torch (>=1.4.0,<1.7.1)", "flair (==0.7)"] -gensim = ["gensim (>=3.6.0)"] -spacy = ["spacy (>=3.0.1)"] -test = ["pytest (>=5.4.3)", "pytest-cov (>=2.6.1)"] -use = ["tensorflow", "tensorflow-hub", "tensorflow-text"] +dev = ["mypy (==0.961)", "black (==22.3.0)", "wheel (==0.37.1)", "twine (==4.0.1)", "tox (==3.25.0)", "Sphinx (==4.3.2)", "pytest (==7.1.2)", "pip-tools (==6.6.2)", "hashin (==0.17.0)", "flake8 (==4.0.1)", "build (==0.8.0)"] +css = ["tinycss2 (>=1.1.0,<1.2)"] [[package]] -name = "bleach" -version = "4.1.0" -description = "An easy safelist-based HTML-sanitizing tool." +name = "blis" +version = "0.7.9" +description = "The Blis BLAS-like linear algebra library, as a self-contained C-extension." category = "main" optional = false -python-versions = ">=3.6" +python-versions = "*" [package.dependencies] -packaging = "*" -six = ">=1.9.0" -webencodings = "*" +numpy = ">=1.15.0" [[package]] name = "cachetools" -version = "5.0.0" +version = "5.2.1" description = "Extensible memoizing collections and decorators" category = "main" optional = false python-versions = "~=3.7" +[[package]] +name = "catalogue" +version = "2.0.8" +description = "Super lightweight function registries for your library" +category = "main" +optional = false +python-versions = ">=3.6" + [[package]] name = "certifi" -version = "2021.10.8" +version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." category = "main" optional = false -python-versions = "*" +python-versions = ">=3.6" [[package]] name = "cffi" -version = "1.15.0" +version = "1.15.1" description = "Foreign Function Interface for Python calling C code." category = "main" optional = false @@ -178,35 +199,72 @@ python-versions = "*" [package.dependencies] pycparser = "*" +[[package]] +name = "chardet" +version = "5.1.0" +description = "Universal encoding detector for Python 3" +category = "main" +optional = false +python-versions = ">=3.7" + [[package]] name = "charset-normalizer" -version = "2.0.12" +version = "3.0.1" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." category = "main" optional = false -python-versions = ">=3.5.0" - -[package.extras] -unicode_backport = ["unicodedata2"] +python-versions = "*" [[package]] name = "click" -version = "8.0.4" +version = "8.1.3" description = "Composable command line interface toolkit" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "colorama" -version = "0.4.4" +version = "0.4.6" description = "Cross-platform colored terminal text." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" + +[[package]] +name = "comm" +version = "0.1.2" +description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +traitlets = ">=5.3" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "contourpy" +version = "1.0.7" +description = "Python library for calculating contours of 2D quadrilateral grids" +category = "main" +optional = false +python-versions = ">=3.8" + +[package.dependencies] +numpy = ">=1.16" + +[package.extras] +bokeh = ["bokeh", "chromedriver", "selenium"] +docs = ["furo", "sphinx-copybutton"] +mypy = ["contourpy", "docutils-stubs", "mypy (==0.991)", "types-pillow"] +test = ["matplotlib", "pillow", "pytest"] +test-no-images = ["pytest"] [[package]] name = "cycler" @@ -217,16 +275,16 @@ optional = false python-versions = ">=3.6" [[package]] -name = "cython" -version = "0.29.28" -description = "The Cython compiler for writing C extensions for the Python language." +name = "cymem" +version = "2.0.7" +description = "Manage calls to calloc/free through Cython" category = "main" optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +python-versions = "*" [[package]] name = "debugpy" -version = "1.6.0" +version = "1.6.5" description = "An implementation of the Debug Adapter Protocol for Python" category = "main" optional = false @@ -269,6 +327,21 @@ category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +[[package]] +name = "en-core-web-lg" +version = "3.3.0" +description = "English pipeline optimized for CPU. Components: tok2vec, tagger, parser, senter, ner, attribute_ruler, lemmatizer." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +spacy = ">=3.3.0.dev0,<3.4.0" + +[package.source] +type = "url" +url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.3.0/en_core_web_lg-3.3.0.tar.gz" + [[package]] name = "entrypoints" version = "0.4" @@ -279,37 +352,52 @@ python-versions = ">=3.6" [[package]] name = "executing" -version = "0.8.3" +version = "1.2.0" description = "Get the currently executing AST node of a frame, and other information" category = "main" optional = false python-versions = "*" +[package.extras] +tests = ["asttokens", "pytest", "littleutils", "rich"] + +[[package]] +name = "fastjsonschema" +version = "2.16.2" +description = "Fastest Python implementation of JSON schema" +category = "main" +optional = false +python-versions = "*" + +[package.extras] +devel = ["colorama", "jsonschema", "json-spec", "pylint", "pytest", "pytest-benchmark", "pytest-cache", "validictory"] + [[package]] name = "filelock" -version = "3.6.0" +version = "3.9.0" description = "A platform independent file lock." category = "main" optional = false python-versions = ">=3.7" [package.extras] -docs = ["furo (>=2021.8.17b43)", "sphinx (>=4.1)", "sphinx-autodoc-typehints (>=1.12)"] -testing = ["covdefaults (>=1.2.0)", "coverage (>=4)", "pytest (>=4)", "pytest-cov", "pytest-timeout (>=1.4.2)"] +docs = ["furo (>=2022.12.7)", "sphinx-autodoc-typehints (>=1.19.5)", "sphinx (>=5.3)"] +testing = ["covdefaults (>=2.2.2)", "coverage (>=7.0.1)", "pytest-cov (>=4)", "pytest-timeout (>=2.1)", "pytest (>=7.2)"] [[package]] name = "flask" -version = "2.0.3" +version = "2.2.2" description = "A simple framework for building complex web applications." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] -click = ">=7.1.2" +click = ">=8.0" +importlib-metadata = {version = ">=3.6.0", markers = "python_version < \"3.10\""} itsdangerous = ">=2.0" Jinja2 = ">=3.0" -Werkzeug = ">=2.0" +Werkzeug = ">=2.2.2" [package.extras] async = ["asgiref (>=3.2)"] @@ -317,7 +405,7 @@ dotenv = ["python-dotenv"] [[package]] name = "flatbuffers" -version = "2.0" +version = "23.1.4" description = "The FlatBuffers serialization format for Python" category = "main" optional = false @@ -325,28 +413,48 @@ python-versions = "*" [[package]] name = "fonttools" -version = "4.31.2" +version = "4.38.0" description = "Tools to manipulate font files" category = "main" optional = false python-versions = ">=3.7" [package.extras] -all = ["fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "zopfli (>=0.1.4)", "lz4 (>=1.7.4.2)", "matplotlib", "sympy", "skia-pathops (>=0.5.0)", "brotlicffi (>=0.8.0)", "scipy", "brotli (>=1.0.1)", "munkres", "unicodedata2 (>=14.0.0)", "xattr"] +all = ["fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "zopfli (>=0.1.4)", "lz4 (>=1.7.4.2)", "matplotlib", "sympy", "skia-pathops (>=0.5.0)", "uharfbuzz (>=0.23.0)", "brotlicffi (>=0.8.0)", "scipy", "brotli (>=1.0.1)", "munkres", "unicodedata2 (>=14.0.0)", "xattr"] graphite = ["lz4 (>=1.7.4.2)"] interpolatable = ["scipy", "munkres"] lxml = ["lxml (>=4.0,<5)"] pathops = ["skia-pathops (>=0.5.0)"] plot = ["matplotlib"] +repacker = ["uharfbuzz (>=0.23.0)"] symfont = ["sympy"] type1 = ["xattr"] ufo = ["fs (>=2.2.0,<3)"] unicode = ["unicodedata2 (>=14.0.0)"] woff = ["zopfli (>=0.1.4)", "brotlicffi (>=0.8.0)", "brotli (>=1.0.1)"] +[[package]] +name = "fqdn" +version = "1.5.1" +description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4" + +[[package]] +name = "ftfy" +version = "6.1.1" +description = "Fixes mojibake and other problems with Unicode, after the fact" +category = "main" +optional = false +python-versions = ">=3.7,<4" + +[package.dependencies] +wcwidth = ">=0.2.5" + [[package]] name = "gast" -version = "0.5.3" +version = "0.4.0" description = "Python AST that abstracts the underlying Python version" category = "main" optional = false @@ -354,7 +462,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [[package]] name = "gdown" -version = "4.4.0" +version = "4.6.0" description = "Google Drive direct download of big files." category = "main" optional = false @@ -369,7 +477,7 @@ tqdm = "*" [[package]] name = "google-auth" -version = "2.6.2" +version = "2.16.0" description = "Google Authentication Library" category = "main" optional = false @@ -383,8 +491,10 @@ six = ">=1.9.0" [package.extras] aiohttp = ["requests (>=2.20.0,<3.0.0dev)", "aiohttp (>=3.6.2,<4.0.0dev)"] -pyopenssl = ["pyopenssl (>=20.0.0)"] +enterprise_cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"] +pyopenssl = ["pyopenssl (>=20.0.0)", "cryptography (>=38.0.3)"] reauth = ["pyu2f (>=0.1.5)"] +requests = ["requests (>=2.20.0,<3.0.0dev)"] [[package]] name = "google-auth-oauthlib" @@ -414,21 +524,18 @@ six = "*" [[package]] name = "grpcio" -version = "1.45.0" +version = "1.51.1" description = "HTTP/2-based RPC framework" category = "main" optional = false -python-versions = ">=3.6" - -[package.dependencies] -six = ">=1.5.2" +python-versions = ">=3.7" [package.extras] -protobuf = ["grpcio-tools (>=1.45.0)"] +protobuf = ["grpcio-tools (>=1.51.1)"] [[package]] name = "h5py" -version = "3.6.0" +version = "3.7.0" description = "Read and write HDF5 files from Python" category = "main" optional = false @@ -437,48 +544,36 @@ python-versions = ">=3.7" [package.dependencies] numpy = ">=1.14.5" -[[package]] -name = "hdbscan" -version = "0.8.28" -description = "Clustering based on density with variable density clusters" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -cython = ">=0.27" -joblib = ">=1.0" -numpy = ">=1.20" -scikit-learn = ">=0.20" -scipy = ">=1.0" - [[package]] name = "huggingface-hub" -version = "0.4.0" -description = "Client library to download and publish models on the huggingface.co hub" +version = "0.11.1" +description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" category = "main" optional = false -python-versions = ">=3.6.0" +python-versions = ">=3.7.0" [package.dependencies] filelock = "*" packaging = ">=20.9" -pyyaml = "*" +pyyaml = ">=5.1" requests = "*" tqdm = "*" typing-extensions = ">=3.7.4.3" [package.extras] -tensorflow = ["tensorflow"] -testing = ["pytest", "datasets"] +all = ["InquirerPy (==0.3.4)", "isort (>=5.5.4)", "jedi", "jinja2", "pytest", "pytest-cov", "pytest-env", "soundfile", "black (==22.3)", "flake8 (>=3.8.3)", "flake8-bugbear", "mypy (==0.982)", "types-pyyaml", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +cli = ["InquirerPy (==0.3.4)"] +dev = ["InquirerPy (==0.3.4)", "isort (>=5.5.4)", "jedi", "jinja2", "pytest", "pytest-cov", "pytest-env", "soundfile", "black (==22.3)", "flake8 (>=3.8.3)", "flake8-bugbear", "mypy (==0.982)", "types-pyyaml", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +fastai = ["toml", "fastai (>=2.4)", "fastcore (>=1.3.27)"] +quality = ["black (==22.3)", "flake8 (>=3.8.3)", "flake8-bugbear", "isort (>=5.5.4)", "mypy (==0.982)"] +tensorflow = ["tensorflow", "pydot", "graphviz"] +testing = ["InquirerPy (==0.3.4)", "isort (>=5.5.4)", "jedi", "jinja2", "pytest", "pytest-cov", "pytest-env", "soundfile"] torch = ["torch"] -all = ["pytest", "datasets", "black (>=20.8b1)", "isort (>=5.5.4)", "flake8 (>=3.8.3)"] -dev = ["pytest", "datasets", "black (>=20.8b1)", "isort (>=5.5.4)", "flake8 (>=3.8.3)"] -quality = ["black (>=20.8b1)", "isort (>=5.5.4)", "flake8 (>=3.8.3)"] +typing = ["types-pyyaml", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] [[package]] name = "idna" -version = "3.3" +version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" category = "main" optional = false @@ -486,7 +581,7 @@ python-versions = ">=3.5" [[package]] name = "importlib-metadata" -version = "4.11.3" +version = "6.0.0" description = "Read metadata from Python packages" category = "main" optional = false @@ -496,13 +591,13 @@ python-versions = ">=3.7" zipp = ">=0.5" [package.extras] -docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"] +docs = ["sphinx (>=3.5)", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "furo", "sphinx-lint", "jaraco.tidelift (>=1.4)"] perf = ["ipython"] -testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "packaging", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "importlib-resources (>=1.3)"] +testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "flake8 (<5)", "pytest-cov", "pytest-enabler (>=1.3)", "packaging", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "pytest-flake8", "importlib-resources (>=1.3)"] [[package]] name = "importlib-resources" -version = "5.6.0" +version = "5.10.2" description = "Read resources from Python packages" category = "main" optional = false @@ -512,34 +607,41 @@ python-versions = ">=3.7" zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"] -testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)"] +docs = ["sphinx (>=3.5)", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "furo", "sphinx-lint", "jaraco.tidelift (>=1.4)"] +testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "flake8 (<5)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "pytest-flake8"] [[package]] name = "ipykernel" -version = "6.9.2" +version = "6.20.2" description = "IPython Kernel for Jupyter" category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" [package.dependencies] appnope = {version = "*", markers = "platform_system == \"Darwin\""} -debugpy = ">=1.0.0,<2.0" +comm = ">=0.1.1" +debugpy = ">=1.0" ipython = ">=7.23.1" -jupyter-client = "<8.0" -matplotlib-inline = ">=0.1.0,<0.2.0" +jupyter-client = ">=6.1.12" +matplotlib-inline = ">=0.1" nest-asyncio = "*" +packaging = "*" psutil = "*" -tornado = ">=4.2,<7.0" -traitlets = ">=5.1.0,<6.0" +pyzmq = ">=17" +tornado = ">=6.1" +traitlets = ">=5.4.0" [package.extras] -test = ["pytest (!=5.3.4)", "pytest-cov", "flaky", "ipyparallel"] +cov = ["coverage", "curio", "matplotlib", "pytest-cov", "trio"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] +pyqt5 = ["pyqt5"] +pyside6 = ["pyside6"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest-asyncio", "pytest-cov", "pytest-timeout", "pytest (>=7.0)"] [[package]] name = "ipython" -version = "8.2.0" +version = "8.8.0" description = "IPython: Productive Interactive Computing" category = "main" optional = false @@ -554,15 +656,15 @@ jedi = ">=0.16" matplotlib-inline = "*" pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} pickleshare = "*" -prompt-toolkit = ">=2.0.0,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.1.0" +prompt-toolkit = ">=3.0.11,<3.1.0" pygments = ">=2.4.0" stack-data = "*" traitlets = ">=5" [package.extras] -all = ["black", "Sphinx (>=1.3)", "ipykernel", "nbconvert", "nbformat", "ipywidgets", "notebook", "ipyparallel", "qtconsole", "pytest (<7.1)", "pytest-asyncio", "testpath", "curio", "matplotlib (!=3.2.0)", "numpy (>=1.19)", "pandas", "trio"] +all = ["black", "ipykernel", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "docrepr", "matplotlib", "stack-data", "pytest (<7)", "typing-extensions", "pytest (<7.1)", "pytest-asyncio", "testpath", "nbconvert", "nbformat", "ipywidgets", "notebook", "ipyparallel", "qtconsole", "curio", "matplotlib (!=3.2.0)", "numpy (>=1.20)", "pandas", "trio"] black = ["black"] -doc = ["Sphinx (>=1.3)"] +doc = ["ipykernel", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "docrepr", "matplotlib", "stack-data", "pytest (<7)", "typing-extensions", "pytest (<7.1)", "pytest-asyncio", "testpath"] kernel = ["ipykernel"] nbconvert = ["nbconvert"] nbformat = ["nbformat"] @@ -570,7 +672,7 @@ notebook = ["ipywidgets", "notebook"] parallel = ["ipyparallel"] qtconsole = ["qtconsole"] test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] -test_extra = ["pytest (<7.1)", "pytest-asyncio", "testpath", "curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.19)", "pandas", "trio"] +test_extra = ["pytest (<7.1)", "pytest-asyncio", "testpath", "curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.20)", "pandas", "trio"] [[package]] name = "ipython-genutils" @@ -582,23 +684,32 @@ python-versions = "*" [[package]] name = "ipywidgets" -version = "7.7.0" -description = "IPython HTML widgets for Jupyter" +version = "8.0.4" +description = "Jupyter interactive widgets" category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" [package.dependencies] ipykernel = ">=4.5.1" -ipython = {version = ">=4.0.0", markers = "python_version >= \"3.3\""} -ipython-genutils = ">=0.2.0,<0.3.0" -jupyterlab-widgets = {version = ">=1.0.0", markers = "python_version >= \"3.6\""} -nbformat = ">=4.2.0" +ipython = ">=6.1.0" +jupyterlab-widgets = ">=3.0,<4.0" traitlets = ">=4.3.1" -widgetsnbextension = ">=3.6.0,<3.7.0" +widgetsnbextension = ">=4.0,<5.0" [package.extras] -test = ["pytest (>=3.6.0)", "pytest-cov", "mock"] +test = ["jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"] + +[[package]] +name = "isoduration" +version = "20.11.0" +description = "Operations with ISO 8601 durations" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +arrow = ">=0.15.0" [[package]] name = "itsdangerous" @@ -610,7 +721,7 @@ python-versions = ">=3.7" [[package]] name = "jedi" -version = "0.18.1" +version = "0.18.2" description = "An autocompletion tool for Python that can be used for text editors." category = "main" optional = false @@ -620,12 +731,13 @@ python-versions = ">=3.6" parso = ">=0.8.0,<0.9.0" [package.extras] +docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx-rtd-theme (==0.4.3)", "sphinx (==1.8.5)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] +testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] name = "jinja2" -version = "3.1.1" +version = "3.1.2" description = "A very fast and expressive template engine." category = "main" optional = false @@ -639,15 +751,23 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "joblib" -version = "1.1.0" +version = "1.2.0" description = "Lightweight pipelining with Python functions" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" + +[[package]] +name = "jsonpointer" +version = "2.3" +description = "Identify specific nodes in a JSON document (RFC 6901)" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [[package]] name = "jsonschema" -version = "4.4.0" +version = "4.17.3" description = "An implementation of JSON Schema validation for Python" category = "main" optional = false @@ -655,12 +775,21 @@ python-versions = ">=3.7" [package.dependencies] attrs = ">=17.4.0" +fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} +isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""} +pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" +rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""} +uri-template = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +webcolors = {version = ">=1.11", optional = true, markers = "extra == \"format-nongpl\""} [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format_nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] [[package]] name = "jupyter" @@ -680,32 +809,32 @@ qtconsole = "*" [[package]] name = "jupyter-client" -version = "7.1.2" +version = "7.4.9" description = "Jupyter protocol implementation and client libraries" category = "main" optional = false -python-versions = ">=3.6.1" +python-versions = ">=3.7" [package.dependencies] entrypoints = "*" -jupyter-core = ">=4.6.0" -nest-asyncio = ">=1.5" -python-dateutil = ">=2.1" -pyzmq = ">=13" -tornado = ">=4.1" +jupyter-core = ">=4.9.2" +nest-asyncio = ">=1.5.4" +python-dateutil = ">=2.8.2" +pyzmq = ">=23.0" +tornado = ">=6.2" traitlets = "*" [package.extras] -doc = ["myst-parser", "sphinx (>=1.3.6)", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] -test = ["codecov", "coverage", "ipykernel", "ipython", "mock", "mypy", "pre-commit", "pytest", "pytest-asyncio", "pytest-cov", "pytest-timeout", "jedi (<0.18)"] +doc = ["ipykernel", "myst-parser", "sphinx-rtd-theme", "sphinx (>=1.3.6)", "sphinxcontrib-github-alt"] +test = ["codecov", "coverage", "ipykernel (>=6.12)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"] [[package]] name = "jupyter-console" -version = "6.4.3" +version = "6.4.4" description = "Jupyter terminal console" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] ipykernel = "*" @@ -719,71 +848,136 @@ test = ["pexpect"] [[package]] name = "jupyter-core" -version = "4.9.2" +version = "5.1.3" description = "Jupyter core package. A base package on which Jupyter projects rely." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" [package.dependencies] +platformdirs = ">=2.5" pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} -traitlets = "*" +traitlets = ">=5.3" + +[package.extras] +docs = ["myst-parser", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] +test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] [[package]] -name = "jupyterlab-pygments" -version = "0.1.2" -description = "Pygments theme using JupyterLab CSS variables" +name = "jupyter-events" +version = "0.6.3" +description = "Jupyter Event System library" category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" [package.dependencies] -pygments = ">=2.4.1,<3" +jsonschema = {version = ">=3.2.0", extras = ["format-nongpl"]} +python-json-logger = ">=2.0.4" +pyyaml = ">=5.3" +rfc3339-validator = "*" +rfc3986-validator = ">=0.1.1" +traitlets = ">=5.3" + +[package.extras] +cli = ["click", "rich"] +docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"] +test = ["click", "coverage", "pre-commit", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "pytest-cov", "pytest (>=7.0)", "rich"] [[package]] -name = "jupyterlab-widgets" -version = "1.1.0" -description = "A JupyterLab extension." +name = "jupyter-server" +version = "2.1.0" +description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" + +[package.dependencies] +anyio = ">=3.1.0,<4" +argon2-cffi = "*" +jinja2 = "*" +jupyter-client = ">=7.4.4" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" +jupyter-events = ">=0.4.0" +jupyter-server-terminals = "*" +nbconvert = ">=6.4.4" +nbformat = ">=5.3.0" +packaging = "*" +prometheus-client = "*" +pywinpty = {version = "*", markers = "os_name == \"nt\""} +pyzmq = ">=24" +send2trash = "*" +terminado = ">=0.8.3" +tornado = ">=6.2.0" +traitlets = ">=5.6.0" +websocket-client = "*" + +[package.extras] +docs = ["docutils (<0.20)", "ipykernel", "jinja2", "jupyter-client", "jupyter-server", "mistune (<1.0.0)", "myst-parser", "nbformat", "prometheus-client", "pydata-sphinx-theme", "send2trash", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-openapi", "sphinxcontrib-spelling", "sphinxemoji", "tornado"] +test = ["ipykernel", "pre-commit", "pytest-console-scripts", "pytest-jupyter[server] (>=0.4)", "pytest-timeout", "pytest (>=7.0)", "requests"] [[package]] -name = "keras" -version = "2.8.0" -description = "Deep learning for humans." +name = "jupyter-server-terminals" +version = "0.4.4" +description = "A Jupyter Server Extension Providing Terminals." category = "main" optional = false -python-versions = "*" +python-versions = ">=3.8" + +[package.dependencies] +pywinpty = {version = ">=2.0.3", markers = "os_name == \"nt\""} +terminado = ">=0.8.3" + +[package.extras] +docs = ["jinja2", "jupyter-server", "mistune (<3.0)", "myst-parser", "nbformat", "packaging", "pydata-sphinx-theme", "sphinxcontrib-github-alt", "sphinxcontrib-openapi", "sphinxcontrib-spelling", "sphinxemoji", "tornado"] +test = ["coverage", "jupyter-server (>=2.0.0)", "pytest-cov", "pytest-jupyter[server] (>=0.5.3)", "pytest-timeout", "pytest (>=7.0)"] [[package]] -name = "keras-preprocessing" -version = "1.1.2" -description = "Easy data preprocessing and data augmentation for deep learning models" +name = "jupyterlab-pygments" +version = "0.2.2" +description = "Pygments theme using JupyterLab CSS variables" category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" -[package.dependencies] -numpy = ">=1.9.1" -six = ">=1.9.0" +[[package]] +name = "jupyterlab-widgets" +version = "3.0.5" +description = "Jupyter interactive widgets for JupyterLab" +category = "main" +optional = false +python-versions = ">=3.7" -[package.extras] -image = ["scipy (>=0.14)", "Pillow (>=5.2.0)"] -pep8 = ["flake8"] -tests = ["pandas", "pillow", "tensorflow", "keras", "pytest", "pytest-xdist", "pytest-cov"] +[[package]] +name = "keras" +version = "2.11.0" +description = "Deep learning for humans." +category = "main" +optional = false +python-versions = ">=3.7" [[package]] name = "kiwisolver" -version = "1.4.1" +version = "1.4.4" description = "A fast implementation of the Cassowary constraint solver" category = "main" optional = false python-versions = ">=3.7" +[[package]] +name = "langcodes" +version = "3.3.0" +description = "Tools for labeling human languages with IETF language tags" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +data = ["language-data (>=1.1,<2.0)"] + [[package]] name = "libclang" -version = "13.0.0" +version = "15.0.6.1" description = "Clang Python Bindings, mirrored from the official LLVM repo: https://github.com/llvm/llvm-project/tree/main/clang/bindings/python, to make the installation process easier." category = "main" optional = false @@ -791,15 +985,15 @@ python-versions = "*" [[package]] name = "llvmlite" -version = "0.36.0" +version = "0.34.0" description = "lightweight wrapper around basic LLVM functionality" category = "main" optional = false -python-versions = ">=3.6,<3.10" +python-versions = ">=3.6" [[package]] name = "lxml" -version = "4.8.0" +version = "4.9.2" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." category = "main" optional = false @@ -813,11 +1007,11 @@ source = ["Cython (>=0.29.7)"] [[package]] name = "markdown" -version = "3.3.6" +version = "3.4.1" description = "Python implementation of Markdown." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""} @@ -827,7 +1021,7 @@ testing = ["coverage", "pyyaml"] [[package]] name = "markupsafe" -version = "2.1.1" +version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." category = "main" optional = false @@ -835,26 +1029,27 @@ python-versions = ">=3.7" [[package]] name = "matplotlib" -version = "3.5.1" +version = "3.6.3" description = "Python plotting package" category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" [package.dependencies] +contourpy = ">=1.0.1" cycler = ">=0.10" fonttools = ">=4.22.0" kiwisolver = ">=1.0.1" -numpy = ">=1.17" +numpy = ">=1.19" packaging = ">=20.0" pillow = ">=6.2.0" pyparsing = ">=2.2.1" python-dateutil = ">=2.7" -setuptools_scm = ">=4" +setuptools_scm = ">=7" [[package]] name = "matplotlib-inline" -version = "0.1.3" +version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" category = "main" optional = false @@ -865,8 +1060,8 @@ traitlets = "*" [[package]] name = "mistune" -version = "0.8.4" -description = "The fastest markdown parser in pure Python" +version = "2.0.4" +description = "A sane Markdown parser with useful plugins and renderers" category = "main" optional = false python-versions = "*" @@ -884,108 +1079,132 @@ keras = ">=2.0.0" opencv-python = ">=4.1.0" [[package]] -name = "nbclient" -version = "0.5.13" -description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." +name = "murmurhash" +version = "1.0.9" +description = "Cython bindings for MurmurHash" category = "main" optional = false -python-versions = ">=3.7.0" - -[package.dependencies] -jupyter-client = ">=6.1.5" -nbformat = ">=5.0" -nest-asyncio = "*" -traitlets = ">=5.0.0" - -[package.extras] -sphinx = ["Sphinx (>=1.7)", "sphinx-book-theme", "mock", "moto", "myst-parser"] -test = ["ipython (<8.0.0)", "ipykernel", "ipywidgets (<8.0.0)", "pytest (>=4.1)", "pytest-asyncio", "pytest-cov (>=2.6.1)", "check-manifest", "flake8", "mypy", "xmltodict", "black", "pip (>=18.1)", "wheel (>=0.31.0)", "setuptools (>=38.6.0)", "twine (>=1.11.0)"] +python-versions = ">=3.6" [[package]] -name = "nbconvert" -version = "6.4.4" -description = "Converting Jupyter Notebooks" +name = "nbclassic" +version = "0.4.8" +description = "A web-based notebook environment for interactive computing" category = "main" optional = false python-versions = ">=3.7" [package.dependencies] -beautifulsoup4 = "*" -bleach = "*" -defusedxml = "*" -entrypoints = ">=0.2.2" -jinja2 = ">=2.4" -jupyter-core = "*" -jupyterlab-pygments = "*" -mistune = ">=0.8.1,<2" -nbclient = ">=0.5.0,<0.6.0" -nbformat = ">=4.4" -pandocfilters = ">=1.4.1" -pygments = ">=2.4.1" -testpath = "*" -traitlets = ">=5.0" - -[package.extras] -all = ["pytest", "pytest-cov", "pytest-dependency", "ipykernel", "ipywidgets (>=7)", "pyppeteer (>=1,<1.1)", "tornado (>=4.0)", "sphinx (>=1.5.1)", "sphinx-rtd-theme", "nbsphinx (>=0.2.12)", "ipython"] -docs = ["sphinx (>=1.5.1)", "sphinx-rtd-theme", "nbsphinx (>=0.2.12)", "ipython"] -serve = ["tornado (>=4.0)"] -test = ["pytest", "pytest-cov", "pytest-dependency", "ipykernel", "ipywidgets (>=7)", "pyppeteer (>=1,<1.1)"] -webpdf = ["pyppeteer (>=1,<1.1)"] - +argon2-cffi = "*" +ipykernel = "*" +ipython-genutils = "*" +jinja2 = "*" +jupyter-client = ">=6.1.1" +jupyter-core = ">=4.6.1" +jupyter-server = ">=1.8" +nbconvert = ">=5" +nbformat = "*" +nest-asyncio = ">=1.5" +notebook-shim = ">=0.1.0" +prometheus-client = "*" +pyzmq = ">=17" +Send2Trash = ">=1.8.0" +terminado = ">=0.8.3" +tornado = ">=6.1" +traitlets = ">=4.2.1" + +[package.extras] +docs = ["sphinx", "nbsphinx", "sphinxcontrib-github-alt", "sphinx-rtd-theme", "myst-parser"] +json-logging = ["json-logging"] +test = ["pytest", "coverage", "requests", "testpath", "nbval", "pytest-playwright", "pytest-cov", "pytest-tornasync", "requests-unixsocket"] + [[package]] -name = "nbformat" -version = "5.2.0" -description = "The Jupyter Notebook format" +name = "nbclient" +version = "0.7.2" +description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.7.0" [package.dependencies] -jsonschema = ">=2.4,<2.5.0 || >2.5.0" -jupyter-core = "*" -traitlets = ">=4.1" +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" +nbformat = ">=5.1" +traitlets = ">=5.3" [package.extras] -fast = ["fastjsonschema"] -test = ["check-manifest", "fastjsonschema", "testpath", "pytest"] +dev = ["pre-commit"] +docs = ["autodoc-traits", "mock", "moto", "myst-parser", "nbclient", "sphinx-book-theme", "sphinx (>=1.7)"] +test = ["ipykernel", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest-asyncio", "pytest-cov (>=4.0)", "pytest (>=7.0)", "testpath", "xmltodict"] [[package]] -name = "nest-asyncio" -version = "1.5.4" -description = "Patch asyncio to allow nested event loops" +name = "nbconvert" +version = "7.2.8" +description = "Converting Jupyter Notebooks" category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" + +[package.dependencies] +beautifulsoup4 = "*" +bleach = "*" +defusedxml = "*" +importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} +jinja2 = ">=3.0" +jupyter-core = ">=4.7" +jupyterlab-pygments = "*" +markupsafe = ">=2.0" +mistune = ">=2.0.3,<3" +nbclient = ">=0.5.0" +nbformat = ">=5.1" +packaging = "*" +pandocfilters = ">=1.4.1" +pygments = ">=2.4.1" +tinycss2 = "*" +traitlets = ">=5.0" + +[package.extras] +all = ["nbconvert"] +docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"] +qtpdf = ["nbconvert"] +qtpng = ["pyqtwebengine (>=5.15)"] +serve = ["tornado (>=6.1)"] +test = ["ipykernel", "ipywidgets (>=7)", "pre-commit", "pytest", "pytest-dependency"] +webpdf = ["pyppeteer (>=1,<1.1)"] [[package]] -name = "nltk" -version = "3.7" -description = "Natural Language Toolkit" +name = "nbformat" +version = "5.7.3" +description = "The Jupyter Notebook format" category = "main" optional = false python-versions = ">=3.7" [package.dependencies] -click = "*" -joblib = "*" -regex = ">=2021.8.3" -tqdm = "*" +fastjsonschema = "*" +jsonschema = ">=2.6" +jupyter-core = "*" +traitlets = ">=5.1" [package.extras] -all = ["numpy", "pyparsing", "scipy", "matplotlib", "twython", "requests", "scikit-learn", "python-crfsuite"] -corenlp = ["requests"] -machine_learning = ["numpy", "python-crfsuite", "scikit-learn", "scipy"] -plot = ["matplotlib"] -tgrep = ["pyparsing"] -twitter = ["twython"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["pep440", "pre-commit", "pytest", "testpath"] + +[[package]] +name = "nest-asyncio" +version = "1.5.6" +description = "Patch asyncio to allow nested event loops" +category = "main" +optional = false +python-versions = ">=3.5" [[package]] name = "notebook" -version = "6.4.10" +version = "6.5.2" description = "A web-based notebook environment for interactive computing" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] argon2-cffi = "*" @@ -994,6 +1213,7 @@ ipython-genutils = "*" jinja2 = "*" jupyter-client = ">=5.3.4" jupyter-core = ">=4.6.1" +nbclassic = ">=0.4.7" nbconvert = ">=5" nbformat = "*" nest-asyncio = ">=1.5" @@ -1007,31 +1227,45 @@ traitlets = ">=4.2.1" [package.extras] docs = ["sphinx", "nbsphinx", "sphinxcontrib-github-alt", "sphinx-rtd-theme", "myst-parser"] json-logging = ["json-logging"] -test = ["pytest", "coverage", "requests", "nbval", "selenium", "pytest-cov", "requests-unixsocket"] +test = ["pytest", "coverage", "requests", "testpath", "nbval", "selenium (==4.1.5)", "pytest-cov", "requests-unixsocket"] + +[[package]] +name = "notebook-shim" +version = "0.2.2" +description = "A shim layer for notebook traits and config" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +jupyter-server = ">=1.8,<3" + +[package.extras] +test = ["pytest", "pytest-console-scripts", "pytest-tornasync"] [[package]] name = "numba" -version = "0.53.1" +version = "0.51.2" description = "compiling Python code using LLVM" category = "main" optional = false -python-versions = ">=3.6,<3.10" +python-versions = ">=3.6" [package.dependencies] -llvmlite = ">=0.36.0rc1,<0.37" +llvmlite = ">=0.34.0.dev0,<0.35" numpy = ">=1.15" [[package]] name = "numpy" -version = "1.22.3" -description = "NumPy is the fundamental package for array computing with Python." +version = "1.24.1" +description = "Fundamental package for array computing in Python" category = "main" optional = false python-versions = ">=3.8" [[package]] name = "oauthlib" -version = "3.2.0" +version = "3.2.2" description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" category = "main" optional = false @@ -1044,7 +1278,7 @@ signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] [[package]] name = "opencv-python" -version = "4.5.5.64" +version = "4.7.0.68" description = "Wrapper package for OpenCV python bindings." category = "main" optional = false @@ -1052,9 +1286,11 @@ python-versions = ">=3.6" [package.dependencies] numpy = [ - {version = ">=1.21.2", markers = "python_version >= \"3.6\" and platform_system == \"Darwin\" and platform_machine == \"arm64\""}, + {version = ">=1.21.0", markers = "python_version <= \"3.9\" and platform_system == \"Darwin\" and platform_machine == \"arm64\""}, + {version = ">=1.21.2", markers = "python_version >= \"3.10\""}, + {version = ">=1.21.4", markers = "python_version >= \"3.10\" and platform_system == \"Darwin\""}, {version = ">=1.19.3", markers = "python_version >= \"3.6\" and platform_system == \"Linux\" and platform_machine == \"aarch64\" or python_version >= \"3.9\""}, - {version = ">=1.14.5", markers = "python_version >= \"3.7\""}, + {version = ">=1.17.0", markers = "python_version >= \"3.7\""}, {version = ">=1.17.3", markers = "python_version >= \"3.8\""}, ] @@ -1074,19 +1310,24 @@ docs = ["sphinx (==1.2.3)", "sphinxcontrib-napoleon", "sphinx-rtd-theme", "numpy tests = ["pytest", "pytest-cov", "pytest-pep8"] [[package]] -name = "packaging" -version = "21.3" -description = "Core utilities for Python packages" +name = "outputformat" +version = "0.1.3" +description = "Decorate and beautify output" category = "main" optional = false python-versions = ">=3.6" -[package.dependencies] -pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" +[[package]] +name = "packaging" +version = "23.0" +description = "Core utilities for Python packages" +category = "main" +optional = false +python-versions = ">=3.7" [[package]] name = "pandas" -version = "1.4.1" +version = "1.5.2" description = "Powerful data structures for data analysis, time series, and statistics" category = "main" optional = false @@ -1094,9 +1335,8 @@ python-versions = ">=3.8" [package.dependencies] numpy = [ - {version = ">=1.18.5", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""}, - {version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""}, - {version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""}, + {version = ">=1.20.3", markers = "python_version < \"3.10\""}, + {version = ">=1.21.0", markers = "python_version >= \"3.10\""}, ] python-dateutil = ">=2.8.1" pytz = ">=2020.1" @@ -1124,6 +1364,25 @@ python-versions = ">=3.6" qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] testing = ["docopt", "pytest (<6.0.0)"] +[[package]] +name = "pathy" +version = "0.10.1" +description = "pathlib.Path subclasses for local and cloud bucket storage" +category = "main" +optional = false +python-versions = ">= 3.6" + +[package.dependencies] +smart-open = ">=5.2.1,<7.0.0" +typer = ">=0.3.0,<1.0.0" + +[package.extras] +all = ["google-cloud-storage (>=1.26.0,<2.0.0)", "boto3", "azure-storage-blob", "pytest", "pytest-coverage", "mock", "typer-cli"] +azure = ["azure-storage-blob"] +gcs = ["google-cloud-storage (>=1.26.0,<2.0.0)"] +s3 = ["boto3"] +test = ["pytest", "pytest-coverage", "mock", "typer-cli"] + [[package]] name = "pexpect" version = "4.8.0" @@ -1145,27 +1404,62 @@ python-versions = "*" [[package]] name = "pillow" -version = "9.0.1" +version = "9.4.0" description = "Python Imaging Library (Fork)" category = "main" optional = false python-versions = ">=3.7" +[package.extras] +docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "pkgutil-resolve-name" +version = "1.3.10" +description = "Resolve a name to an object." +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "platformdirs" +version = "2.6.2" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "main" +optional = false +python-versions = ">=3.7" + +[package.extras] +docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx-autodoc-typehints (>=1.19.5)", "sphinx (>=5.3)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.2.2)", "pytest-cov (>=4)", "pytest-mock (>=3.10)", "pytest (>=7.2)"] + [[package]] name = "plotly" -version = "5.6.0" +version = "5.12.0" description = "An open-source, interactive data visualization library for Python" category = "main" optional = false python-versions = ">=3.6" [package.dependencies] -six = "*" tenacity = ">=6.2.0" +[[package]] +name = "preshed" +version = "3.0.8" +description = "Cython hash table that trusts the keys are pre-hashed" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +cymem = ">=2.0.2,<2.1.0" +murmurhash = ">=0.28.0,<1.1.0" + [[package]] name = "prometheus-client" -version = "0.13.1" +version = "0.15.0" description = "Python client for the Prometheus monitoring system." category = "main" optional = false @@ -1176,7 +1470,7 @@ twisted = ["twisted"] [[package]] name = "prompt-toolkit" -version = "3.0.28" +version = "3.0.36" description = "Library for building powerful interactive command lines in Python" category = "main" optional = false @@ -1187,7 +1481,7 @@ wcwidth = "*" [[package]] name = "protobuf" -version = "3.19.4" +version = "3.19.6" description = "Protocol Buffers" category = "main" optional = false @@ -1195,14 +1489,14 @@ python-versions = ">=3.5" [[package]] name = "psutil" -version = "5.9.0" +version = "5.9.4" description = "Cross-platform lib for process and system monitoring in Python." category = "main" optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" [package.extras] -test = ["ipaddress", "mock", "unittest2", "enum34", "pywin32", "wmi"] +test = ["ipaddress", "mock", "enum34", "pywin32", "wmi"] [[package]] name = "ptyprocess" @@ -1223,14 +1517,6 @@ python-versions = "*" [package.extras] tests = ["pytest"] -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" - [[package]] name = "pyasn1" version = "0.4.8" @@ -1258,25 +1544,43 @@ category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +[[package]] +name = "pydantic" +version = "1.8.2" +description = "Data validation and settings management using python 3.6 type hinting" +category = "main" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +typing-extensions = ">=3.7.4.3" + +[package.extras] +dotenv = ["python-dotenv (>=0.10.4)"] +email = ["email-validator (>=1.0.3)"] + [[package]] name = "pygments" -version = "2.11.2" +version = "2.14.0" description = "Pygments is a syntax highlighting package written in Python." category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" + +[package.extras] +plugins = ["importlib-metadata"] [[package]] name = "pymupdf" -version = "1.19.6" +version = "1.21.1" description = "Python bindings for the PDF toolkit and renderer MuPDF" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [[package]] name = "pynndescent" -version = "0.5.6" +version = "0.5.8" description = "Nearest Neighbor Descent" category = "main" optional = false @@ -1291,18 +1595,18 @@ scipy = ">=1.0" [[package]] name = "pyparsing" -version = "3.0.7" -description = "Python parsing module" +version = "3.0.9" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.6.8" [package.extras] -diagrams = ["jinja2", "railroad-diagrams"] +diagrams = ["railroad-diagrams", "jinja2"] [[package]] name = "pyrsistent" -version = "0.18.1" +version = "0.19.3" description = "Persistent/Functional/Immutable data structures" category = "main" optional = false @@ -1329,18 +1633,26 @@ six = ">=1.5" [[package]] name = "python-dotenv" -version = "0.20.0" +version = "0.21.0" description = "Read key-value pairs from a .env file and set them as environment variables" category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" [package.extras] cli = ["click (>=5.0)"] +[[package]] +name = "python-json-logger" +version = "2.0.4" +description = "A python library adding a json log formatter" +category = "main" +optional = false +python-versions = ">=3.5" + [[package]] name = "pytz" -version = "2022.1" +version = "2022.7.1" description = "World timezone definitions, modern and historical" category = "main" optional = false @@ -1348,7 +1660,7 @@ python-versions = "*" [[package]] name = "pywin32" -version = "303" +version = "305" description = "Python for Window Extensions" category = "main" optional = false @@ -1356,7 +1668,7 @@ python-versions = "*" [[package]] name = "pywinpty" -version = "2.0.5" +version = "2.0.10" description = "Pseudo terminal support for Windows from Python." category = "main" optional = false @@ -1364,15 +1676,15 @@ python-versions = ">=3.7" [[package]] name = "pyyaml" -version = "5.4.1" +version = "6.0" description = "YAML parser and emitter for Python" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = ">=3.6" [[package]] name = "pyzmq" -version = "22.3.0" +version = "25.0.0" description = "Python bindings for 0MQ" category = "main" optional = false @@ -1380,15 +1692,14 @@ python-versions = ">=3.6" [package.dependencies] cffi = {version = "*", markers = "implementation_name == \"pypy\""} -py = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] name = "qtconsole" -version = "5.2.2" +version = "5.4.0" description = "Jupyter Qt console" category = "main" optional = false -python-versions = ">= 3.6" +python-versions = ">= 3.7" [package.dependencies] ipykernel = ">=4.1" @@ -1397,8 +1708,8 @@ jupyter-client = ">=4.1" jupyter-core = "*" pygments = "*" pyzmq = ">=17.1" -qtpy = "*" -traitlets = "*" +qtpy = ">=2.0.1" +traitlets = "<5.2.1 || >5.2.1,<5.2.2 || >5.2.2" [package.extras] doc = ["Sphinx (>=1.3)"] @@ -1406,21 +1717,21 @@ test = ["flaky", "pytest", "pytest-qt"] [[package]] name = "qtpy" -version = "2.0.1" +version = "2.3.0" description = "Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6)." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] packaging = "*" [package.extras] -test = ["pytest (>=6.0.0)", "pytest-cov (>=3.0.0)", "pytest-qt"] +test = ["pytest (>=6,!=7.0.0,!=7.0.1)", "pytest-cov (>=3.0.0)", "pytest-qt"] [[package]] name = "regex" -version = "2022.3.15" +version = "2022.10.31" description = "Alternative regular expression module, to replace re." category = "main" optional = false @@ -1428,22 +1739,22 @@ python-versions = ">=3.6" [[package]] name = "requests" -version = "2.27.1" +version = "2.28.2" description = "Python HTTP for Humans." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = ">=3.7, <4" [package.dependencies] certifi = ">=2017.4.17" -charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""} -idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""} +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" PySocks = {version = ">=1.5.6,<1.5.7 || >1.5.7", optional = true, markers = "extra == \"socks\""} urllib3 = ">=1.21.1,<1.27" [package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] -use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "requests-oauthlib" @@ -1476,61 +1787,70 @@ Pillow = ">=5.2.0" tensorflow = ">=1.9.0" [[package]] -name = "rsa" -version = "4.8" -description = "Pure-Python RSA implementation" +name = "rfc3339-validator" +version = "0.1.4" +description = "A pure python RFC3339 validator" category = "main" optional = false -python-versions = ">=3.6,<4" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" [package.dependencies] -pyasn1 = ">=0.1.3" +six = "*" [[package]] -name = "sacremoses" -version = "0.0.49" -description = "SacreMoses" +name = "rfc3986-validator" +version = "0.1.1" +description = "Pure python rfc3986 validator" category = "main" optional = false -python-versions = "*" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +category = "main" +optional = false +python-versions = ">=3.6,<4" [package.dependencies] -click = "*" -joblib = "*" -regex = "*" -six = "*" -tqdm = "*" +pyasn1 = ">=0.1.3" [[package]] name = "scikit-learn" -version = "1.0.2" +version = "1.2.0" description = "A set of python modules for machine learning and data mining" category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" [package.dependencies] -joblib = ">=0.11" -numpy = ">=1.14.6" -scipy = ">=1.1.0" +joblib = ">=1.1.1" +numpy = ">=1.17.3" +scipy = ">=1.3.2" threadpoolctl = ">=2.0.0" [package.extras] -benchmark = ["matplotlib (>=2.2.3)", "pandas (>=0.25.0)", "memory-profiler (>=0.57.0)"] -docs = ["matplotlib (>=2.2.3)", "scikit-image (>=0.14.5)", "pandas (>=0.25.0)", "seaborn (>=0.9.0)", "memory-profiler (>=0.57.0)", "sphinx (>=4.0.1)", "sphinx-gallery (>=0.7.0)", "numpydoc (>=1.0.0)", "Pillow (>=7.1.2)", "sphinx-prompt (>=1.3.0)", "sphinxext-opengraph (>=0.4.2)"] -examples = ["matplotlib (>=2.2.3)", "scikit-image (>=0.14.5)", "pandas (>=0.25.0)", "seaborn (>=0.9.0)"] -tests = ["matplotlib (>=2.2.3)", "scikit-image (>=0.14.5)", "pandas (>=0.25.0)", "pytest (>=5.0.1)", "pytest-cov (>=2.9.0)", "flake8 (>=3.8.2)", "black (>=21.6b0)", "mypy (>=0.770)", "pyamg (>=4.0.0)"] +benchmark = ["matplotlib (>=3.1.3)", "pandas (>=1.0.5)", "memory-profiler (>=0.57.0)"] +docs = ["matplotlib (>=3.1.3)", "scikit-image (>=0.16.2)", "pandas (>=1.0.5)", "seaborn (>=0.9.0)", "memory-profiler (>=0.57.0)", "sphinx (>=4.0.1)", "sphinx-gallery (>=0.7.0)", "numpydoc (>=1.2.0)", "Pillow (>=7.1.2)", "pooch (>=1.6.0)", "sphinx-prompt (>=1.3.0)", "sphinxext-opengraph (>=0.4.2)", "plotly (>=5.10.0)"] +examples = ["matplotlib (>=3.1.3)", "scikit-image (>=0.16.2)", "pandas (>=1.0.5)", "seaborn (>=0.9.0)", "pooch (>=1.6.0)", "plotly (>=5.10.0)"] +tests = ["matplotlib (>=3.1.3)", "scikit-image (>=0.16.2)", "pandas (>=1.0.5)", "pytest (>=5.3.1)", "pytest-cov (>=2.9.0)", "flake8 (>=3.8.2)", "black (>=22.3.0)", "mypy (>=0.961)", "pyamg (>=4.0.0)", "numpydoc (>=1.2.0)", "pooch (>=1.6.0)"] [[package]] name = "scipy" -version = "1.8.0" -description = "SciPy: Scientific Library for Python" +version = "1.10.0" +description = "Fundamental algorithms for scientific computing in Python" category = "main" optional = false -python-versions = ">=3.8,<3.11" +python-versions = "<3.12,>=3.8" [package.dependencies] -numpy = ">=1.17.3,<1.25.0" +numpy = ">=1.19.5,<1.27.0" + +[package.extras] +test = ["pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "asv", "mpmath", "gmpy2", "threadpoolctl", "scikit-umfpack", "pooch"] +doc = ["sphinx (!=4.1.0)", "pydata-sphinx-theme (==0.9.0)", "sphinx-design (>=0.2.0)", "matplotlib (>2)", "numpydoc"] +dev = ["mypy", "typing-extensions", "pycodestyle", "flake8", "rich-click", "click", "doit (>=0.36.0)", "pydevtool"] [[package]] name = "send2trash" @@ -1546,76 +1866,155 @@ objc = ["pyobjc-framework-cocoa"] win32 = ["pywin32"] [[package]] -name = "sentence-transformers" -version = "2.2.0" -description = "Multilingual text embeddings" +name = "setuptools-scm" +version = "7.1.0" +description = "the blessed package to manage your versions by scm tags" category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" [package.dependencies] -huggingface-hub = "*" -nltk = "*" -numpy = "*" -scikit-learn = "*" -scipy = "*" -sentencepiece = "*" -torch = ">=1.6.0" -torchvision = "*" -tqdm = "*" -transformers = ">=4.6.0,<5.0.0" +packaging = ">=20.0" +tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} +typing-extensions = "*" + +[package.extras] +test = ["pytest (>=6.2)", "virtualenv (>20)"] +toml = ["setuptools (>=42)"] [[package]] -name = "sentencepiece" -version = "0.1.96" -description = "SentencePiece python wrapper" +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" category = "main" optional = false -python-versions = "*" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" [[package]] -name = "setuptools-scm" -version = "6.4.2" -description = "the blessed package to manage your versions by scm tags" +name = "smart-open" +version = "6.3.0" +description = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)" +category = "main" +optional = false +python-versions = ">=3.6,<4.0" + +[package.extras] +all = ["boto3", "google-cloud-storage (>=2.6.0)", "azure-storage-blob", "azure-common", "azure-core", "requests", "paramiko"] +azure = ["azure-storage-blob", "azure-common", "azure-core"] +gcs = ["google-cloud-storage (>=2.6.0)"] +http = ["requests"] +s3 = ["boto3"] +ssh = ["paramiko"] +test = ["boto3", "google-cloud-storage (>=2.6.0)", "azure-storage-blob", "azure-common", "azure-core", "requests", "paramiko", "moto", "responses", "pytest", "pytest-rerunfailures"] +webhdfs = ["requests"] + +[[package]] +name = "sniffio" +version = "1.3.0" +description = "Sniff out which async library your code is running under" +category = "main" +optional = false +python-versions = ">=3.7" + +[[package]] +name = "soupsieve" +version = "2.3.2.post1" +description = "A modern CSS selector implementation for Beautiful Soup." +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "spacy" +version = "3.3.2" +description = "Industrial-strength Natural Language Processing (NLP) in Python" category = "main" optional = false python-versions = ">=3.6" [package.dependencies] +blis = ">=0.4.0,<0.8.0" +catalogue = ">=2.0.6,<2.1.0" +cymem = ">=2.0.2,<2.1.0" +jinja2 = "*" +langcodes = ">=3.2.0,<4.0.0" +murmurhash = ">=0.28.0,<1.1.0" +numpy = ">=1.15.0" packaging = ">=20.0" -tomli = ">=1.0.0" +pathy = ">=0.3.5" +preshed = ">=3.0.2,<3.1.0" +pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<1.9.0" +requests = ">=2.13.0,<3.0.0" +smart-open = ">=5.2.1,<7.0.0" +spacy-legacy = ">=3.0.9,<3.1.0" +spacy-loggers = ">=1.0.0,<2.0.0" +srsly = ">=2.4.3,<3.0.0" +thinc = ">=8.0.14,<8.1.0" +tqdm = ">=4.38.0,<5.0.0" +typer = ">=0.3.0,<0.5.0" +wasabi = ">=0.9.1,<1.1.0" [package.extras] -test = ["pytest (>=6.2)", "virtualenv (>20)"] -toml = ["setuptools (>=42)"] +apple = ["thinc-apple-ops (>=0.0.4,<1.0.0)"] +cuda = ["cupy (>=5.0.0b4,<11.0.0)"] +cuda100 = ["cupy-cuda100 (>=5.0.0b4,<11.0.0)"] +cuda101 = ["cupy-cuda101 (>=5.0.0b4,<11.0.0)"] +cuda102 = ["cupy-cuda102 (>=5.0.0b4,<11.0.0)"] +cuda110 = ["cupy-cuda110 (>=5.0.0b4,<11.0.0)"] +cuda111 = ["cupy-cuda111 (>=5.0.0b4,<11.0.0)"] +cuda112 = ["cupy-cuda112 (>=5.0.0b4,<11.0.0)"] +cuda113 = ["cupy-cuda113 (>=5.0.0b4,<11.0.0)"] +cuda114 = ["cupy-cuda114 (>=5.0.0b4,<11.0.0)"] +cuda115 = ["cupy-cuda115 (>=5.0.0b4,<11.0.0)"] +cuda80 = ["cupy-cuda80 (>=5.0.0b4,<11.0.0)"] +cuda90 = ["cupy-cuda90 (>=5.0.0b4,<11.0.0)"] +cuda91 = ["cupy-cuda91 (>=5.0.0b4,<11.0.0)"] +cuda92 = ["cupy-cuda92 (>=5.0.0b4,<11.0.0)"] +ja = ["sudachipy (>=0.5.2,!=0.6.1)", "sudachidict-core (>=20211220)"] +ko = ["natto-py (==0.9.0)"] +lookups = ["spacy-lookups-data (>=1.0.3,<1.1.0)"] +ray = ["spacy-ray (>=0.1.0,<1.0.0)"] +th = ["pythainlp (>=2.0)"] +transformers = ["spacy-transformers (>=1.1.2,<1.2.0)"] + +[[package]] +name = "spacy-legacy" +version = "3.0.11" +description = "Legacy registered functions for spaCy backwards compatibility" +category = "main" +optional = false +python-versions = ">=3.6" [[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" +name = "spacy-loggers" +version = "1.0.4" +description = "Logging utilities for SpaCy" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +python-versions = ">=3.6" [[package]] -name = "soupsieve" -version = "2.3.1" -description = "A modern CSS selector implementation for Beautiful Soup." +name = "srsly" +version = "2.4.5" +description = "Modern high-performance serialization utilities for Python" category = "main" optional = false python-versions = ">=3.6" +[package.dependencies] +catalogue = ">=2.0.3,<2.1.0" + [[package]] name = "stack-data" -version = "0.2.0" +version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" category = "main" optional = false python-versions = "*" [package.dependencies] -asttokens = "*" -executing = "*" +asttokens = ">=2.1.0" +executing = ">=1.2.0" pure-eval = "*" [package.extras] @@ -1623,7 +2022,7 @@ tests = ["pytest", "typeguard", "pygments", "littleutils", "cython"] [[package]] name = "tenacity" -version = "8.0.1" +version = "8.1.0" description = "Retry code until it succeeds" category = "main" optional = false @@ -1634,11 +2033,11 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"] [[package]] name = "tensorboard" -version = "2.8.0" +version = "2.11.2" description = "TensorBoard lets you watch Tensors Flow" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] absl-py = ">=0.4" @@ -1647,11 +2046,11 @@ google-auth-oauthlib = ">=0.4.1,<0.5" grpcio = ">=1.24.3" markdown = ">=2.6.8" numpy = ">=1.12.0" -protobuf = ">=3.6.0" +protobuf = ">=3.9.2,<4" requests = ">=2.21.0,<3" tensorboard-data-server = ">=0.6.0,<0.7.0" tensorboard-plugin-wit = ">=1.6.0" -werkzeug = ">=0.11.15" +werkzeug = ">=1.0.1" [[package]] name = "tensorboard-data-server" @@ -1671,60 +2070,71 @@ python-versions = "*" [[package]] name = "tensorflow" -version = "2.8.0" +version = "2.11.0" description = "TensorFlow is an open source machine learning framework for everyone." category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" [package.dependencies] -absl-py = ">=0.4.0" +absl-py = ">=1.0.0" astunparse = ">=1.6.0" -flatbuffers = ">=1.12" -gast = ">=0.2.1" +flatbuffers = ">=2.0" +gast = ">=0.2.1,<=0.4.0" google-pasta = ">=0.1.1" grpcio = ">=1.24.3,<2.0" h5py = ">=2.9.0" -keras = ">=2.8.0rc0,<2.9" -keras-preprocessing = ">=1.1.1" -libclang = ">=9.0.1" +keras = ">=2.11.0,<2.12" +libclang = ">=13.0.0" numpy = ">=1.20" opt-einsum = ">=2.3.2" -protobuf = ">=3.9.2" +packaging = "*" +protobuf = ">=3.9.2,<3.20" six = ">=1.12.0" -tensorboard = ">=2.8,<2.9" -tensorflow-io-gcs-filesystem = ">=0.23.1" +tensorboard = ">=2.11,<2.12" +tensorflow-estimator = ">=2.11.0,<2.12" +tensorflow-io-gcs-filesystem = {version = ">=0.23.1", markers = "platform_machine != \"arm64\" or platform_system != \"Darwin\""} termcolor = ">=1.1.0" -tf-estimator-nightly = "2.8.0.dev2021122109" typing-extensions = ">=3.6.6" wrapt = ">=1.11.0" +[[package]] +name = "tensorflow-estimator" +version = "2.11.0" +description = "TensorFlow Estimator." +category = "main" +optional = false +python-versions = ">=3.7" + [[package]] name = "tensorflow-io-gcs-filesystem" -version = "0.24.0" +version = "0.29.0" description = "TensorFlow IO" category = "main" optional = false -python-versions = ">=3.7, <3.11" +python-versions = ">=3.7, <3.12" [package.extras] -tensorflow = ["tensorflow (>=2.8.0,<2.9.0)"] -tensorflow-aarch64 = ["tensorflow-aarch64 (>=2.8.0,<2.9.0)"] -tensorflow-cpu = ["tensorflow-cpu (>=2.8.0,<2.9.0)"] -tensorflow-gpu = ["tensorflow-gpu (>=2.8.0,<2.9.0)"] -tensorflow-rocm = ["tensorflow-rocm (>=2.8.0,<2.9.0)"] +tensorflow = ["tensorflow (>=2.11.0,<2.12.0)"] +tensorflow-aarch64 = ["tensorflow-aarch64 (>=2.11.0,<2.12.0)"] +tensorflow-cpu = ["tensorflow-cpu (>=2.11.0,<2.12.0)"] +tensorflow-gpu = ["tensorflow-gpu (>=2.11.0,<2.12.0)"] +tensorflow-rocm = ["tensorflow-rocm (>=2.11.0,<2.12.0)"] [[package]] name = "termcolor" -version = "1.1.0" -description = "ANSII Color formatting for output in terminal." +version = "2.2.0" +description = "ANSI color formatting for output in terminal" category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" + +[package.extras] +tests = ["pytest", "pytest-cov"] [[package]] name = "terminado" -version = "0.13.3" +version = "0.17.1" description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." category = "main" optional = false @@ -1733,29 +2143,50 @@ python-versions = ">=3.7" [package.dependencies] ptyprocess = {version = "*", markers = "os_name != \"nt\""} pywinpty = {version = ">=1.1.0", markers = "os_name == \"nt\""} -tornado = ">=4" +tornado = ">=6.1.0" [package.extras] -test = ["pytest"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["pre-commit", "pytest-timeout", "pytest (>=7.0)"] [[package]] -name = "testpath" -version = "0.6.0" -description = "Test utilities for code working with files and commands" +name = "thinc" +version = "8.0.17" +description = "A refreshing functional take on deep learning, compatible with your favorite libraries" category = "main" optional = false -python-versions = ">= 3.5" +python-versions = ">=3.6" -[package.extras] -test = ["pytest"] +[package.dependencies] +blis = ">=0.4.0,<0.8.0" +catalogue = ">=2.0.4,<2.1.0" +cymem = ">=2.0.2,<2.1.0" +murmurhash = ">=1.0.2,<1.1.0" +numpy = ">=1.15.0" +preshed = ">=3.0.2,<3.1.0" +pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<1.9.0" +srsly = ">=2.4.0,<3.0.0" +wasabi = ">=0.8.1,<1.1.0" -[[package]] -name = "tf-estimator-nightly" -version = "2.8.0.dev2021122109" -description = "TensorFlow Estimator." -category = "main" -optional = false -python-versions = "*" +[package.extras] +cuda = ["cupy (>=5.0.0b4)"] +cuda100 = ["cupy-cuda100 (>=5.0.0b4)"] +cuda101 = ["cupy-cuda101 (>=5.0.0b4)"] +cuda102 = ["cupy-cuda102 (>=5.0.0b4)"] +cuda110 = ["cupy-cuda110 (>=5.0.0b4)"] +cuda111 = ["cupy-cuda111 (>=5.0.0b4)"] +cuda112 = ["cupy-cuda112 (>=5.0.0b4)"] +cuda113 = ["cupy-cuda113 (>=5.0.0b4)"] +cuda114 = ["cupy-cuda114 (>=5.0.0b4)"] +cuda115 = ["cupy-cuda115 (>=5.0.0b4)"] +cuda80 = ["cupy-cuda80 (>=5.0.0b4)"] +cuda90 = ["cupy-cuda90 (>=5.0.0b4)"] +cuda91 = ["cupy-cuda91 (>=5.0.0b4)"] +cuda92 = ["cupy-cuda92 (>=5.0.0b4)"] +datasets = ["ml-datasets (>=0.2.0,<0.3.0)"] +mxnet = ["mxnet (>=1.5.1,<1.6.0)"] +tensorflow = ["tensorflow (>=2.0.0,<2.6.0)"] +torch = ["torch (>=1.6.0)"] [[package]] name = "threadpoolctl" @@ -1765,17 +2196,33 @@ category = "main" optional = false python-versions = ">=3.6" +[[package]] +name = "tinycss2" +version = "1.2.1" +description = "A tiny CSS parser" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.dependencies] +webencodings = ">=0.4" + +[package.extras] +doc = ["sphinx", "sphinx-rtd-theme"] +test = ["pytest", "isort", "flake8"] + [[package]] name = "tokenizers" -version = "0.11.6" +version = "0.13.2" description = "Fast and Customizable Tokenizers" category = "main" optional = false python-versions = "*" [package.extras] +dev = ["pytest", "requests", "numpy", "datasets", "black (==22.3)"] docs = ["sphinx", "sphinx-rtd-theme", "setuptools-rust"] -testing = ["pytest", "requests", "numpy", "datasets"] +testing = ["pytest", "requests", "numpy", "datasets", "black (==22.3)"] [[package]] name = "tomli" @@ -1796,6 +2243,17 @@ python-versions = ">=3.7.0" [package.dependencies] typing-extensions = "*" +[[package]] +name = "torchaudio" +version = "0.11.0" +description = "An audio package for PyTorch" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +torch = "1.11.0" + [[package]] name = "torchvision" version = "0.12.0" @@ -1816,15 +2274,15 @@ scipy = ["scipy"] [[package]] name = "tornado" -version = "6.1" +version = "6.2" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." category = "main" optional = false -python-versions = ">= 3.5" +python-versions = ">= 3.7" [[package]] name = "tqdm" -version = "4.63.1" +version = "4.64.1" description = "Fast, Extensible Progress Meter" category = "main" optional = false @@ -1836,89 +2294,111 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [package.extras] dev = ["py-make (>=0.1.0)", "twine", "wheel"] notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] telegram = ["requests"] [[package]] name = "traitlets" -version = "5.1.1" +version = "5.8.1" description = "Traitlets Python configuration system" category = "main" optional = false python-versions = ">=3.7" [package.extras] -test = ["pytest"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] [[package]] name = "transformers" -version = "4.17.0" -description = "State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch" +version = "4.25.1" +description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" category = "main" optional = false -python-versions = ">=3.6.0" +python-versions = ">=3.7.0" [package.dependencies] filelock = "*" -huggingface-hub = ">=0.1.0,<1.0" +huggingface-hub = ">=0.10.0,<1.0" numpy = ">=1.17" packaging = ">=20.0" pyyaml = ">=5.1" regex = "!=2019.12.17" requests = "*" -sacremoses = "*" -tokenizers = ">=0.11.1,<0.11.3 || >0.11.3" +tokenizers = ">=0.11.1,<0.11.3 || >0.11.3,<0.14" tqdm = ">=4.27" [package.extras] -all = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "torch (>=1.0)", "jax (>=0.2.8)", "jaxlib (>=0.1.65)", "flax (>=0.3.5)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf", "tokenizers (>=0.11.1,!=0.11.3)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)"] -audio = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"] +accelerate = ["accelerate (>=0.10.0)"] +all = ["tensorflow (>=2.4,<2.11)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "keras-nlp (>=0.3.1)", "torch (>=1.7,!=1.12.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.2)", "tokenizers (>=0.11.1,!=0.11.3,<0.14)", "torchaudio", "librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)"] +audio = ["librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm"] codecarbon = ["codecarbon (==1.2.0)"] -deepspeed = ["deepspeed (>=0.5.9)"] -dev = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "torch (>=1.0)", "jax (>=0.2.8)", "jaxlib (>=0.1.65)", "flax (>=0.3.5)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf", "tokenizers (>=0.11.1,!=0.11.3)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "pytest-timeout", "black (>=22.0,<23.0)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score", "nltk", "GitPython (<3.1.19)", "faiss-cpu", "cookiecutter (==1.7.2)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "scikit-learn"] -dev-tensorflow = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "pytest-timeout", "black (>=22.0,<23.0)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score", "nltk", "GitPython (<3.1.19)", "faiss-cpu", "cookiecutter (==1.7.2)", "tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf", "tokenizers (>=0.11.1,!=0.11.3)", "pillow", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "scikit-learn", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"] -dev-torch = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "pytest-timeout", "black (>=22.0,<23.0)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score", "nltk", "GitPython (<3.1.19)", "faiss-cpu", "cookiecutter (==1.7.2)", "torch (>=1.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf", "tokenizers (>=0.11.1,!=0.11.3)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "scikit-learn", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"] -docs = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "torch (>=1.0)", "jax (>=0.2.8)", "jaxlib (>=0.1.65)", "flax (>=0.3.5)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf", "tokenizers (>=0.11.1,!=0.11.3)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)"] +deepspeed = ["deepspeed (>=0.6.5)", "accelerate (>=0.10.0)"] +deepspeed-testing = ["deepspeed (>=0.6.5)", "accelerate (>=0.10.0)", "pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.2)", "sacremoses", "rjieba", "safetensors (>=0.2.1)", "beautifulsoup4", "faiss-cpu", "cookiecutter (==1.7.3)", "optuna"] +dev = ["tensorflow (>=2.4,<2.11)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "keras-nlp (>=0.3.1)", "torch (>=1.7,!=1.12.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.2)", "tokenizers (>=0.11.1,!=0.11.3,<0.14)", "torchaudio", "librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)", "pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "sacremoses", "rjieba", "safetensors (>=0.2.1)", "beautifulsoup4", "faiss-cpu", "cookiecutter (==1.7.3)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "sudachipy (>=0.6.6)", "sudachidict-core (>=20220729)", "pyknp (>=0.6.1)", "hf-doc-builder", "scikit-learn"] +dev-tensorflow = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.2)", "sacremoses", "rjieba", "safetensors (>=0.2.1)", "beautifulsoup4", "faiss-cpu", "cookiecutter (==1.7.3)", "tensorflow (>=2.4,<2.11)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "keras-nlp (>=0.3.1)", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.11.1,!=0.11.3,<0.14)", "pillow", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "hf-doc-builder", "scikit-learn", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm"] +dev-torch = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.2)", "sacremoses", "rjieba", "safetensors (>=0.2.1)", "beautifulsoup4", "faiss-cpu", "cookiecutter (==1.7.3)", "torch (>=1.7,!=1.12.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.11.1,!=0.11.3,<0.14)", "torchaudio", "librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "sudachipy (>=0.6.6)", "sudachidict-core (>=20220729)", "pyknp (>=0.6.1)", "hf-doc-builder", "scikit-learn", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"] +docs = ["tensorflow (>=2.4,<2.11)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "keras-nlp (>=0.3.1)", "torch (>=1.7,!=1.12.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.2)", "tokenizers (>=0.11.1,!=0.11.3,<0.14)", "torchaudio", "librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)", "hf-doc-builder"] +docs_specific = ["hf-doc-builder"] fairscale = ["fairscale (>0.3)"] -flax = ["jax (>=0.2.8)", "jaxlib (>=0.1.65)", "flax (>=0.3.5)", "optax (>=0.0.8)"] -flax-speech = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"] +flax = ["jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)"] +flax-speech = ["librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm"] ftfy = ["ftfy"] integrations = ["optuna", "ray", "sigopt"] -ja = ["fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)"] -modelcreation = ["cookiecutter (==1.7.2)"] +ja = ["fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "sudachipy (>=0.6.6)", "sudachidict-core (>=20220729)", "pyknp (>=0.6.1)"] +modelcreation = ["cookiecutter (==1.7.3)"] +natten = ["natten (>=0.14.4)"] onnx = ["onnxconverter-common", "tf2onnx", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"] onnxruntime = ["onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"] optuna = ["optuna"] -quality = ["black (>=22.0,<23.0)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "GitPython (<3.1.19)"] +quality = ["black (==22.3)", "datasets (!=2.5.0)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)"] ray = ["ray"] -retrieval = ["faiss-cpu", "datasets"] +retrieval = ["faiss-cpu", "datasets (!=2.5.0)"] sagemaker = ["sagemaker (>=2.31.0)"] -sentencepiece = ["sentencepiece (>=0.1.91,!=0.1.92)", "protobuf"] +sentencepiece = ["sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.2)"] serving = ["pydantic", "uvicorn", "fastapi", "starlette"] sigopt = ["sigopt"] sklearn = ["scikit-learn"] -speech = ["torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"] -testing = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "pytest-timeout", "black (>=22.0,<23.0)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score", "nltk", "GitPython (<3.1.19)", "faiss-cpu", "cookiecutter (==1.7.2)"] -tf = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx"] -tf-cpu = ["tensorflow-cpu (>=2.3)", "onnxconverter-common", "tf2onnx"] -tf-speech = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"] +speech = ["torchaudio", "librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm"] +testing = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.2)", "sacremoses", "rjieba", "safetensors (>=0.2.1)", "beautifulsoup4", "faiss-cpu", "cookiecutter (==1.7.3)"] +tf = ["tensorflow (>=2.4,<2.11)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "keras-nlp (>=0.3.1)"] +tf-cpu = ["tensorflow-cpu (>=2.4,<2.11)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "keras-nlp (>=0.3.1)"] +tf-speech = ["librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm"] timm = ["timm"] -tokenizers = ["tokenizers (>=0.11.1,!=0.11.3)"] -torch = ["torch (>=1.0)"] -torch-speech = ["torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"] -torchhub = ["filelock", "huggingface-hub (>=0.1.0,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf", "regex (!=2019.12.17)", "requests", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)", "torch (>=1.0)", "tokenizers (>=0.11.1,!=0.11.3)", "tqdm (>=4.27)"] +tokenizers = ["tokenizers (>=0.11.1,!=0.11.3,<0.14)"] +torch = ["torch (>=1.7,!=1.12.0)"] +torch-speech = ["torchaudio", "librosa", "pyctcdecode (>=0.4.0)", "phonemizer", "kenlm"] +torchhub = ["filelock", "huggingface-hub (>=0.10.0,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf (<=3.20.2)", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "torch (>=1.7,!=1.12.0)", "tokenizers (>=0.11.1,!=0.11.3,<0.14)", "tqdm (>=4.27)"] vision = ["pillow"] [[package]] -name = "typing-extensions" -version = "4.1.1" -description = "Backported and Experimental Type Hints for Python 3.6+" +name = "typer" +version = "0.4.2" +description = "Typer, build great CLIs. Easy to code. Based on Python type hints." category = "main" optional = false python-versions = ">=3.6" +[package.dependencies] +click = ">=7.1.1,<9.0.0" + +[package.extras] +all = ["colorama (>=0.4.3,<0.5.0)", "shellingham (>=1.3.0,<2.0.0)"] +dev = ["autoflake (>=1.3.1,<2.0.0)", "flake8 (>=3.8.3,<4.0.0)", "pre-commit (>=2.17.0,<3.0.0)"] +doc = ["mkdocs (>=1.1.2,<2.0.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "mdx-include (>=1.4.1,<2.0.0)"] +test = ["shellingham (>=1.3.0,<2.0.0)", "pytest (>=4.4.0,<5.4.0)", "pytest-cov (>=2.10.0,<3.0.0)", "coverage (>=5.2,<6.0)", "pytest-xdist (>=1.32.0,<2.0.0)", "pytest-sugar (>=0.9.4,<0.10.0)", "mypy (==0.910)", "black (>=22.3.0,<23.0.0)", "isort (>=5.0.6,<6.0.0)"] + +[[package]] +name = "typing-extensions" +version = "4.4.0" +description = "Backported and Experimental Type Hints for Python 3.7+" +category = "main" +optional = false +python-versions = ">=3.7" + [[package]] name = "umap-learn" -version = "0.5.2" +version = "0.5.3" description = "Uniform Manifold Approximation and Projection" category = "main" optional = false @@ -1936,27 +2416,54 @@ tqdm = "*" parametric_umap = ["tensorflow (>=2.1)", "tensorflow-probability (>=0.10)"] plot = ["pandas", "matplotlib", "datashader", "bokeh", "holoviews", "colorcet", "seaborn", "scikit-image"] +[[package]] +name = "uri-template" +version = "1.2.0" +description = "RFC 6570 URI Template Processor" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +dev = ["mypy", "flake8 (<4.0.0)", "flake8-annotations", "flake8-bugbear", "flake8-commas", "flake8-comprehensions", "flake8-continuation", "flake8-datetimez", "flake8-docstrings", "flake8-import-order", "flake8-literal", "flake8-noqa", "flake8-requirements", "flake8-type-annotations", "flake8-use-fstring", "pep8-naming"] + [[package]] name = "urllib3" -version = "1.26.9" +version = "1.26.14" description = "HTTP library with thread-safe connection pooling, file post, and more." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" [package.extras] brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"] -secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] +secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "urllib3-secure-extra", "ipaddress"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] +[[package]] +name = "wasabi" +version = "0.10.1" +description = "A lightweight console printing and formatting toolkit" +category = "main" +optional = false +python-versions = "*" + [[package]] name = "wcwidth" -version = "0.2.5" +version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" category = "main" optional = false python-versions = "*" +[[package]] +name = "webcolors" +version = "1.12" +description = "A library for working with color names and color values formats defined by HTML and CSS." +category = "main" +optional = false +python-versions = ">=3.7" + [[package]] name = "webencodings" version = "0.5.1" @@ -1965,31 +2472,44 @@ category = "main" optional = false python-versions = "*" +[[package]] +name = "websocket-client" +version = "1.4.2" +description = "WebSocket client for Python with low level API options" +category = "main" +optional = false +python-versions = ">=3.7" + +[package.extras] +docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] + [[package]] name = "werkzeug" -version = "2.0.3" +version = "2.2.2" description = "The comprehensive WSGI web application library." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" + +[package.dependencies] +MarkupSafe = ">=2.1.1" [package.extras] watchdog = ["watchdog"] [[package]] name = "widgetsnbextension" -version = "3.6.0" -description = "IPython HTML widgets for Jupyter" +version = "4.0.5" +description = "Jupyter interactive widgets for Jupyter Notebook" category = "main" optional = false -python-versions = "*" - -[package.dependencies] -notebook = ">=4.4.1" +python-versions = ">=3.7" [[package]] name = "wrapt" -version = "1.14.0" +version = "1.14.1" description = "Module for decorators, wrappers and monkey patching." category = "main" optional = false @@ -1997,29 +2517,27 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" [[package]] name = "zipp" -version = "3.7.0" +version = "3.11.0" description = "Backport of pathlib-compatible object wrapper for zip files" category = "main" optional = false python-versions = ">=3.7" [package.extras] -docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] -testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy"] +docs = ["sphinx (>=3.5)", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "furo", "jaraco.tidelift (>=1.4)"] +testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "flake8 (<5)", "pytest-cov", "pytest-enabler (>=1.3)", "jaraco.itertools", "func-timeout", "jaraco.functools", "more-itertools", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "pytest-flake8"] [metadata] lock-version = "1.1" -python-versions = ">=3.8,<3.10" -content-hash = "733107a30562081c1ae397d207e9409acc6a3a9555d293b23ee11bf58651004a" +python-versions = ">=3.8,<3.11" +content-hash = "132e54aa4a2bd2870001fa9a9e6a30e152cbc2ab8b3b8474eb070244a831165d" [metadata.files] -absl-py = [ - {file = "absl-py-1.0.0.tar.gz", hash = "sha256:ac511215c01ee9ae47b19716599e8ccfa746f2e18de72bdf641b79b22afa27ea"}, - {file = "absl_py-1.0.0-py3-none-any.whl", hash = "sha256:84e6dcdc69c947d0c13e5457d056bd43cade4c2393dce00d684aedea77ddc2a3"}, -] +absl-py = [] +anyio = [] appnope = [ - {file = "appnope-0.1.2-py2.py3-none-any.whl", hash = "sha256:93aa393e9d6c54c5cd570ccadd8edad61ea0c4b9ea7a01409020c9aa019eb442"}, - {file = "appnope-0.1.2.tar.gz", hash = "sha256:dd83cd4b5b460958838f6eb3000c660b1f9caf2a5b1de4264e941512f603258a"}, + {file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"}, + {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, ] argon2-cffi = [ {file = "argon2-cffi-21.3.0.tar.gz", hash = "sha256:d384164d944190a7dd7ef22c6aa3ff197da12962bd04b17f64d4e93d934dba5b"}, @@ -2048,168 +2566,42 @@ argon2-cffi-bindings = [ {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ed2937d286e2ad0cc79a7087d3c272832865f779430e0cc2b4f3718d3159b0cb"}, {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5e00316dabdaea0b2dd82d141cc66889ced0cdcbfa599e8b471cf22c620c329a"}, ] -asttokens = [ - {file = "asttokens-2.0.5-py2.py3-none-any.whl", hash = "sha256:0844691e88552595a6f4a4281a9f7f79b8dd45ca4ccea82e5e05b4bbdb76705c"}, - {file = "asttokens-2.0.5.tar.gz", hash = "sha256:9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5"}, -] +arrow = [] +asttokens = [] astunparse = [ {file = "astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8"}, {file = "astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872"}, ] -attrs = [ - {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"}, - {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, -] +attrs = [] backcall = [ {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, ] beautifulsoup4 = [ - {file = "beautifulsoup4-4.10.0-py3-none-any.whl", hash = "sha256:9a315ce70049920ea4572a4055bc4bd700c940521d36fc858205ad4fcde149bf"}, - {file = "beautifulsoup4-4.10.0.tar.gz", hash = "sha256:c23ad23c521d818955a4151a67d81580319d4bf548d3d49f4223ae041ff98891"}, -] -bertopic = [ - {file = "bertopic-0.9.4-py2.py3-none-any.whl", hash = "sha256:9ac7e44867ff9c3018e232ad11331b52e91a8c87a0fbf3cf801494e81fa62582"}, - {file = "bertopic-0.9.4.tar.gz", hash = "sha256:7ffed1e7bb81e6b0f1039141809c9d157fa415d65c298e9887e70b890f274bce"}, -] -bleach = [ - {file = "bleach-4.1.0-py2.py3-none-any.whl", hash = "sha256:4d2651ab93271d1129ac9cbc679f524565cc8a1b791909c4a51eac4446a15994"}, - {file = "bleach-4.1.0.tar.gz", hash = "sha256:0900d8b37eba61a802ee40ac0061f8c2b5dee29c1927dd1d233e075ebf5a71da"}, -] -cachetools = [ - {file = "cachetools-5.0.0-py3-none-any.whl", hash = "sha256:8fecd4203a38af17928be7b90689d8083603073622229ca7077b72d8e5a976e4"}, - {file = "cachetools-5.0.0.tar.gz", hash = "sha256:486471dfa8799eb7ec503a8059e263db000cdda20075ce5e48903087f79d5fd6"}, -] -certifi = [ - {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, - {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, -] -cffi = [ - {file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"}, - {file = "cffi-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0"}, - {file = "cffi-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14"}, - {file = "cffi-1.15.0-cp27-cp27m-win32.whl", hash = "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474"}, - {file = "cffi-1.15.0-cp27-cp27m-win_amd64.whl", hash = "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6"}, - {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27"}, - {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023"}, - {file = "cffi-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2"}, - {file = "cffi-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e"}, - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7"}, - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3"}, - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c"}, - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962"}, - {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382"}, - {file = "cffi-1.15.0-cp310-cp310-win32.whl", hash = "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55"}, - {file = "cffi-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0"}, - {file = "cffi-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e"}, - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39"}, - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc"}, - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032"}, - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8"}, - {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605"}, - {file = "cffi-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e"}, - {file = "cffi-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc"}, - {file = "cffi-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636"}, - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4"}, - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997"}, - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b"}, - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2"}, - {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7"}, - {file = "cffi-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66"}, - {file = "cffi-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029"}, - {file = "cffi-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880"}, - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20"}, - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024"}, - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e"}, - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728"}, - {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6"}, - {file = "cffi-1.15.0-cp38-cp38-win32.whl", hash = "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c"}, - {file = "cffi-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443"}, - {file = "cffi-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a"}, - {file = "cffi-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37"}, - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a"}, - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e"}, - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796"}, - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df"}, - {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8"}, - {file = "cffi-1.15.0-cp39-cp39-win32.whl", hash = "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a"}, - {file = "cffi-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139"}, - {file = "cffi-1.15.0.tar.gz", hash = "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954"}, -] -charset-normalizer = [ - {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, - {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, -] + {file = "beautifulsoup4-4.11.1-py3-none-any.whl", hash = "sha256:58d5c3d29f5a36ffeb94f02f0d786cd53014cf9b3b3951d42e0080d8a9498d30"}, + {file = "beautifulsoup4-4.11.1.tar.gz", hash = "sha256:ad9aa55b65ef2808eb405f46cf74df7fcb7044d5cbc26487f96eb2ef2e436693"}, +] +bleach = [] +blis = [] +cachetools = [] +catalogue = [] +certifi = [] +cffi = [] +chardet = [] +charset-normalizer = [] click = [ - {file = "click-8.0.4-py3-none-any.whl", hash = "sha256:6a7a62563bbfabfda3a38f3023a1db4a35978c0abd76f6c9605ecd6554d6d9b1"}, - {file = "click-8.0.4.tar.gz", hash = "sha256:8458d7b1287c5fb128c90e23381cf99dcde74beaf6c7ff6384ce84d6fe090adb"}, -] -colorama = [ - {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, - {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, ] +colorama = [] +comm = [] +contourpy = [] cycler = [ {file = "cycler-0.11.0-py3-none-any.whl", hash = "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3"}, {file = "cycler-0.11.0.tar.gz", hash = "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f"}, ] -cython = [ - {file = "Cython-0.29.28-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:75686c586e37b1fed0fe4a2c053474f96fc07da0063bbfc98023454540515d31"}, - {file = "Cython-0.29.28-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:16f2e74fcac223c53e298ecead62c353d3cffa107bea5d8232e4b2ba40781634"}, - {file = "Cython-0.29.28-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b6c77cc24861a33714e74212abfab4e54bf42e1ad602623f193b8e369389af2f"}, - {file = "Cython-0.29.28-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:59f4e86b415620a097cf0ec602adf5a7ee3cc33e8220567ded96566f753483f8"}, - {file = "Cython-0.29.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:31465dce7fd3f058d02afb98b13af962848cc607052388814428dc801cc26f57"}, - {file = "Cython-0.29.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:5658fa477e80d96c49d5ff011938dd4b62da9aa428f771b91f1a7c49af45aad8"}, - {file = "Cython-0.29.28-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl", hash = "sha256:33b69ac9bbf2b93d8cae336cfe48889397a857e6ceeb5cef0b2f0b31b6c54f2b"}, - {file = "Cython-0.29.28-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9d39ee7ddef6856413f950b8959e852d83376d9db1c509505e3f4873df32aa70"}, - {file = "Cython-0.29.28-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c9848a423a14e8f51bd4bbf8e2ff37031764ce66bdc7c6bc06c70d4084eb23c7"}, - {file = "Cython-0.29.28-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:09448aadb818387160ca4d1e1b82dbb7001526b6d0bed7529c4e8ac12e3b6f4c"}, - {file = "Cython-0.29.28-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:341917bdb2c95bcf8322aacfe50bbe6b4794880b16fa8b2300330520e123a5e5"}, - {file = "Cython-0.29.28-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:fdcef7abb09fd827691e3abe6fd42c6c34beaccfa0bc2df6074f0a49949df6a8"}, - {file = "Cython-0.29.28-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl", hash = "sha256:43eca77169f855dd04be11921a585c8854a174f30bc925257e92bc7b9197fbd2"}, - {file = "Cython-0.29.28-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7962a78ceb80cdec21345fb5088e675060fa65982030d446069f2d675d30e3cd"}, - {file = "Cython-0.29.28-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:ed32c206e1d68056a34b21d2ec0cf0f23d338d6531476a68c73e21e20bd7bb63"}, - {file = "Cython-0.29.28-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:a0ed39c63ba52edd03a39ea9d6da6f5326aaee5d333c317feba543270a1b3af5"}, - {file = "Cython-0.29.28-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:ded4fd3da4dee2f4414c35214244e29befa7f6fede3e9be317e765169df2cbc7"}, - {file = "Cython-0.29.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:e24bd94946ffa37f30fcb865f2340fb6d429a3c7bf87b47b22f7d22e0e68a15c"}, - {file = "Cython-0.29.28-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl", hash = "sha256:076aa8da83383e2bed0ca5f92c13a7e76e684bc41fe8e438bbed735f5b1c2731"}, - {file = "Cython-0.29.28-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:004387d8b94c64681ee05660d6a234e125396097726cf2f419c0fa2ac38034d6"}, - {file = "Cython-0.29.28-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:d6036f6a5a0c7fb1af88889872268b15bf20dd9cefe33a6602d79ba18b8db20f"}, - {file = "Cython-0.29.28-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1612d7439590ba3b8de5f907bf0e54bd8e024eafb8c59261531a7988030c182d"}, - {file = "Cython-0.29.28-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:d7d7beb600d5dd551e9322e1393b74286f4a3d4aa387f7bfbaccc1495a98603b"}, - {file = "Cython-0.29.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:5e82f6b3dc2133b2e0e2c5c63d352d40a695e40cc7ed99f4cbe83334bcf9ab39"}, - {file = "Cython-0.29.28-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl", hash = "sha256:49076747b731ed78acf203666c3b3c5d664754ea01ca4527f62f6d8675703688"}, - {file = "Cython-0.29.28-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9f2b7c86a73db0d8dbbd885fe67f04c7b787df37a3848b9867270d3484101fbd"}, - {file = "Cython-0.29.28-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a3b27812ac9e9737026bfbb1dd47434f3e84013f430bafe1c6cbaf1cd51b5518"}, - {file = "Cython-0.29.28-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0378a14d2580dcea234d7a2dc8d75f60c091105885096e6dd5b032be97542c16"}, - {file = "Cython-0.29.28-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:d7c98727397c2547a56aa0c3c98140f1873c69a0642edc9446c6c870d0d8a5b5"}, - {file = "Cython-0.29.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:6626f9691ce2093ccbcc9932f449efe3b6e1c893b556910881d177c61612e8ff"}, - {file = "Cython-0.29.28-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl", hash = "sha256:e9cc6af0c9c477c5e175e807dce439509934efefc24ea2da9fced7fbc8170591"}, - {file = "Cython-0.29.28-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05edfa51c0ff31a8df3cb291b90ca93ab499686d023b9b81c216cd3509f73def"}, - {file = "Cython-0.29.28-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:4b3089255b6b1cc69e4b854626a41193e6acae5332263d24707976b3cb8ca644"}, - {file = "Cython-0.29.28-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:03b749e4f0bbf631cee472add2806d338a7d496f8383f6fb28cc5fdc34b7fdb8"}, - {file = "Cython-0.29.28-py2.py3-none-any.whl", hash = "sha256:26d8d0ededca42be50e0ac377c08408e18802b1391caa3aea045a72c1bff47ac"}, - {file = "Cython-0.29.28.tar.gz", hash = "sha256:d6fac2342802c30e51426828fe084ff4deb1b3387367cf98976bb2e64b6f8e45"}, -] -debugpy = [ - {file = "debugpy-1.6.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:eb1946efac0c0c3d411cea0b5ac772fbde744109fd9520fb0c5a51979faf05ad"}, - {file = "debugpy-1.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e3513399177dd37af4c1332df52da5da1d0c387e5927dc4c0709e26ee7302e8f"}, - {file = "debugpy-1.6.0-cp310-cp310-win32.whl", hash = "sha256:5c492235d6b68f879df3bdbdb01f25c15be15682665517c2c7d0420e5658d71f"}, - {file = "debugpy-1.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:40de9ba137d355538432209d05e0f5fe5d0498dce761c39119ad4b950b51db31"}, - {file = "debugpy-1.6.0-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:0d383b91efee57dbb923ba20801130cf60450a0eda60bce25bccd937de8e323a"}, - {file = "debugpy-1.6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1ff853e60e77e1c16f85a31adb8360bb2d98ca588d7ed645b7f0985b240bdb5e"}, - {file = "debugpy-1.6.0-cp37-cp37m-win32.whl", hash = "sha256:8e972c717d95f56b6a3a7a29a5ede1ee8f2c3802f6f0e678203b0778eb322bf1"}, - {file = "debugpy-1.6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:a8aaeb53e87225141fda7b9081bd87155c1debc13e2f5a532d341112d1983b65"}, - {file = "debugpy-1.6.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:132defb585b518955358321d0f42f6aa815aa15b432be27db654807707c70b2f"}, - {file = "debugpy-1.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8ee75844242b4537beb5899f3e60a578454d1f136b99e8d57ac424573797b94a"}, - {file = "debugpy-1.6.0-cp38-cp38-win32.whl", hash = "sha256:a65a2499761d47df3e9ea9567109be6e73d412e00ac3ffcf74839f3ddfcdf028"}, - {file = "debugpy-1.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:bd980d533d0ddfc451e03a3bb32acb2900049fec39afc3425b944ebf0889be62"}, - {file = "debugpy-1.6.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:245c7789a012f86210847ec7ee9f38c30a30d4c2223c3e111829a76c9006a5d0"}, - {file = "debugpy-1.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0e3aa2368883e83e7b689ddff3cafb595f7b711f6a065886b46a96a7fef874e7"}, - {file = "debugpy-1.6.0-cp39-cp39-win32.whl", hash = "sha256:72bcfa97f3afa0064afc77ab811f48ad4a06ac330f290b675082c24437730366"}, - {file = "debugpy-1.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:30abefefd2ff5a5481162d613cb70e60e2fa80a5eb4c994717c0f008ed25d2e1"}, - {file = "debugpy-1.6.0-py2.py3-none-any.whl", hash = "sha256:4de7777842da7e08652f2776c552070bbdd758557fdec73a15d7be0e4aab95ce"}, - {file = "debugpy-1.6.0.zip", hash = "sha256:7b79c40852991f7b6c3ea65845ed0f5f6b731c37f4f9ad9c61e2ab4bd48a9275"}, -] +cymem = [] +debugpy = [] decorator = [ {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, @@ -2222,41 +2614,28 @@ defusedxml = [ {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, ] +en-core-web-lg = [] entrypoints = [ {file = "entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f"}, {file = "entrypoints-0.4.tar.gz", hash = "sha256:b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4"}, ] -executing = [ - {file = "executing-0.8.3-py2.py3-none-any.whl", hash = "sha256:d1eef132db1b83649a3905ca6dd8897f71ac6f8cac79a7e58a1a09cf137546c9"}, - {file = "executing-0.8.3.tar.gz", hash = "sha256:c6554e21c6b060590a6d3be4b82fb78f8f0194d809de5ea7df1c093763311501"}, -] -filelock = [ - {file = "filelock-3.6.0-py3-none-any.whl", hash = "sha256:f8314284bfffbdcfa0ff3d7992b023d4c628ced6feb957351d4c48d059f56bc0"}, - {file = "filelock-3.6.0.tar.gz", hash = "sha256:9cd540a9352e432c7246a48fe4e8712b10acb1df2ad1f30e8c070b82ae1fed85"}, -] -flask = [ - {file = "Flask-2.0.3-py3-none-any.whl", hash = "sha256:59da8a3170004800a2837844bfa84d49b022550616070f7cb1a659682b2e7c9f"}, - {file = "Flask-2.0.3.tar.gz", hash = "sha256:e1120c228ca2f553b470df4a5fa927ab66258467526069981b3eb0a91902687d"}, -] -flatbuffers = [ - {file = "flatbuffers-2.0-py2.py3-none-any.whl", hash = "sha256:3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474"}, - {file = "flatbuffers-2.0.tar.gz", hash = "sha256:12158ab0272375eab8db2d663ae97370c33f152b27801fa6024e1d6105fd4dd2"}, -] -fonttools = [ - {file = "fonttools-4.31.2-py3-none-any.whl", hash = "sha256:2df636a3f402ef14593c6811dac0609563b8c374bd7850e76919eb51ea205426"}, - {file = "fonttools-4.31.2.zip", hash = "sha256:236b29aee6b113e8f7bee28779c1230a86ad2aac9a74a31b0aedf57e7dfb62a4"}, +executing = [] +fastjsonschema = [] +filelock = [] +flask = [] +flatbuffers = [] +fonttools = [] +fqdn = [] +ftfy = [ + {file = "ftfy-6.1.1-py3-none-any.whl", hash = "sha256:0ffd33fce16b54cccaec78d6ec73d95ad370e5df5a25255c8966a6147bd667ca"}, + {file = "ftfy-6.1.1.tar.gz", hash = "sha256:bfc2019f84fcd851419152320a6375604a0f1459c281b5b199b2cd0d2e727f8f"}, ] gast = [ - {file = "gast-0.5.3-py3-none-any.whl", hash = "sha256:211aac1e58c167b25d3504998f2db694454a24bb1fb1225bce99420166f21d6a"}, - {file = "gast-0.5.3.tar.gz", hash = "sha256:cfbea25820e653af9c7d1807f659ce0a0a9c64f2439421a7bba4f0983f532dea"}, -] -gdown = [ - {file = "gdown-4.4.0.tar.gz", hash = "sha256:18fc3a4da4a2273deb7aa29c7486be4df3919d904158ad6a6a3e25c8115470d7"}, -] -google-auth = [ - {file = "google-auth-2.6.2.tar.gz", hash = "sha256:60d449f8142c742db760f4c0be39121bc8d9be855555d784c252deaca1ced3f5"}, - {file = "google_auth-2.6.2-py2.py3-none-any.whl", hash = "sha256:3ba4d63cb29c1e6d5ffcc1c0623c03cf02ede6240a072f213084749574e691ab"}, + {file = "gast-0.4.0-py3-none-any.whl", hash = "sha256:b7adcdd5adbebf1adf17378da5ba3f543684dbec47b1cda1f3997e573cd542c4"}, + {file = "gast-0.4.0.tar.gz", hash = "sha256:40feb7b8b8434785585ab224d1568b857edb18297e5a3047f1ba012bc83b42c1"}, ] +gdown = [] +google-auth = [] google-auth-oauthlib = [ {file = "google-auth-oauthlib-0.4.6.tar.gz", hash = "sha256:a90a072f6993f2c327067bf65270046384cda5a8ecb20b94ea9a687f1f233a7a"}, {file = "google_auth_oauthlib-0.4.6-py2.py3-none-any.whl", hash = "sha256:3f2a6e802eebbb6fb736a370fbf3b055edcb6b52878bf2f26330b5e041316c73"}, @@ -2266,514 +2645,108 @@ google-pasta = [ {file = "google_pasta-0.2.0-py2-none-any.whl", hash = "sha256:4612951da876b1a10fe3960d7226f0c7682cf901e16ac06e473b267a5afa8954"}, {file = "google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed"}, ] -grpcio = [ - {file = "grpcio-1.45.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:0d74a159df9401747e57960f0772f4371486e3281919004efa9df8a82985abee"}, - {file = "grpcio-1.45.0-cp310-cp310-macosx_10_10_universal2.whl", hash = "sha256:4e6d15bfdfa28e5f6d524dd3b29c7dc129cfc578505b067aa97574490c5b70fe"}, - {file = "grpcio-1.45.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:44615be86e5540a18f5e4ca5a0f428d4b1efb800d255cfd9f902a11daca8fd74"}, - {file = "grpcio-1.45.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8b452f715e2cae9e75cb309f59a37f82e5b25f51f0bfc3cd1462de86265cef05"}, - {file = "grpcio-1.45.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db1c45daa35c64f17498af1ba6eb1d0a8d88a8a0b6b322f960ab461e7ef0419e"}, - {file = "grpcio-1.45.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:678a673fe811dad3ed5bd2e2352b79851236e4d718aeaeffc10f372a55954d8d"}, - {file = "grpcio-1.45.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a5c8a08aff0af770c977dcede62fbed53ae7b99adbc184d5299d148bb04652f1"}, - {file = "grpcio-1.45.0-cp310-cp310-win32.whl", hash = "sha256:1d764c8a190719301ec6f3b6ddeb48a234604e337d0fbb3184a4ddcda2aca9da"}, - {file = "grpcio-1.45.0-cp310-cp310-win_amd64.whl", hash = "sha256:797f5b750be6ff2905b9d0529a00c1f873d8035a5d01a9801910ace5f0d52a18"}, - {file = "grpcio-1.45.0-cp36-cp36m-linux_armv7l.whl", hash = "sha256:b46772b7eb58c6cb0b468b56d59618694d2c2f2cee2e5b4e83ae9729a46b8af0"}, - {file = "grpcio-1.45.0-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:2f135e5c8e9acd14f3090fd86dccb9d7c26aea7bfbd4528e8a86ff621d39e610"}, - {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:16603b9544a4af135ce4d594a7396602fbe62d1ccaa484b05cb1814c17a3e559"}, - {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ccba925045c00acc9ce2cc645b6fa9d19767dbb16c9c49921013da412b1d3415"}, - {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_17_aarch64.whl", hash = "sha256:7262b9d96db79e29049c7eb2b75b03f2b9485fd838209b5ff8e3cca73b2a706c"}, - {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a1c1098f35c33b985c312cacea39e2aa66f7ac1462579eed1d3aed2e51fff00d"}, - {file = "grpcio-1.45.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b18c86a9cfbedd0c4e083690fecc82027b3f938100ed0af8db77d52a171eb1e"}, - {file = "grpcio-1.45.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:638364d3603df9e4a1dbc2151b5fe1b491ceecda4e1672be86724e1dfa79c44d"}, - {file = "grpcio-1.45.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:8de79eac582431cb6d05ff5652e68089c40aa0e604ec1630fa52ac926bc44f1b"}, - {file = "grpcio-1.45.0-cp36-cp36m-win32.whl", hash = "sha256:6cf5f1827c182ef9b503d7d01e503c1067f4499d45af792d95ccd1d8b0bea30d"}, - {file = "grpcio-1.45.0-cp36-cp36m-win_amd64.whl", hash = "sha256:4f1a22744f93b38d393b7a83cb607029ac5e2de680cab39957ffdd116590a178"}, - {file = "grpcio-1.45.0-cp37-cp37m-linux_armv7l.whl", hash = "sha256:321f84dbc788481f7a3cd12636a133ba5f4d17e57f1c906de5a22fd709c971b5"}, - {file = "grpcio-1.45.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:a33ed7d3e52ddc839e2f020592a4371d805c2ae820fb63b12525058e1810fe46"}, - {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f9f28d8c5343602e1510d4839e38568bcd0ca6353bd98ad9941787584a371a1d"}, - {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3a40dbb8aac60cf6a86583e2ba74fc2c286f1abc7a3404b25dcd12a49b9f7d8b"}, - {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:b00ce58323dde47d2ea240d10ee745471b9966429c97d9e6567c8d56e02b0372"}, - {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd4944f35f1e5ab54804c3e37d24921ecc01908ef871cdce6bd52995ea4f985c"}, - {file = "grpcio-1.45.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc135b77f384a84bac67a37947886986be136356446338d64160a30c85f20c6d"}, - {file = "grpcio-1.45.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:35ae55460514ed404ceaa95533b9a79989691b562faf012fc8fb143d8fd16e47"}, - {file = "grpcio-1.45.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:779db3d00c8da1d3efa942387cb0fea9ac6d50124d656024f82f9faefdd016e3"}, - {file = "grpcio-1.45.0-cp37-cp37m-win32.whl", hash = "sha256:aea67bd3cbf93db552c725bc0b4db0acdc6a284d036d1cc32d638305e0f01fd9"}, - {file = "grpcio-1.45.0-cp37-cp37m-win_amd64.whl", hash = "sha256:7fe3ac700cc5ecba9dc9072c0e6cfd2f964ea9f273ce1111eaa27d13aa20ec32"}, - {file = "grpcio-1.45.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:259c126821fefcda298c020a0d83c4a4edac3cf10b1af12a62d250f8192ea1d1"}, - {file = "grpcio-1.45.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:5d05cd1b2b0975bb000ba97ca465565158dc211616c9bbbef5d1b77871974687"}, - {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6f2e044a715507fd13c70c928cd90daf8d0295c936a81fd9065a24e58ba7cc7d"}, - {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4d37c526b86c46d229f6117df5dca2510de597ab73c5956bc379ca41f8a1db84"}, - {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:6df338b8d2c328ba91a25e28786d10059dea3bc9115fa1ddad30ba5d459e714a"}, - {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:042921a824e90bf2974dbef7d89937096181298294799fb53e5576d9958884c7"}, - {file = "grpcio-1.45.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb23ed6ed84ae312df03e96c7a7cd3aa5f7e3a1ad7066fdb6cd47f1bd334196c"}, - {file = "grpcio-1.45.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:79582ec821ef10162348170a6e912d93ea257c749320a162dfc3a132ef25ac1b"}, - {file = "grpcio-1.45.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d14d372ea5a51d5ab991aa6d499a26e5a1e3b3f3af93f41826ea610f8a276c9e"}, - {file = "grpcio-1.45.0-cp38-cp38-win32.whl", hash = "sha256:b54444cf4212935a7b98cd26a30ad3a036389e4fd2ff3e461b176af876c7e20b"}, - {file = "grpcio-1.45.0-cp38-cp38-win_amd64.whl", hash = "sha256:da395720d6e9599c754f862f3f75bc0e8ff29fa55259e082e442a9cc916ffbc3"}, - {file = "grpcio-1.45.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:add03308fa2d434628aeaa445e0c75cdb9535f39128eb949b1483ae83fafade6"}, - {file = "grpcio-1.45.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:250d8f18332f3dbd4db00efa91d33d336e58362e9c80e6946d45ecf5e82d95ec"}, - {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dfca4dfd307b449d0a1e92bc7fbb5224ccf16db384aab412ba6766fc56bdffb6"}, - {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b7f2dc8831045eb0c892bb947e1cba2b1ed639e79a54abff7c4ad90bdd329f78"}, - {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:2355493a9e71f15d9004b2ab87892cb532e9e98db6882fced2912115eb5631af"}, - {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2798e42d62a0296982276d0bab96fc7d6772cd148357154348355304d6216763"}, - {file = "grpcio-1.45.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fe6acb1439127e0bee773f8a9a3ece290cb4cac4fe8d46b10bc8dda250a990c"}, - {file = "grpcio-1.45.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6774272a59b9ee16fb0d4f53e23716953a22bbb3efe12fdf9a4ee3eec2c4f81f"}, - {file = "grpcio-1.45.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52f61fcb17d92b87ba47d54b3c9deae09d4f0216a3ea277b7df4b6c1794e6556"}, - {file = "grpcio-1.45.0-cp39-cp39-win32.whl", hash = "sha256:3992c690228126e5652c7a1f61863c1ebfd71369cf2adb0fce86fee1d82d2d27"}, - {file = "grpcio-1.45.0-cp39-cp39-win_amd64.whl", hash = "sha256:220867a53e53b2e201e98c55061e3053e31c0ce613625087242be684d3e8612a"}, - {file = "grpcio-1.45.0.tar.gz", hash = "sha256:ff2c8b965b0fc25cf281961aa46619c10900543effe3f806ef818231c40aaff3"}, -] +grpcio = [] h5py = [ - {file = "h5py-3.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a5320837c60870911645e9a935099bdb2be6a786fcf0dac5c860f3b679e2de55"}, - {file = "h5py-3.6.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98646e659bf8591a2177e12a4461dced2cad72da0ba4247643fd118db88880d2"}, - {file = "h5py-3.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:5996ff5adefd2d68c330a4265b6ef92e51b2fc674834a5990add5033bf109e20"}, - {file = "h5py-3.6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c9a5529343a619fea777b7caa27d493595b28b5af8b005e8d1817559fcccf493"}, - {file = "h5py-3.6.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e2b49c48df05e19bb20b400b7ff7dc6f1ee36b84dc717c3771c468b33697b466"}, - {file = "h5py-3.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd9447633b0bafaf82190d9a8d56f3cb2e8d30169483aee67d800816e028190a"}, - {file = "h5py-3.6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1c5acc660c458421e88c4c5fe092ce15923adfac4c732af1ac4fced683a5ea97"}, - {file = "h5py-3.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:35ab552c6f0a93365b3cb5664a5305f3920daa0a43deb5b2c547c52815ec46b9"}, - {file = "h5py-3.6.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:542781d50e1182b8fb619b1265dfe1c765e18215f818b0ab28b2983c28471325"}, - {file = "h5py-3.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f39242960b8d7f86f3056cc2546aa3047ff4835985f6483229af8f029e9c8db"}, - {file = "h5py-3.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:8ecedf16c613973622a334701f67edcc0249469f9daa0576e994fb20ac0405db"}, - {file = "h5py-3.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d8cacad89aa7daf3626fce106f7f2662ac35b14849df22d252d0d8fab9dc1c0b"}, - {file = "h5py-3.6.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dbaa1ed9768bf9ff04af0919acc55746e62b28333644f0251f38768313f31745"}, - {file = "h5py-3.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:954c5c39a09b5302f69f752c3bbf165d368a65c8d200f7d5655e0fa6368a75e6"}, - {file = "h5py-3.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:9fd8a14236fdd092a20c0bdf25c3aba3777718d266fabb0fdded4fcf252d1630"}, - {file = "h5py-3.6.0.tar.gz", hash = "sha256:8752d2814a92aba4e2b2a5922d2782d0029102d99caaf3c201a566bc0b40db29"}, -] -hdbscan = [ - {file = "hdbscan-0.8.28.tar.gz", hash = "sha256:eedaf71f2f3bbedfc4c38da1ad4897454ce5ebd4792e1a689c979c2853edc05a"}, -] -huggingface-hub = [ - {file = "huggingface_hub-0.4.0-py3-none-any.whl", hash = "sha256:808021af1ce1111104973ae54d81738eaf40be6d1e82fc6bdedb82f81c6206e7"}, - {file = "huggingface_hub-0.4.0.tar.gz", hash = "sha256:f0e3389f8988eb7781b17de520ae7fd0aa50d9823534e3ae55344d943a88ac87"}, -] -idna = [ - {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, - {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, -] -importlib-metadata = [ - {file = "importlib_metadata-4.11.3-py3-none-any.whl", hash = "sha256:1208431ca90a8cca1a6b8af391bb53c1a2db74e5d1cef6ddced95d4b2062edc6"}, - {file = "importlib_metadata-4.11.3.tar.gz", hash = "sha256:ea4c597ebf37142f827b8f39299579e31685c31d3a438b59f469406afd0f2539"}, -] -importlib-resources = [ - {file = "importlib_resources-5.6.0-py3-none-any.whl", hash = "sha256:a9dd72f6cc106aeb50f6e66b86b69b454766dd6e39b69ac68450253058706bcc"}, - {file = "importlib_resources-5.6.0.tar.gz", hash = "sha256:1b93238cbf23b4cde34240dd8321d99e9bf2eb4bc91c0c99b2886283e7baad85"}, -] -ipykernel = [ - {file = "ipykernel-6.9.2-py3-none-any.whl", hash = "sha256:c977cff576b8425a68d3a6916510903833f0f25ed8d5c282a0c51c35de27bd47"}, - {file = "ipykernel-6.9.2.tar.gz", hash = "sha256:4c3cc8cb359f2ead70c30f5504971c0d285e2c1c699d2ce9af0216fe9c9fb17c"}, -] -ipython = [ - {file = "ipython-8.2.0-py3-none-any.whl", hash = "sha256:1b672bfd7a48d87ab203d9af8727a3b0174a4566b4091e9447c22fb63ea32857"}, - {file = "ipython-8.2.0.tar.gz", hash = "sha256:70e5eb132cac594a34b5f799bd252589009905f05104728aea6a403ec2519dc1"}, -] + {file = "h5py-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d77af42cb751ad6cc44f11bae73075a07429a5cf2094dfde2b1e716e059b3911"}, + {file = "h5py-3.7.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:63beb8b7b47d0896c50de6efb9a1eaa81dbe211f3767e7dd7db159cea51ba37a"}, + {file = "h5py-3.7.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:04e2e1e2fc51b8873e972a08d2f89625ef999b1f2d276199011af57bb9fc7851"}, + {file = "h5py-3.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f73307c876af49aa869ec5df1818e9bb0bdcfcf8a5ba773cc45a4fba5a286a5c"}, + {file = "h5py-3.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:f514b24cacdd983e61f8d371edac8c1b780c279d0acb8485639e97339c866073"}, + {file = "h5py-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:43fed4d13743cf02798a9a03a360a88e589d81285e72b83f47d37bb64ed44881"}, + {file = "h5py-3.7.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c038399ce09a58ff8d89ec3e62f00aa7cb82d14f34e24735b920e2a811a3a426"}, + {file = "h5py-3.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03d64fb86bb86b978928bad923b64419a23e836499ec6363e305ad28afd9d287"}, + {file = "h5py-3.7.0-cp37-cp37m-win_amd64.whl", hash = "sha256:e5b7820b75f9519499d76cc708e27242ccfdd9dfb511d6deb98701961d0445aa"}, + {file = "h5py-3.7.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a9351d729ea754db36d175098361b920573fdad334125f86ac1dd3a083355e20"}, + {file = "h5py-3.7.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6776d896fb90c5938de8acb925e057e2f9f28755f67ec3edcbc8344832616c38"}, + {file = "h5py-3.7.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0a047fddbe6951bce40e9cde63373c838a978c5e05a011a682db9ba6334b8e85"}, + {file = "h5py-3.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0798a9c0ff45f17d0192e4d7114d734cac9f8b2b2c76dd1d923c4d0923f27bb6"}, + {file = "h5py-3.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:0d8de8cb619fc597da7cf8cdcbf3b7ff8c5f6db836568afc7dc16d21f59b2b49"}, + {file = "h5py-3.7.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f084bbe816907dfe59006756f8f2d16d352faff2d107f4ffeb1d8de126fc5dc7"}, + {file = "h5py-3.7.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1fcb11a2dc8eb7ddcae08afd8fae02ba10467753a857fa07a404d700a93f3d53"}, + {file = "h5py-3.7.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ed43e2cc4f511756fd664fb45d6b66c3cbed4e3bd0f70e29c37809b2ae013c44"}, + {file = "h5py-3.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e7535df5ee3dc3e5d1f408fdfc0b33b46bc9b34db82743c82cd674d8239b9ad"}, + {file = "h5py-3.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:9e2ad2aa000f5b1e73b5dfe22f358ca46bf1a2b6ca394d9659874d7fc251731a"}, + {file = "h5py-3.7.0.tar.gz", hash = "sha256:3fcf37884383c5da64846ab510190720027dca0768def34dd8dcb659dbe5cbf3"}, +] +huggingface-hub = [] +idna = [] +importlib-metadata = [] +importlib-resources = [] +ipykernel = [] +ipython = [] ipython-genutils = [ {file = "ipython_genutils-0.2.0-py2.py3-none-any.whl", hash = "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8"}, {file = "ipython_genutils-0.2.0.tar.gz", hash = "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8"}, ] -ipywidgets = [ - {file = "ipywidgets-7.7.0-py2.py3-none-any.whl", hash = "sha256:e58ff58bc94d481e91ecb6e13a5cb96a87b6b8ade135e055603d0ca24593df38"}, - {file = "ipywidgets-7.7.0.tar.gz", hash = "sha256:ab4a5596855a88b83761921c768707d65e5847068139bc1729ddfe834703542a"}, -] +ipywidgets = [] +isoduration = [] itsdangerous = [ {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, ] -jedi = [ - {file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"}, - {file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"}, -] +jedi = [] jinja2 = [ - {file = "Jinja2-3.1.1-py3-none-any.whl", hash = "sha256:539835f51a74a69f41b848a9645dbdc35b4f20a3b601e2d9a7e22947b15ff119"}, - {file = "Jinja2-3.1.1.tar.gz", hash = "sha256:640bed4bb501cbd17194b3cace1dc2126f5b619cf068a726b98192a0fde74ae9"}, -] -joblib = [ - {file = "joblib-1.1.0-py2.py3-none-any.whl", hash = "sha256:f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6"}, - {file = "joblib-1.1.0.tar.gz", hash = "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35"}, -] -jsonschema = [ - {file = "jsonschema-4.4.0-py3-none-any.whl", hash = "sha256:77281a1f71684953ee8b3d488371b162419767973789272434bbc3f29d9c8823"}, - {file = "jsonschema-4.4.0.tar.gz", hash = "sha256:636694eb41b3535ed608fe04129f26542b59ed99808b4f688aa32dcf55317a83"}, + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, ] +joblib = [] +jsonpointer = [] +jsonschema = [] jupyter = [ {file = "jupyter-1.0.0-py2.py3-none-any.whl", hash = "sha256:5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78"}, {file = "jupyter-1.0.0.tar.gz", hash = "sha256:d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"}, {file = "jupyter-1.0.0.zip", hash = "sha256:3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"}, ] -jupyter-client = [ - {file = "jupyter_client-7.1.2-py3-none-any.whl", hash = "sha256:d56f1c57bef42ff31e61b1185d3348a5b2bcde7c9a05523ae4dbe5ee0871797c"}, - {file = "jupyter_client-7.1.2.tar.gz", hash = "sha256:4ea61033726c8e579edb55626d8ee2e6bf0a83158ddf3751b8dd46b2c5cd1e96"}, -] -jupyter-console = [ - {file = "jupyter_console-6.4.3-py3-none-any.whl", hash = "sha256:e630bcb682c0088dda45688ad7c2424d4a825c8acf494cb036ced03ed0424841"}, - {file = "jupyter_console-6.4.3.tar.gz", hash = "sha256:55f32626b0be647a85e3217ddcdb22db69efc79e8b403b9771eb9ecc696019b5"}, -] -jupyter-core = [ - {file = "jupyter_core-4.9.2-py3-none-any.whl", hash = "sha256:f875e4d27e202590311d468fa55f90c575f201490bd0c18acabe4e318db4a46d"}, - {file = "jupyter_core-4.9.2.tar.gz", hash = "sha256:d69baeb9ffb128b8cd2657fcf2703f89c769d1673c851812119e3a2a0e93ad9a"}, -] +jupyter-client = [] +jupyter-console = [] +jupyter-core = [] +jupyter-events = [] +jupyter-server = [] +jupyter-server-terminals = [] jupyterlab-pygments = [ - {file = "jupyterlab_pygments-0.1.2-py2.py3-none-any.whl", hash = "sha256:abfb880fd1561987efaefcb2d2ac75145d2a5d0139b1876d5be806e32f630008"}, - {file = "jupyterlab_pygments-0.1.2.tar.gz", hash = "sha256:cfcda0873626150932f438eccf0f8bf22bfa92345b814890ab360d666b254146"}, -] -jupyterlab-widgets = [ - {file = "jupyterlab_widgets-1.1.0-py3-none-any.whl", hash = "sha256:c2a9bd3789f120f64d73268c066ed3b000c56bc1dda217be5cdc43e7b4ebad3f"}, - {file = "jupyterlab_widgets-1.1.0.tar.gz", hash = "sha256:d5f41bc1713795385f718d44dcba47e1e1473c6289f28a95aa6b2c0782ee372a"}, -] -keras = [ - {file = "keras-2.8.0-py2.py3-none-any.whl", hash = "sha256:744d39dc6577dcd80ff4a4d41549e92b77d6a17e0edd58a431d30656e29bc94e"}, -] -keras-preprocessing = [ - {file = "Keras_Preprocessing-1.1.2-py2.py3-none-any.whl", hash = "sha256:7b82029b130ff61cc99b55f3bd27427df4838576838c5b2f65940e4fcec99a7b"}, - {file = "Keras_Preprocessing-1.1.2.tar.gz", hash = "sha256:add82567c50c8bc648c14195bf544a5ce7c1f76761536956c3d2978970179ef3"}, -] -kiwisolver = [ - {file = "kiwisolver-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e91348c46db6e7bcdec778ff8e3d2fc2c7e16f3be72cac204d2f864374f5476f"}, - {file = "kiwisolver-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7f855bda104eb9eff30bf818f6bdaf606db25fa0c55a1bac9091270a0c170908"}, - {file = "kiwisolver-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ab9a77ef4f135bda3d1665f090dd5ac43044104f110cafb3342c74a55a33b67f"}, - {file = "kiwisolver-1.4.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8750fc3b56c6aee58a852e39903d953f657f68938dfebc6549c6d88b8d517a1b"}, - {file = "kiwisolver-1.4.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:72892a97bb4b27488fd9f329670f21ac9b976cc326c16033e102006745e7a655"}, - {file = "kiwisolver-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e513e0694ff792173b5ff8e13ac485c309ba6ae6381ae681576657782e284a20"}, - {file = "kiwisolver-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d425fe1838a63f3dbaecb199d621ebf73ebf6e85d226524d0bee93d1eb427b73"}, - {file = "kiwisolver-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b8a673c602f421714d6376cacedc3282afca1b60b6c8776df91f6dbb17686c2e"}, - {file = "kiwisolver-1.4.1-cp310-cp310-win32.whl", hash = "sha256:36847fbd108f160162e549138fe04298fb6112b47a9c19e8318816506d8521ac"}, - {file = "kiwisolver-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:8c619c4e9df2f2f227da1b3d510a51388116cd3a5c6fc25e4c9fe9834fa3e2bb"}, - {file = "kiwisolver-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:134130b2d325c0c90c1754d5819034784f014f21432dffc977b54ab7099e04b2"}, - {file = "kiwisolver-1.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0862085c5f687fa0cef88cd7a95a3ba038dca050c1997ecff54c0bb904c46bf5"}, - {file = "kiwisolver-1.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6ba90a4e872ba133eb3ae75101e290f83b5f97374d30f15a7ff15346fda28a0"}, - {file = "kiwisolver-1.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ac167d66c19f994eb16c31c2267d4b1c4b761811284254bcdc752fb29d24135"}, - {file = "kiwisolver-1.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e39b982ffd3d6756ba748cc907ff015ba73777a94b4cc835c3557b9597c8c707"}, - {file = "kiwisolver-1.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:4d84926f60f4602ecc4e70d7e3b4a2addb046bcd842a1908e373ee4eec4e578d"}, - {file = "kiwisolver-1.4.1-cp37-cp37m-win32.whl", hash = "sha256:2e89de819d1809d0d7cc8fb62c94a1a77ee546c9286d2a11b60da6ea8335684b"}, - {file = "kiwisolver-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:d1b5ccc832de9be0602695bc78f5f9be427f7014daaa407897ada4e557f62b6e"}, - {file = "kiwisolver-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:7f04aa4fa556c9f615f5c7499c64bec1ccd76a22d106ca381ae741e9c77ff13d"}, - {file = "kiwisolver-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c2691c96915e73c492e742580ff744cd9ccd70d841607b1a0ef56c75c890d9c6"}, - {file = "kiwisolver-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9266371990847f76d211aa321012b43278da66ee940d129cb1490e307c091f0d"}, - {file = "kiwisolver-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a67496915fbd0973f11e34ebec4b5c510ca735fec0a2ec8af2a7d673db4bcde8"}, - {file = "kiwisolver-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cdbda04d2674be914f7237931b44db64eb6d0f510a35e057c920ebeb6679ade8"}, - {file = "kiwisolver-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98469a96a3a3ce15db480390752ae922a74c41b0edfbc32b943099d4c8b71bd8"}, - {file = "kiwisolver-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d1988da8031d60786b775231927ef20a8a6e5d14e6ae720811dc17d8af9ca841"}, - {file = "kiwisolver-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c33f30536e014beaaae391367a92632ec68b32cd21a186574c63fea4ba04d795"}, - {file = "kiwisolver-1.4.1-cp38-cp38-win32.whl", hash = "sha256:96ce02ae6c1b7d68510419071d902bfb7cf4851f25c3f4f828261dda7e7923ab"}, - {file = "kiwisolver-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:34f9608eeb17601da74b0feb3ba079310f8d9f76be976a876f73661611a29dce"}, - {file = "kiwisolver-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b4b2a8878ef321a0d065e1e1b25c04d3b8ecf6d3ffd4705453534b83a0e395c9"}, - {file = "kiwisolver-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8d3ed8b1b8521452ff3ec20365939c49db50c7ba4e5440f5ad2b8cadc30a6e6a"}, - {file = "kiwisolver-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95e4e563341bddf1602b079b0bb88c326ee2a6ac4f1a8adf4331ace072241cf8"}, - {file = "kiwisolver-1.4.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4a623cb8f831759c4fddfc64a1d8261ff459fb5ea6e7cd79f329ea6f08f8bbf4"}, - {file = "kiwisolver-1.4.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b5d2621afdc5189932f39f2bd637a42078ae7f05c6bf135b27d93e218e66befa"}, - {file = "kiwisolver-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89aa071d906eab9b4f843793398d2be169498d5de5940542b9683655468e4d20"}, - {file = "kiwisolver-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c1f6fdfb9d33211b6b6cb654e679dabc5f116b5d04ef931f9534b46184c42424"}, - {file = "kiwisolver-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57534131861c2382379f669601246691080ca960d038387bacdf6f3a9f088d36"}, - {file = "kiwisolver-1.4.1-cp39-cp39-win32.whl", hash = "sha256:bd87564e8ca896f00f56e7a2038f3b0b3b05e877f88d6e2c1f0d383611ce6d4d"}, - {file = "kiwisolver-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:8b332388df50ea05da9af32e532c45ef39f2c517780315663433ef1ee0bab107"}, - {file = "kiwisolver-1.4.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d2bfc77a3009105266001b9eb10dceb4b7d20b0a6b7a4c2b4f1a992cd52e920b"}, - {file = "kiwisolver-1.4.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:153beb19b0b560e9312e8ef066705a743897b2e1b8f909bf8204880876d06915"}, - {file = "kiwisolver-1.4.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2875a564d886369348158abd769970a673160cbcafaf7f04c2627e431009c715"}, - {file = "kiwisolver-1.4.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:568a207ea82473056a6ad0f30a3312d1a952a260fea35003a5f414e6dbff21f9"}, - {file = "kiwisolver-1.4.1.tar.gz", hash = "sha256:91bfcd2a14bea6f93c86876c4abccb53dc3f0bcad55e3a0af0b3e57ced6eef11"}, -] -libclang = [ - {file = "libclang-13.0.0-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:bcaffec6b1ab9486811670db7af29d4a361830d6cb75da4f5672e884aa973bda"}, - {file = "libclang-13.0.0-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:069407eac2e20ea8f18212d28c6598db31014e7b8a77febc92e762ec133c3226"}, - {file = "libclang-13.0.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:9c1e623340ccafe3a10a2abbc90f59593ff29f0c854f4ddb65b6220d9d998fb4"}, - {file = "libclang-13.0.0-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:b7de34393ed46c6cf7b22178d0d43cec2f2dab2f5f95450520a47fc1cf2df5ac"}, - {file = "libclang-13.0.0-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:dcc7ecd83d91e23e95315d7aa6355ee8d45b43742ca1fb642583e0b2f935d50e"}, - {file = "libclang-13.0.0-py2.py3-none-win_amd64.whl", hash = "sha256:b61dedc1b941f43acca1fa15df0a6669c6c3983197c6f3226ae03a766281dd37"}, -] -llvmlite = [ - {file = "llvmlite-0.36.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cc0f9b9644b4ab0e4a5edb17f1531d791630c88858220d3cc688d6edf10da100"}, - {file = "llvmlite-0.36.0-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:f7918dbac02b1ebbfd7302ad8e8307d7877ab57d782d5f04b70ff9696b53c21b"}, - {file = "llvmlite-0.36.0-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:7768658646c418b9b3beccb7044277a608bc8c62b82a85e73c7e5c065e4157c2"}, - {file = "llvmlite-0.36.0-cp36-cp36m-win32.whl", hash = "sha256:05f807209a360d39526d98141b6f281b9c7c771c77a4d1fc22002440642c8de2"}, - {file = "llvmlite-0.36.0-cp36-cp36m-win_amd64.whl", hash = "sha256:d1fdd63c371626c25ad834e1c6297eb76cf2f093a40dbb401a87b6476ab4e34e"}, - {file = "llvmlite-0.36.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7c4e7066447305d5095d0b0a9cae7b835d2f0fde143456b3124110eab0856426"}, - {file = "llvmlite-0.36.0-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:9dad7e4bb042492914292aea3f4172eca84db731f9478250240955aedba95e08"}, - {file = "llvmlite-0.36.0-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:1ce5bc0a638d874a08d4222be0a7e48e5df305d094c2ff8dec525ef32b581551"}, - {file = "llvmlite-0.36.0-cp37-cp37m-win32.whl", hash = "sha256:dbedff0f6d417b374253a6bab39aa4b5364f1caab30c06ba8726904776fcf1cb"}, - {file = "llvmlite-0.36.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3b17fc4b0dd17bd29d7297d054e2915fad535889907c3f65232ee21f483447c5"}, - {file = "llvmlite-0.36.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b3a77e46e6053e2a86e607e87b97651dda81e619febb914824a927bff4e88737"}, - {file = "llvmlite-0.36.0-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:048a7c117641c9be87b90005684e64a6f33ea0897ebab1df8a01214a10d6e79a"}, - {file = "llvmlite-0.36.0-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:7db4b0eef93125af1c4092c64a3c73c7dc904101117ef53f8d78a1a499b8d5f4"}, - {file = "llvmlite-0.36.0-cp38-cp38-win32.whl", hash = "sha256:50b1828bde514b31431b2bba1aa20b387f5625b81ad6e12fede430a04645e47a"}, - {file = "llvmlite-0.36.0-cp38-cp38-win_amd64.whl", hash = "sha256:f608bae781b2d343e15e080c546468c5a6f35f57f0446923ea198dd21f23757e"}, - {file = "llvmlite-0.36.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6a3abc8a8889aeb06bf9c4a7e5df5bc7bb1aa0aedd91a599813809abeec80b5a"}, - {file = "llvmlite-0.36.0-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:705f0323d931684428bb3451549603299bb5e17dd60fb979d67c3807de0debc1"}, - {file = "llvmlite-0.36.0-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:5a6548b4899facb182145147185e9166c69826fb424895f227e6b7cf924a8da1"}, - {file = "llvmlite-0.36.0-cp39-cp39-win32.whl", hash = "sha256:ff52fb9c2be66b95b0e67d56fce11038397e5be1ea410ee53f5f1175fdbb107a"}, - {file = "llvmlite-0.36.0-cp39-cp39-win_amd64.whl", hash = "sha256:1dee416ea49fd338c74ec15c0c013e5273b0961528169af06ff90772614f7f6c"}, - {file = "llvmlite-0.36.0.tar.gz", hash = "sha256:765128fdf5f149ed0b889ffbe2b05eb1717f8e20a5c87fa2b4018fbcce0fcfc9"}, -] -lxml = [ - {file = "lxml-4.8.0-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:e1ab2fac607842ac36864e358c42feb0960ae62c34aa4caaf12ada0a1fb5d99b"}, - {file = "lxml-4.8.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:28d1af847786f68bec57961f31221125c29d6f52d9187c01cd34dc14e2b29430"}, - {file = "lxml-4.8.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b92d40121dcbd74831b690a75533da703750f7041b4bf951befc657c37e5695a"}, - {file = "lxml-4.8.0-cp27-cp27m-win32.whl", hash = "sha256:e01f9531ba5420838c801c21c1b0f45dbc9607cb22ea2cf132844453bec863a5"}, - {file = "lxml-4.8.0-cp27-cp27m-win_amd64.whl", hash = "sha256:6259b511b0f2527e6d55ad87acc1c07b3cbffc3d5e050d7e7bcfa151b8202df9"}, - {file = "lxml-4.8.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1010042bfcac2b2dc6098260a2ed022968dbdfaf285fc65a3acf8e4eb1ffd1bc"}, - {file = "lxml-4.8.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:fa56bb08b3dd8eac3a8c5b7d075c94e74f755fd9d8a04543ae8d37b1612dd170"}, - {file = "lxml-4.8.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:31ba2cbc64516dcdd6c24418daa7abff989ddf3ba6d3ea6f6ce6f2ed6e754ec9"}, - {file = "lxml-4.8.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:31499847fc5f73ee17dbe1b8e24c6dafc4e8d5b48803d17d22988976b0171f03"}, - {file = "lxml-4.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:5f7d7d9afc7b293147e2d506a4596641d60181a35279ef3aa5778d0d9d9123fe"}, - {file = "lxml-4.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:a3c5f1a719aa11866ffc530d54ad965063a8cbbecae6515acbd5f0fae8f48eaa"}, - {file = "lxml-4.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6268e27873a3d191849204d00d03f65c0e343b3bcb518a6eaae05677c95621d1"}, - {file = "lxml-4.8.0-cp310-cp310-win32.whl", hash = "sha256:330bff92c26d4aee79c5bc4d9967858bdbe73fdbdbacb5daf623a03a914fe05b"}, - {file = "lxml-4.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:b2582b238e1658c4061ebe1b4df53c435190d22457642377fd0cb30685cdfb76"}, - {file = "lxml-4.8.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a2bfc7e2a0601b475477c954bf167dee6d0f55cb167e3f3e7cefad906e7759f6"}, - {file = "lxml-4.8.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a1547ff4b8a833511eeaceacbcd17b043214fcdb385148f9c1bc5556ca9623e2"}, - {file = "lxml-4.8.0-cp35-cp35m-win32.whl", hash = "sha256:a9f1c3489736ff8e1c7652e9dc39f80cff820f23624f23d9eab6e122ac99b150"}, - {file = "lxml-4.8.0-cp35-cp35m-win_amd64.whl", hash = "sha256:530f278849031b0eb12f46cca0e5db01cfe5177ab13bd6878c6e739319bae654"}, - {file = "lxml-4.8.0-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:078306d19a33920004addeb5f4630781aaeabb6a8d01398045fcde085091a169"}, - {file = "lxml-4.8.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:86545e351e879d0b72b620db6a3b96346921fa87b3d366d6c074e5a9a0b8dadb"}, - {file = "lxml-4.8.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24f5c5ae618395ed871b3d8ebfcbb36e3f1091fd847bf54c4de623f9107942f3"}, - {file = "lxml-4.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:bbab6faf6568484707acc052f4dfc3802bdb0cafe079383fbaa23f1cdae9ecd4"}, - {file = "lxml-4.8.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7993232bd4044392c47779a3c7e8889fea6883be46281d45a81451acfd704d7e"}, - {file = "lxml-4.8.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6d6483b1229470e1d8835e52e0ff3c6973b9b97b24cd1c116dca90b57a2cc613"}, - {file = "lxml-4.8.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:ad4332a532e2d5acb231a2e5d33f943750091ee435daffca3fec0a53224e7e33"}, - {file = "lxml-4.8.0-cp36-cp36m-win32.whl", hash = "sha256:db3535733f59e5605a88a706824dfcb9bd06725e709ecb017e165fc1d6e7d429"}, - {file = "lxml-4.8.0-cp36-cp36m-win_amd64.whl", hash = "sha256:5f148b0c6133fb928503cfcdfdba395010f997aa44bcf6474fcdd0c5398d9b63"}, - {file = "lxml-4.8.0-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:8a31f24e2a0b6317f33aafbb2f0895c0bce772980ae60c2c640d82caac49628a"}, - {file = "lxml-4.8.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:719544565c2937c21a6f76d520e6e52b726d132815adb3447ccffbe9f44203c4"}, - {file = "lxml-4.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:c0b88ed1ae66777a798dc54f627e32d3b81c8009967c63993c450ee4cbcbec15"}, - {file = "lxml-4.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:fa9b7c450be85bfc6cd39f6df8c5b8cbd76b5d6fc1f69efec80203f9894b885f"}, - {file = "lxml-4.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e9f84ed9f4d50b74fbc77298ee5c870f67cb7e91dcdc1a6915cb1ff6a317476c"}, - {file = "lxml-4.8.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1d650812b52d98679ed6c6b3b55cbb8fe5a5460a0aef29aeb08dc0b44577df85"}, - {file = "lxml-4.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:80bbaddf2baab7e6de4bc47405e34948e694a9efe0861c61cdc23aa774fcb141"}, - {file = "lxml-4.8.0-cp37-cp37m-win32.whl", hash = "sha256:6f7b82934c08e28a2d537d870293236b1000d94d0b4583825ab9649aef7ddf63"}, - {file = "lxml-4.8.0-cp37-cp37m-win_amd64.whl", hash = "sha256:e1fd7d2fe11f1cb63d3336d147c852f6d07de0d0020d704c6031b46a30b02ca8"}, - {file = "lxml-4.8.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:5045ee1ccd45a89c4daec1160217d363fcd23811e26734688007c26f28c9e9e7"}, - {file = "lxml-4.8.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:0c1978ff1fd81ed9dcbba4f91cf09faf1f8082c9d72eb122e92294716c605428"}, - {file = "lxml-4.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cbf2ff155b19dc4d4100f7442f6a697938bf4493f8d3b0c51d45568d5666b5"}, - {file = "lxml-4.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:ce13d6291a5f47c1c8dbd375baa78551053bc6b5e5c0e9bb8e39c0a8359fd52f"}, - {file = "lxml-4.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e11527dc23d5ef44d76fef11213215c34f36af1608074561fcc561d983aeb870"}, - {file = "lxml-4.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:60d2f60bd5a2a979df28ab309352cdcf8181bda0cca4529769a945f09aba06f9"}, - {file = "lxml-4.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:62f93eac69ec0f4be98d1b96f4d6b964855b8255c345c17ff12c20b93f247b68"}, - {file = "lxml-4.8.0-cp38-cp38-win32.whl", hash = "sha256:20b8a746a026017acf07da39fdb10aa80ad9877046c9182442bf80c84a1c4696"}, - {file = "lxml-4.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:891dc8f522d7059ff0024cd3ae79fd224752676447f9c678f2a5c14b84d9a939"}, - {file = "lxml-4.8.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:b6fc2e2fb6f532cf48b5fed57567ef286addcef38c28874458a41b7837a57807"}, - {file = "lxml-4.8.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:74eb65ec61e3c7c019d7169387d1b6ffcfea1b9ec5894d116a9a903636e4a0b1"}, - {file = "lxml-4.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:627e79894770783c129cc5e89b947e52aa26e8e0557c7e205368a809da4b7939"}, - {file = "lxml-4.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:545bd39c9481f2e3f2727c78c169425efbfb3fbba6e7db4f46a80ebb249819ca"}, - {file = "lxml-4.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5a58d0b12f5053e270510bf12f753a76aaf3d74c453c00942ed7d2c804ca845c"}, - {file = "lxml-4.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:ec4b4e75fc68da9dc0ed73dcdb431c25c57775383fec325d23a770a64e7ebc87"}, - {file = "lxml-4.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5804e04feb4e61babf3911c2a974a5b86f66ee227cc5006230b00ac6d285b3a9"}, - {file = "lxml-4.8.0-cp39-cp39-win32.whl", hash = "sha256:aa0cf4922da7a3c905d000b35065df6184c0dc1d866dd3b86fd961905bbad2ea"}, - {file = "lxml-4.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:dd10383f1d6b7edf247d0960a3db274c07e96cf3a3fc7c41c8448f93eac3fb1c"}, - {file = "lxml-4.8.0-pp37-pypy37_pp73-macosx_10_14_x86_64.whl", hash = "sha256:2403a6d6fb61c285969b71f4a3527873fe93fd0abe0832d858a17fe68c8fa507"}, - {file = "lxml-4.8.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:986b7a96228c9b4942ec420eff37556c5777bfba6758edcb95421e4a614b57f9"}, - {file = "lxml-4.8.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:6fe4ef4402df0250b75ba876c3795510d782def5c1e63890bde02d622570d39e"}, - {file = "lxml-4.8.0-pp38-pypy38_pp73-macosx_10_14_x86_64.whl", hash = "sha256:f10ce66fcdeb3543df51d423ede7e238be98412232fca5daec3e54bcd16b8da0"}, - {file = "lxml-4.8.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:730766072fd5dcb219dd2b95c4c49752a54f00157f322bc6d71f7d2a31fecd79"}, - {file = "lxml-4.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:8b99ec73073b37f9ebe8caf399001848fced9c08064effdbfc4da2b5a8d07b93"}, - {file = "lxml-4.8.0.tar.gz", hash = "sha256:f63f62fc60e6228a4ca9abae28228f35e1bd3ce675013d1dfb828688d50c6e23"}, -] -markdown = [ - {file = "Markdown-3.3.6-py3-none-any.whl", hash = "sha256:9923332318f843411e9932237530df53162e29dc7a4e2b91e35764583c46c9a3"}, - {file = "Markdown-3.3.6.tar.gz", hash = "sha256:76df8ae32294ec39dcf89340382882dfa12975f87f45c3ed1ecdb1e8cefc7006"}, -] -markupsafe = [ - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, - {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, -] -matplotlib = [ - {file = "matplotlib-3.5.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:456cc8334f6d1124e8ff856b42d2cc1c84335375a16448189999496549f7182b"}, - {file = "matplotlib-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8a77906dc2ef9b67407cec0bdbf08e3971141e535db888974a915be5e1e3efc6"}, - {file = "matplotlib-3.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e70ae6475cfd0fad3816dcbf6cac536dc6f100f7474be58d59fa306e6e768a4"}, - {file = "matplotlib-3.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53273c5487d1c19c3bc03b9eb82adaf8456f243b97ed79d09dded747abaf1235"}, - {file = "matplotlib-3.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e3b6f3fd0d8ca37861c31e9a7cab71a0ef14c639b4c95654ea1dd153158bf0df"}, - {file = "matplotlib-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8c87cdaf06fd7b2477f68909838ff4176f105064a72ca9d24d3f2a29f73d393"}, - {file = "matplotlib-3.5.1-cp310-cp310-win32.whl", hash = "sha256:e2f28a07b4f82abb40267864ad7b3a4ed76f1b1663e81c7efc84a9b9248f672f"}, - {file = "matplotlib-3.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:d70a32ee1f8b55eed3fd4e892f0286df8cccc7e0475c11d33b5d0a148f5c7599"}, - {file = "matplotlib-3.5.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:68fa30cec89b6139dc559ed6ef226c53fd80396da1919a1b5ef672c911aaa767"}, - {file = "matplotlib-3.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e3484d8455af3fdb0424eae1789af61f6a79da0c80079125112fd5c1b604218"}, - {file = "matplotlib-3.5.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e293b16cf303fe82995e41700d172a58a15efc5331125d08246b520843ef21ee"}, - {file = "matplotlib-3.5.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:e3520a274a0e054e919f5b3279ee5dbccf5311833819ccf3399dab7c83e90a25"}, - {file = "matplotlib-3.5.1-cp37-cp37m-win32.whl", hash = "sha256:2252bfac85cec7af4a67e494bfccf9080bcba8a0299701eab075f48847cca907"}, - {file = "matplotlib-3.5.1-cp37-cp37m-win_amd64.whl", hash = "sha256:abf67e05a1b7f86583f6ebd01f69b693b9c535276f4e943292e444855870a1b8"}, - {file = "matplotlib-3.5.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6c094e4bfecd2fa7f9adffd03d8abceed7157c928c2976899de282f3600f0a3d"}, - {file = "matplotlib-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:506b210cc6e66a0d1c2bb765d055f4f6bc2745070fb1129203b67e85bbfa5c18"}, - {file = "matplotlib-3.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b04fc29bcef04d4e2d626af28d9d892be6aba94856cb46ed52bcb219ceac8943"}, - {file = "matplotlib-3.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:577ed20ec9a18d6bdedb4616f5e9e957b4c08563a9f985563a31fd5b10564d2a"}, - {file = "matplotlib-3.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e486f60db0cd1c8d68464d9484fd2a94011c1ac8593d765d0211f9daba2bd535"}, - {file = "matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1"}, - {file = "matplotlib-3.5.1-cp38-cp38-win32.whl", hash = "sha256:d24e5bb8028541ce25e59390122f5e48c8506b7e35587e5135efcb6471b4ac6c"}, - {file = "matplotlib-3.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:778d398c4866d8e36ee3bf833779c940b5f57192fa0a549b3ad67bc4c822771b"}, - {file = "matplotlib-3.5.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bb1c613908f11bac270bc7494d68b1ef6e7c224b7a4204d5dacf3522a41e2bc3"}, - {file = "matplotlib-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:edf5e4e1d5fb22c18820e8586fb867455de3b109c309cb4fce3aaed85d9468d1"}, - {file = "matplotlib-3.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:40e0d7df05e8efe60397c69b467fc8f87a2affeb4d562fe92b72ff8937a2b511"}, - {file = "matplotlib-3.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a350ca685d9f594123f652ba796ee37219bf72c8e0fc4b471473d87121d6d34"}, - {file = "matplotlib-3.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3e66497cd990b1a130e21919b004da2f1dc112132c01ac78011a90a0f9229778"}, - {file = "matplotlib-3.5.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:87900c67c0f1728e6db17c6809ec05c025c6624dcf96a8020326ea15378fe8e7"}, - {file = "matplotlib-3.5.1-cp39-cp39-win32.whl", hash = "sha256:b8a4fb2a0c5afbe9604f8a91d7d0f27b1832c3e0b5e365f95a13015822b4cd65"}, - {file = "matplotlib-3.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:fe8d40c434a8e2c68d64c6d6a04e77f21791a93ff6afe0dce169597c110d3079"}, - {file = "matplotlib-3.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34a1fc29f8f96e78ec57a5eff5e8d8b53d3298c3be6df61e7aa9efba26929522"}, - {file = "matplotlib-3.5.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b19a761b948e939a9e20173aaae76070025f0024fc8f7ba08bef22a5c8573afc"}, - {file = "matplotlib-3.5.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6803299cbf4665eca14428d9e886de62e24f4223ac31ab9c5d6d5339a39782c7"}, - {file = "matplotlib-3.5.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:14334b9902ec776461c4b8c6516e26b450f7ebe0b3ef8703bf5cdfbbaecf774a"}, - {file = "matplotlib-3.5.1.tar.gz", hash = "sha256:b2e9810e09c3a47b73ce9cab5a72243a1258f61e7900969097a817232246ce1c"}, -] -matplotlib-inline = [ - {file = "matplotlib-inline-0.1.3.tar.gz", hash = "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee"}, - {file = "matplotlib_inline-0.1.3-py3-none-any.whl", hash = "sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c"}, -] -mistune = [ - {file = "mistune-0.8.4-py2.py3-none-any.whl", hash = "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4"}, - {file = "mistune-0.8.4.tar.gz", hash = "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"}, -] + {file = "jupyterlab_pygments-0.2.2-py2.py3-none-any.whl", hash = "sha256:2405800db07c9f770863bcf8049a529c3dd4d3e28536638bd7c1c01d2748309f"}, + {file = "jupyterlab_pygments-0.2.2.tar.gz", hash = "sha256:7405d7fde60819d905a9fa8ce89e4cd830e318cdad22a0030f7a901da705585d"}, +] +jupyterlab-widgets = [] +keras = [] +kiwisolver = [] +langcodes = [ + {file = "langcodes-3.3.0-py3-none-any.whl", hash = "sha256:4d89fc9acb6e9c8fdef70bcdf376113a3db09b67285d9e1d534de6d8818e7e69"}, + {file = "langcodes-3.3.0.tar.gz", hash = "sha256:794d07d5a28781231ac335a1561b8442f8648ca07cd518310aeb45d6f0807ef6"}, +] +libclang = [] +llvmlite = [] +lxml = [] +markdown = [] +markupsafe = [] +matplotlib = [] +matplotlib-inline = [] +mistune = [] mtcnn = [ {file = "mtcnn-0.1.1-py3-none-any.whl", hash = "sha256:fd69d2f4dd10647dd7481a53b9586e805f35a17c61ac78ba472a7f53766eb86e"}, {file = "mtcnn-0.1.1.tar.gz", hash = "sha256:d0957274584be62cb83d4a089041f8ee3cf3b1893e45f01ed3356f94a381302b"}, ] -nbclient = [ - {file = "nbclient-0.5.13-py3-none-any.whl", hash = "sha256:47ac905af59379913c1f8f541098d2550153cf8dc58553cbe18c702b181518b0"}, - {file = "nbclient-0.5.13.tar.gz", hash = "sha256:40c52c9b5e3c31faecaee69f202b3f53e38d7c1c563de0fadde9d7eda0fdafe8"}, -] -nbconvert = [ - {file = "nbconvert-6.4.4-py3-none-any.whl", hash = "sha256:c0c13d11378e13f72b9cd509c008383dca4051c228e4985f75023b2a5d82fc9f"}, - {file = "nbconvert-6.4.4.tar.gz", hash = "sha256:ee0dfe34bbd1082ac9bfc750aae3c73fcbc34a70c5574c6986ff83c10a3541fd"}, -] -nbformat = [ - {file = "nbformat-5.2.0-py3-none-any.whl", hash = "sha256:3e30424e8291b2188347f5c3ba5273ed3766f12f8c5137c2e456a0815f36e785"}, - {file = "nbformat-5.2.0.tar.gz", hash = "sha256:93df0b9c67221d38fb970c48f6d361819a6c388299a0ef3171bbb912edfe1324"}, -] -nest-asyncio = [ - {file = "nest_asyncio-1.5.4-py3-none-any.whl", hash = "sha256:3fdd0d6061a2bb16f21fe8a9c6a7945be83521d81a0d15cff52e9edee50101d6"}, - {file = "nest_asyncio-1.5.4.tar.gz", hash = "sha256:f969f6013a16fadb4adcf09d11a68a4f617c6049d7af7ac2c676110169a63abd"}, -] -nltk = [ - {file = "nltk-3.7-py3-none-any.whl", hash = "sha256:ba3de02490308b248f9b94c8bc1ac0683e9aa2ec49ee78536d8667afb5e3eec8"}, - {file = "nltk-3.7.zip", hash = "sha256:d6507d6460cec76d70afea4242a226a7542f85c669177b9c7f562b7cf1b05502"}, -] -notebook = [ - {file = "notebook-6.4.10-py3-none-any.whl", hash = "sha256:49cead814bff0945fcb2ee07579259418672ac175d3dc3d8102a4b0a656ed4df"}, - {file = "notebook-6.4.10.tar.gz", hash = "sha256:2408a76bc6289283a8eecfca67e298ec83c67db51a4c2e1b713dd180bb39e90e"}, -] -numba = [ - {file = "numba-0.53.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:b23de6b6837c132087d06b8b92d343edb54b885873b824a037967fbd5272ebb7"}, - {file = "numba-0.53.1-cp36-cp36m-manylinux2014_i686.whl", hash = "sha256:6545b9e9b0c112b81de7f88a3c787469a357eeff8211e90b8f45ee243d521cc2"}, - {file = "numba-0.53.1-cp36-cp36m-manylinux2014_x86_64.whl", hash = "sha256:8fa5c963a43855050a868106a87cd614f3c3f459951c8fc468aec263ef80d063"}, - {file = "numba-0.53.1-cp36-cp36m-win32.whl", hash = "sha256:aaa6ebf56afb0b6752607b9f3bf39e99b0efe3c1fa6849698373925ee6838fd7"}, - {file = "numba-0.53.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b08b3df38aab769df79ed948d70f0a54a3cdda49d58af65369235c204ec5d0f3"}, - {file = "numba-0.53.1-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:bf5c463b62d013e3f709cc8277adf2f4f4d8cc6757293e29c6db121b77e6b760"}, - {file = "numba-0.53.1-cp37-cp37m-manylinux2014_i686.whl", hash = "sha256:74df02e73155f669e60dcff07c4eef4a03dbf5b388594db74142ab40914fe4f5"}, - {file = "numba-0.53.1-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:5165709bf62f28667e10b9afe6df0ce1037722adab92d620f59cb8bbb8104641"}, - {file = "numba-0.53.1-cp37-cp37m-win32.whl", hash = "sha256:2e96958ed2ca7e6d967b2ce29c8da0ca47117e1de28e7c30b2c8c57386506fa5"}, - {file = "numba-0.53.1-cp37-cp37m-win_amd64.whl", hash = "sha256:276f9d1674fe08d95872d81b97267c6b39dd830f05eb992608cbede50fcf48a9"}, - {file = "numba-0.53.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:4c4c8d102512ae472af52c76ad9522da718c392cb59f4cd6785d711fa5051a2a"}, - {file = "numba-0.53.1-cp38-cp38-manylinux2014_i686.whl", hash = "sha256:691adbeac17dbdf6ed7c759e9e33a522351f07d2065fe926b264b6b2c15fd89b"}, - {file = "numba-0.53.1-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:94aab3e0e9e8754116325ce026e1b29ae72443c706a3104cf7f3368dc3012912"}, - {file = "numba-0.53.1-cp38-cp38-win32.whl", hash = "sha256:aabeec89bb3e3162136eea492cea7ee8882ddcda2201f05caecdece192c40896"}, - {file = "numba-0.53.1-cp38-cp38-win_amd64.whl", hash = "sha256:1895ebd256819ff22256cd6fe24aa8f7470b18acc73e7917e8e93c9ac7f565dc"}, - {file = "numba-0.53.1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:224d197a46a9e602a16780d87636e199e2cdef528caef084a4d8fd8909c2455c"}, - {file = "numba-0.53.1-cp39-cp39-manylinux2014_i686.whl", hash = "sha256:aba7acb247a09d7f12bd17a8e28bbb04e8adef9fc20ca29835d03b7894e1b49f"}, - {file = "numba-0.53.1-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:bd126f1f49da6fc4b3169cf1d96f1c3b3f84a7badd11fe22da344b923a00e744"}, - {file = "numba-0.53.1-cp39-cp39-win32.whl", hash = "sha256:0ef9d1f347b251282ae46e5a5033600aa2d0dfa1ee8c16cb8137b8cd6f79e221"}, - {file = "numba-0.53.1-cp39-cp39-win_amd64.whl", hash = "sha256:17146885cbe4e89c9d4abd4fcb8886dee06d4591943dc4343500c36ce2fcfa69"}, - {file = "numba-0.53.1.tar.gz", hash = "sha256:9cd4e5216acdc66c4e9dab2dfd22ddb5bef151185c070d4a3cd8e78638aff5b0"}, -] -numpy = [ - {file = "numpy-1.22.3-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:92bfa69cfbdf7dfc3040978ad09a48091143cffb778ec3b03fa170c494118d75"}, - {file = "numpy-1.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8251ed96f38b47b4295b1ae51631de7ffa8260b5b087808ef09a39a9d66c97ab"}, - {file = "numpy-1.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48a3aecd3b997bf452a2dedb11f4e79bc5bfd21a1d4cc760e703c31d57c84b3e"}, - {file = "numpy-1.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3bae1a2ed00e90b3ba5f7bd0a7c7999b55d609e0c54ceb2b076a25e345fa9f4"}, - {file = "numpy-1.22.3-cp310-cp310-win32.whl", hash = "sha256:f950f8845b480cffe522913d35567e29dd381b0dc7e4ce6a4a9f9156417d2430"}, - {file = "numpy-1.22.3-cp310-cp310-win_amd64.whl", hash = "sha256:08d9b008d0156c70dc392bb3ab3abb6e7a711383c3247b410b39962263576cd4"}, - {file = "numpy-1.22.3-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:201b4d0552831f7250a08d3b38de0d989d6f6e4658b709a02a73c524ccc6ffce"}, - {file = "numpy-1.22.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f8c1f39caad2c896bc0018f699882b345b2a63708008be29b1f355ebf6f933fe"}, - {file = "numpy-1.22.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:568dfd16224abddafb1cbcce2ff14f522abe037268514dd7e42c6776a1c3f8e5"}, - {file = "numpy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1"}, - {file = "numpy-1.22.3-cp38-cp38-win32.whl", hash = "sha256:e7927a589df200c5e23c57970bafbd0cd322459aa7b1ff73b7c2e84d6e3eae62"}, - {file = "numpy-1.22.3-cp38-cp38-win_amd64.whl", hash = "sha256:07a8c89a04997625236c5ecb7afe35a02af3896c8aa01890a849913a2309c676"}, - {file = "numpy-1.22.3-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:2c10a93606e0b4b95c9b04b77dc349b398fdfbda382d2a39ba5a822f669a0123"}, - {file = "numpy-1.22.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fade0d4f4d292b6f39951b6836d7a3c7ef5b2347f3c420cd9820a1d90d794802"}, - {file = "numpy-1.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bfb1bb598e8229c2d5d48db1860bcf4311337864ea3efdbe1171fb0c5da515d"}, - {file = "numpy-1.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97098b95aa4e418529099c26558eeb8486e66bd1e53a6b606d684d0c3616b168"}, - {file = "numpy-1.22.3-cp39-cp39-win32.whl", hash = "sha256:fdf3c08bce27132395d3c3ba1503cac12e17282358cb4bddc25cc46b0aca07aa"}, - {file = "numpy-1.22.3-cp39-cp39-win_amd64.whl", hash = "sha256:639b54cdf6aa4f82fe37ebf70401bbb74b8508fddcf4797f9fe59615b8c5813a"}, - {file = "numpy-1.22.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c34ea7e9d13a70bf2ab64a2532fe149a9aced424cd05a2c4ba662fd989e3e45f"}, - {file = "numpy-1.22.3.zip", hash = "sha256:dbc7601a3b7472d559dc7b933b18b4b66f9aa7452c120e87dfb33d02008c8a18"}, -] -oauthlib = [ - {file = "oauthlib-3.2.0-py3-none-any.whl", hash = "sha256:6db33440354787f9b7f3a6dbd4febf5d0f93758354060e802f6c06cb493022fe"}, - {file = "oauthlib-3.2.0.tar.gz", hash = "sha256:23a8208d75b902797ea29fd31fa80a15ed9dc2c6c16fe73f5d346f83f6fa27a2"}, -] -opencv-python = [ - {file = "opencv-python-4.5.5.64.tar.gz", hash = "sha256:f65de0446a330c3b773cd04ba10345d8ce1b15dcac3f49770204e37602d0b3f7"}, - {file = "opencv_python-4.5.5.64-cp36-abi3-macosx_10_15_x86_64.whl", hash = "sha256:a512a0c59b6fec0fac3844b2f47d6ecb1a9d18d235e6c5491ce8dbbe0663eae8"}, - {file = "opencv_python-4.5.5.64-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca6138b6903910e384067d001763d40f97656875487381aed32993b076f44375"}, - {file = "opencv_python-4.5.5.64-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b293ced62f4360d9f11cf72ae7e9df95320ff7bf5b834d87546f844e838c0c35"}, - {file = "opencv_python-4.5.5.64-cp36-abi3-win32.whl", hash = "sha256:6247e584813c00c3b9ed69a795da40d2c153dc923d0182e957e1c2f00a554ac2"}, - {file = "opencv_python-4.5.5.64-cp36-abi3-win_amd64.whl", hash = "sha256:408d5332550287aa797fd06bef47b2dfed163c6787668cc82ef9123a9484b56a"}, - {file = "opencv_python-4.5.5.64-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:7787bb017ae93d5f9bb1b817ac8e13e45dd193743cb648498fcab21d00cf20a3"}, -] +murmurhash = [] +nbclassic = [] +nbclient = [] +nbconvert = [] +nbformat = [] +nest-asyncio = [] +notebook = [] +notebook-shim = [] +numba = [] +numpy = [] +oauthlib = [] +opencv-python = [] opt-einsum = [ {file = "opt_einsum-3.3.0-py3-none-any.whl", hash = "sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147"}, {file = "opt_einsum-3.3.0.tar.gz", hash = "sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549"}, ] -packaging = [ - {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, - {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, -] -pandas = [ - {file = "pandas-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3dfb32ed50122fe8c5e7f2b8d97387edd742cc78f9ec36f007ee126cd3720907"}, - {file = "pandas-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0259cd11e7e6125aaea3af823b80444f3adad6149ff4c97fef760093598b3e34"}, - {file = "pandas-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:96e9ece5759f9b47ae43794b6359bbc54805d76e573b161ae770c1ea59393106"}, - {file = "pandas-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508c99debccd15790d526ce6b1624b97a5e1e4ca5b871319fb0ebfd46b8f4dad"}, - {file = "pandas-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6a7bbbb7950063bfc942f8794bc3e31697c020a14f1cd8905fc1d28ec674a01"}, - {file = "pandas-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:c614001129b2a5add5e3677c3a213a9e6fd376204cb8d17c04e84ff7dfc02a73"}, - {file = "pandas-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:4e1176f45981c8ccc8161bc036916c004ca51037a7ed73f2d2a9857e6dbe654f"}, - {file = "pandas-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bbb15ad79050e8b8d39ec40dd96a30cd09b886a2ae8848d0df1abba4d5502a67"}, - {file = "pandas-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6d6ad1da00c7cc7d8dd1559a6ba59ba3973be6b15722d49738b2be0977eb8a0c"}, - {file = "pandas-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:358b0bc98a5ff067132d23bf7a2242ee95db9ea5b7bbc401cf79205f11502fd3"}, - {file = "pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee"}, - {file = "pandas-1.4.1-cp38-cp38-win32.whl", hash = "sha256:04dd15d9db538470900c851498e532ef28d4e56bfe72c9523acb32042de43dfb"}, - {file = "pandas-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:1b384516dbb4e6aae30e3464c2e77c563da5980440fbdfbd0968e3942f8f9d70"}, - {file = "pandas-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f02e85e6d832be37d7f16cf6ac8bb26b519ace3e5f3235564a91c7f658ab2a43"}, - {file = "pandas-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0b1a13f647e4209ed7dbb5da3497891d0045da9785327530ab696417ef478f84"}, - {file = "pandas-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:19f7c632436b1b4f84615c3b127bbd7bc603db95e3d4332ed259dc815c9aaa26"}, - {file = "pandas-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ea47ba1d6f359680130bd29af497333be6110de8f4c35b9211eec5a5a9630fa"}, - {file = "pandas-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e5a7a1e0ecaac652326af627a3eca84886da9e667d68286866d4e33f6547caf"}, - {file = "pandas-1.4.1-cp39-cp39-win32.whl", hash = "sha256:1d85d5f6be66dfd6d1d8d13b9535e342a2214260f1852654b19fa4d7b8d1218b"}, - {file = "pandas-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:3129a35d9dad1d80c234dd78f8f03141b914395d23f97cf92a366dcd19f8f8bf"}, - {file = "pandas-1.4.1.tar.gz", hash = "sha256:8db93ec98ac7cb5f8ac1420c10f5e3c43533153f253fe7fb6d891cf5aa2b80d2"}, +outputformat = [ + {file = "outputformat-0.1.3.tar.gz", hash = "sha256:160e2b38419c7914ccc675b3ea71135375755b8cdcad32f0da11e428d1b7638d"}, ] +packaging = [] +pandas = [] pandocfilters = [ {file = "pandocfilters-1.5.0-py2.py3-none-any.whl", hash = "sha256:33aae3f25fd1a026079f5d27bdd52496f0e0803b3469282162bafdcbdf6ef14f"}, {file = "pandocfilters-1.5.0.tar.gz", hash = "sha256:0b679503337d233b4339a817bfc8c50064e2eff681314376a47cb582305a7a38"}, @@ -2782,6 +2755,7 @@ parso = [ {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, ] +pathy = [] pexpect = [ {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, @@ -2790,117 +2764,15 @@ pickleshare = [ {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, ] -pillow = [ - {file = "Pillow-9.0.1-1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a5d24e1d674dd9d72c66ad3ea9131322819ff86250b30dc5821cbafcfa0b96b4"}, - {file = "Pillow-9.0.1-1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2632d0f846b7c7600edf53c48f8f9f1e13e62f66a6dbc15191029d950bfed976"}, - {file = "Pillow-9.0.1-1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b9618823bd237c0d2575283f2939655f54d51b4527ec3972907a927acbcc5bfc"}, - {file = "Pillow-9.0.1-cp310-cp310-macosx_10_10_universal2.whl", hash = "sha256:9bfdb82cdfeccec50aad441afc332faf8606dfa5e8efd18a6692b5d6e79f00fd"}, - {file = "Pillow-9.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5100b45a4638e3c00e4d2320d3193bdabb2d75e79793af7c3eb139e4f569f16f"}, - {file = "Pillow-9.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:528a2a692c65dd5cafc130de286030af251d2ee0483a5bf50c9348aefe834e8a"}, - {file = "Pillow-9.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0f29d831e2151e0b7b39981756d201f7108d3d215896212ffe2e992d06bfe049"}, - {file = "Pillow-9.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:855c583f268edde09474b081e3ddcd5cf3b20c12f26e0d434e1386cc5d318e7a"}, - {file = "Pillow-9.0.1-cp310-cp310-win32.whl", hash = "sha256:d9d7942b624b04b895cb95af03a23407f17646815495ce4547f0e60e0b06f58e"}, - {file = "Pillow-9.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:81c4b81611e3a3cb30e59b0cf05b888c675f97e3adb2c8672c3154047980726b"}, - {file = "Pillow-9.0.1-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:413ce0bbf9fc6278b2d63309dfeefe452835e1c78398efb431bab0672fe9274e"}, - {file = "Pillow-9.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80fe64a6deb6fcfdf7b8386f2cf216d329be6f2781f7d90304351811fb591360"}, - {file = "Pillow-9.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cef9c85ccbe9bee00909758936ea841ef12035296c748aaceee535969e27d31b"}, - {file = "Pillow-9.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d19397351f73a88904ad1aee421e800fe4bbcd1aeee6435fb62d0a05ccd1030"}, - {file = "Pillow-9.0.1-cp37-cp37m-win32.whl", hash = "sha256:d21237d0cd37acded35154e29aec853e945950321dd2ffd1a7d86fe686814669"}, - {file = "Pillow-9.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:ede5af4a2702444a832a800b8eb7f0a7a1c0eed55b644642e049c98d589e5092"}, - {file = "Pillow-9.0.1-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:b5b3f092fe345c03bca1e0b687dfbb39364b21ebb8ba90e3fa707374b7915204"}, - {file = "Pillow-9.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:335ace1a22325395c4ea88e00ba3dc89ca029bd66bd5a3c382d53e44f0ccd77e"}, - {file = "Pillow-9.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db6d9fac65bd08cea7f3540b899977c6dee9edad959fa4eaf305940d9cbd861c"}, - {file = "Pillow-9.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f154d173286a5d1863637a7dcd8c3437bb557520b01bddb0be0258dcb72696b5"}, - {file = "Pillow-9.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14d4b1341ac07ae07eb2cc682f459bec932a380c3b122f5540432d8977e64eae"}, - {file = "Pillow-9.0.1-cp38-cp38-win32.whl", hash = "sha256:effb7749713d5317478bb3acb3f81d9d7c7f86726d41c1facca068a04cf5bb4c"}, - {file = "Pillow-9.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:7f7609a718b177bf171ac93cea9fd2ddc0e03e84d8fa4e887bdfc39671d46b00"}, - {file = "Pillow-9.0.1-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:80ca33961ced9c63358056bd08403ff866512038883e74f3a4bf88ad3eb66838"}, - {file = "Pillow-9.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1c3c33ac69cf059bbb9d1a71eeaba76781b450bc307e2291f8a4764d779a6b28"}, - {file = "Pillow-9.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12875d118f21cf35604176872447cdb57b07126750a33748bac15e77f90f1f9c"}, - {file = "Pillow-9.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:514ceac913076feefbeaf89771fd6febde78b0c4c1b23aaeab082c41c694e81b"}, - {file = "Pillow-9.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3c5c79ab7dfce6d88f1ba639b77e77a17ea33a01b07b99840d6ed08031cb2a7"}, - {file = "Pillow-9.0.1-cp39-cp39-win32.whl", hash = "sha256:718856856ba31f14f13ba885ff13874be7fefc53984d2832458f12c38205f7f7"}, - {file = "Pillow-9.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:f25ed6e28ddf50de7e7ea99d7a976d6a9c415f03adcaac9c41ff6ff41b6d86ac"}, - {file = "Pillow-9.0.1-pp37-pypy37_pp73-macosx_10_10_x86_64.whl", hash = "sha256:011233e0c42a4a7836498e98c1acf5e744c96a67dd5032a6f666cc1fb97eab97"}, - {file = "Pillow-9.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:253e8a302a96df6927310a9d44e6103055e8fb96a6822f8b7f514bb7ef77de56"}, - {file = "Pillow-9.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6295f6763749b89c994fcb6d8a7f7ce03c3992e695f89f00b741b4580b199b7e"}, - {file = "Pillow-9.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:a9f44cd7e162ac6191491d7249cceb02b8116b0f7e847ee33f739d7cb1ea1f70"}, - {file = "Pillow-9.0.1.tar.gz", hash = "sha256:6c8bc8238a7dfdaf7a75f5ec5a663f4173f8c367e5a39f87e720495e1eed75fa"}, -] -plotly = [ - {file = "plotly-5.6.0-py2.py3-none-any.whl", hash = "sha256:20277d211ea0e00e2a86d31e9f865a1ab45a7b17576f3bb865992ecbf15db093"}, - {file = "plotly-5.6.0.tar.gz", hash = "sha256:d86e44ebde38f4753dff982ab9b5e03cf872aab8fdf53a403e999ed378154331"}, -] -prometheus-client = [ - {file = "prometheus_client-0.13.1-py3-none-any.whl", hash = "sha256:357a447fd2359b0a1d2e9b311a0c5778c330cfbe186d880ad5a6b39884652316"}, - {file = "prometheus_client-0.13.1.tar.gz", hash = "sha256:ada41b891b79fca5638bd5cfe149efa86512eaa55987893becd2c6d8d0a5dfc5"}, -] -prompt-toolkit = [ - {file = "prompt_toolkit-3.0.28-py3-none-any.whl", hash = "sha256:30129d870dcb0b3b6a53efdc9d0a83ea96162ffd28ffe077e94215b233dc670c"}, - {file = "prompt_toolkit-3.0.28.tar.gz", hash = "sha256:9f1cd16b1e86c2968f2519d7fb31dd9d669916f515612c269d14e9ed52b51650"}, -] -protobuf = [ - {file = "protobuf-3.19.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f51d5a9f137f7a2cec2d326a74b6e3fc79d635d69ffe1b036d39fc7d75430d37"}, - {file = "protobuf-3.19.4-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:09297b7972da685ce269ec52af761743714996b4381c085205914c41fcab59fb"}, - {file = "protobuf-3.19.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:072fbc78d705d3edc7ccac58a62c4c8e0cec856987da7df8aca86e647be4e35c"}, - {file = "protobuf-3.19.4-cp310-cp310-win32.whl", hash = "sha256:7bb03bc2873a2842e5ebb4801f5c7ff1bfbdf426f85d0172f7644fcda0671ae0"}, - {file = "protobuf-3.19.4-cp310-cp310-win_amd64.whl", hash = "sha256:f358aa33e03b7a84e0d91270a4d4d8f5df6921abe99a377828839e8ed0c04e07"}, - {file = "protobuf-3.19.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:1c91ef4110fdd2c590effb5dca8fdbdcb3bf563eece99287019c4204f53d81a4"}, - {file = "protobuf-3.19.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c438268eebb8cf039552897d78f402d734a404f1360592fef55297285f7f953f"}, - {file = "protobuf-3.19.4-cp36-cp36m-win32.whl", hash = "sha256:835a9c949dc193953c319603b2961c5c8f4327957fe23d914ca80d982665e8ee"}, - {file = "protobuf-3.19.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4276cdec4447bd5015453e41bdc0c0c1234eda08420b7c9a18b8d647add51e4b"}, - {file = "protobuf-3.19.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6cbc312be5e71869d9d5ea25147cdf652a6781cf4d906497ca7690b7b9b5df13"}, - {file = "protobuf-3.19.4-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:54a1473077f3b616779ce31f477351a45b4fef8c9fd7892d6d87e287a38df368"}, - {file = "protobuf-3.19.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:435bb78b37fc386f9275a7035fe4fb1364484e38980d0dd91bc834a02c5ec909"}, - {file = "protobuf-3.19.4-cp37-cp37m-win32.whl", hash = "sha256:16f519de1313f1b7139ad70772e7db515b1420d208cb16c6d7858ea989fc64a9"}, - {file = "protobuf-3.19.4-cp37-cp37m-win_amd64.whl", hash = "sha256:cdc076c03381f5c1d9bb1abdcc5503d9ca8b53cf0a9d31a9f6754ec9e6c8af0f"}, - {file = "protobuf-3.19.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:69da7d39e39942bd52848438462674c463e23963a1fdaa84d88df7fbd7e749b2"}, - {file = "protobuf-3.19.4-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:48ed3877fa43e22bcacc852ca76d4775741f9709dd9575881a373bd3e85e54b2"}, - {file = "protobuf-3.19.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7"}, - {file = "protobuf-3.19.4-cp38-cp38-win32.whl", hash = "sha256:b38057450a0c566cbd04890a40edf916db890f2818e8682221611d78dc32ae26"}, - {file = "protobuf-3.19.4-cp38-cp38-win_amd64.whl", hash = "sha256:7ca7da9c339ca8890d66958f5462beabd611eca6c958691a8fe6eccbd1eb0c6e"}, - {file = "protobuf-3.19.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:36cecbabbda242915529b8ff364f2263cd4de7c46bbe361418b5ed859677ba58"}, - {file = "protobuf-3.19.4-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:c1068287025f8ea025103e37d62ffd63fec8e9e636246b89c341aeda8a67c934"}, - {file = "protobuf-3.19.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96bd766831596d6014ca88d86dc8fe0fb2e428c0b02432fd9db3943202bf8c5e"}, - {file = "protobuf-3.19.4-cp39-cp39-win32.whl", hash = "sha256:84123274d982b9e248a143dadd1b9815049f4477dc783bf84efe6250eb4b836a"}, - {file = "protobuf-3.19.4-cp39-cp39-win_amd64.whl", hash = "sha256:3112b58aac3bac9c8be2b60a9daf6b558ca3f7681c130dcdd788ade7c9ffbdca"}, - {file = "protobuf-3.19.4-py2.py3-none-any.whl", hash = "sha256:8961c3a78ebfcd000920c9060a262f082f29838682b1f7201889300c1fbe0616"}, - {file = "protobuf-3.19.4.tar.gz", hash = "sha256:9df0c10adf3e83015ced42a9a7bd64e13d06c4cf45c340d2c63020ea04499d0a"}, -] -psutil = [ - {file = "psutil-5.9.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:55ce319452e3d139e25d6c3f85a1acf12d1607ddedea5e35fb47a552c051161b"}, - {file = "psutil-5.9.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:7336292a13a80eb93c21f36bde4328aa748a04b68c13d01dfddd67fc13fd0618"}, - {file = "psutil-5.9.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:cb8d10461c1ceee0c25a64f2dd54872b70b89c26419e147a05a10b753ad36ec2"}, - {file = "psutil-5.9.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:7641300de73e4909e5d148e90cc3142fb890079e1525a840cf0dfd39195239fd"}, - {file = "psutil-5.9.0-cp27-none-win32.whl", hash = "sha256:ea42d747c5f71b5ccaa6897b216a7dadb9f52c72a0fe2b872ef7d3e1eacf3ba3"}, - {file = "psutil-5.9.0-cp27-none-win_amd64.whl", hash = "sha256:ef216cc9feb60634bda2f341a9559ac594e2eeaadd0ba187a4c2eb5b5d40b91c"}, - {file = "psutil-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90a58b9fcae2dbfe4ba852b57bd4a1dded6b990a33d6428c7614b7d48eccb492"}, - {file = "psutil-5.9.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff0d41f8b3e9ebb6b6110057e40019a432e96aae2008951121ba4e56040b84f3"}, - {file = "psutil-5.9.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:742c34fff804f34f62659279ed5c5b723bb0195e9d7bd9907591de9f8f6558e2"}, - {file = "psutil-5.9.0-cp310-cp310-win32.whl", hash = "sha256:8293942e4ce0c5689821f65ce6522ce4786d02af57f13c0195b40e1edb1db61d"}, - {file = "psutil-5.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:9b51917c1af3fa35a3f2dabd7ba96a2a4f19df3dec911da73875e1edaf22a40b"}, - {file = "psutil-5.9.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e9805fed4f2a81de98ae5fe38b75a74c6e6ad2df8a5c479594c7629a1fe35f56"}, - {file = "psutil-5.9.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c51f1af02334e4b516ec221ee26b8fdf105032418ca5a5ab9737e8c87dafe203"}, - {file = "psutil-5.9.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32acf55cb9a8cbfb29167cd005951df81b567099295291bcfd1027365b36591d"}, - {file = "psutil-5.9.0-cp36-cp36m-win32.whl", hash = "sha256:e5c783d0b1ad6ca8a5d3e7b680468c9c926b804be83a3a8e95141b05c39c9f64"}, - {file = "psutil-5.9.0-cp36-cp36m-win_amd64.whl", hash = "sha256:d62a2796e08dd024b8179bd441cb714e0f81226c352c802fca0fd3f89eeacd94"}, - {file = "psutil-5.9.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d00a664e31921009a84367266b35ba0aac04a2a6cad09c550a89041034d19a0"}, - {file = "psutil-5.9.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7779be4025c540d1d65a2de3f30caeacc49ae7a2152108adeaf42c7534a115ce"}, - {file = "psutil-5.9.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:072664401ae6e7c1bfb878c65d7282d4b4391f1bc9a56d5e03b5a490403271b5"}, - {file = "psutil-5.9.0-cp37-cp37m-win32.whl", hash = "sha256:df2c8bd48fb83a8408c8390b143c6a6fa10cb1a674ca664954de193fdcab36a9"}, - {file = "psutil-5.9.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1d7b433519b9a38192dfda962dd8f44446668c009833e1429a52424624f408b4"}, - {file = "psutil-5.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c3400cae15bdb449d518545cbd5b649117de54e3596ded84aacabfbb3297ead2"}, - {file = "psutil-5.9.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2237f35c4bbae932ee98902a08050a27821f8f6dfa880a47195e5993af4702d"}, - {file = "psutil-5.9.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1070a9b287846a21a5d572d6dddd369517510b68710fca56b0e9e02fd24bed9a"}, - {file = "psutil-5.9.0-cp38-cp38-win32.whl", hash = "sha256:76cebf84aac1d6da5b63df11fe0d377b46b7b500d892284068bacccf12f20666"}, - {file = "psutil-5.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:3151a58f0fbd8942ba94f7c31c7e6b310d2989f4da74fcbf28b934374e9bf841"}, - {file = "psutil-5.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:539e429da49c5d27d5a58e3563886057f8fc3868a5547b4f1876d9c0f007bccf"}, - {file = "psutil-5.9.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58c7d923dc209225600aec73aa2c4ae8ea33b1ab31bc11ef8a5933b027476f07"}, - {file = "psutil-5.9.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3611e87eea393f779a35b192b46a164b1d01167c9d323dda9b1e527ea69d697d"}, - {file = "psutil-5.9.0-cp39-cp39-win32.whl", hash = "sha256:4e2fb92e3aeae3ec3b7b66c528981fd327fb93fd906a77215200404444ec1845"}, - {file = "psutil-5.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d190ee2eaef7831163f254dc58f6d2e2a22e27382b936aab51c835fc080c3d3"}, - {file = "psutil-5.9.0.tar.gz", hash = "sha256:869842dbd66bb80c3217158e629d6fceaecc3a3166d3d1faee515b05dd26ca25"}, -] +pillow = [] +pkgutil-resolve-name = [] +platformdirs = [] +plotly = [] +preshed = [] +prometheus-client = [] +prompt-toolkit = [] +protobuf = [] +psutil = [] ptyprocess = [ {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, @@ -2909,10 +2781,6 @@ pure-eval = [ {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, ] -py = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] pyasn1 = [ {file = "pyasn1-0.4.8-py2.4.egg", hash = "sha256:fec3e9d8e36808a28efb59b489e4528c10ad0f480e57dcc32b4de5c9d8c9fdf3"}, {file = "pyasn1-0.4.8-py2.5.egg", hash = "sha256:0458773cfe65b153891ac249bcf1b5f8f320b7c2ce462151f8fa74de8934becf"}, @@ -2947,63 +2815,38 @@ pycparser = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, ] -pygments = [ - {file = "Pygments-2.11.2-py3-none-any.whl", hash = "sha256:44238f1b60a76d78fc8ca0528ee429702aae011c265fe6a8dd8b63049ae41c65"}, - {file = "Pygments-2.11.2.tar.gz", hash = "sha256:4e426f72023d88d03b2fa258de560726ce890ff3b630f88c21cbb8b2503b8c6a"}, -] -pymupdf = [ - {file = "PyMuPDF-1.19.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:945529b7868f9fe290b11dfbc37e2b9012610fac9763686ccf91a4d968305c5e"}, - {file = "PyMuPDF-1.19.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38188f88a6e648b9f3a87d29de5b4ed52f910827a15859b183f1321c68e6ac00"}, - {file = "PyMuPDF-1.19.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9998f7dfa0f99d6c2c3eb0dcfbfd44433247c23c4b781bc45f76dab421bc554b"}, - {file = "PyMuPDF-1.19.6-cp310-cp310-win32.whl", hash = "sha256:1e7b85e2611a9cca7a410e4c5a510a11131de7c5da9379e46615a8d3adfa6df5"}, - {file = "PyMuPDF-1.19.6-cp310-cp310-win_amd64.whl", hash = "sha256:909fb46900e7422515291761a1294902cf163226ec8918ea4c3454537336dfeb"}, - {file = "PyMuPDF-1.19.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:39192c009afd8dd877a79ed02519ec8d17699bec9e9543115e490f06a553e200"}, - {file = "PyMuPDF-1.19.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11b913664c059146e512e8559ebd9f976570ef21c0338c953836bc02051c1d7e"}, - {file = "PyMuPDF-1.19.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13ed689e5ad4c3adecb7586050de8baaa1819f48e2c57ca4e87f80e3b2727cb3"}, - {file = "PyMuPDF-1.19.6-cp37-cp37m-win32.whl", hash = "sha256:b0db8c81b6c781e373ed005f7595e49b760f91edb3b36d1dc69ec29b4fad34f8"}, - {file = "PyMuPDF-1.19.6-cp37-cp37m-win_amd64.whl", hash = "sha256:164dc67f1f5db3b22207b2aeba0fadff0503123c8f31c46768b7da7d3595a181"}, - {file = "PyMuPDF-1.19.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:05c54acf69ee55ef97453f9c52982ef2839c188fe464d6b4cdc053bd4c6298f1"}, - {file = "PyMuPDF-1.19.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f04086036d40af50e5d6f54e949fa12eacda2d752562a2f85215763b137bf864"}, - {file = "PyMuPDF-1.19.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c03004415a6d140b2c4bb494bb507c9ccbd55d713407e3b5bc1dd35fa45f2be0"}, - {file = "PyMuPDF-1.19.6-cp38-cp38-win32.whl", hash = "sha256:a3b8e5c2de6192c89f379283aa07aa7fd044098dab43a8cd3ac172e961caf286"}, - {file = "PyMuPDF-1.19.6-cp38-cp38-win_amd64.whl", hash = "sha256:4c5e7211b85e13050ac6e25879d4f0476b7a04f23bd3b6442489cec9f8da8418"}, - {file = "PyMuPDF-1.19.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f3f96bd465e9e0e2960bb70e92233af0865181b9dd8ac5bc6b159d79584df2fe"}, - {file = "PyMuPDF-1.19.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7281324a0325dd30c033644cc8654167dcbfe47c4b1d49805d407fa5a64ce76b"}, - {file = "PyMuPDF-1.19.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:976fb0e93f025617890f8f8d8517371684131aa0e9fc0c1d0b4cd8bd564cce27"}, - {file = "PyMuPDF-1.19.6-cp39-cp39-win32.whl", hash = "sha256:dffe67c5574d0ebb1e39b5ecf806fb4fd4ddb01bee5630f516ece4468252c9f0"}, - {file = "PyMuPDF-1.19.6-cp39-cp39-win_amd64.whl", hash = "sha256:cfd6c666b02a066e9e76d9ce8ca5e7fa4f2bf7a8ce6934cd2837b08509d46f8e"}, - {file = "PyMuPDF-1.19.6.tar.gz", hash = "sha256:ef3d13e27f1585d776f6a2597f113aabd28d36b648b983a72850b21c5399ab08"}, -] -pynndescent = [ - {file = "pynndescent-0.5.6.tar.gz", hash = "sha256:61fb31885baac469d67933e2c7c935b6edebb06ee498e2f0f9dfc97c59d3725c"}, -] +pydantic = [ + {file = "pydantic-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:05ddfd37c1720c392f4e0d43c484217b7521558302e7069ce8d318438d297739"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:a7c6002203fe2c5a1b5cbb141bb85060cbff88c2d78eccbc72d97eb7022c43e4"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_i686.whl", hash = "sha256:589eb6cd6361e8ac341db97602eb7f354551482368a37f4fd086c0733548308e"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_x86_64.whl", hash = "sha256:10e5622224245941efc193ad1d159887872776df7a8fd592ed746aa25d071840"}, + {file = "pydantic-1.8.2-cp36-cp36m-win_amd64.whl", hash = "sha256:99a9fc39470010c45c161a1dc584997f1feb13f689ecf645f59bb4ba623e586b"}, + {file = "pydantic-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a83db7205f60c6a86f2c44a61791d993dff4b73135df1973ecd9eed5ea0bda20"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:41b542c0b3c42dc17da70554bc6f38cbc30d7066d2c2815a94499b5684582ecb"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux2014_i686.whl", hash = "sha256:ea5cb40a3b23b3265f6325727ddfc45141b08ed665458be8c6285e7b85bd73a1"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:18b5ea242dd3e62dbf89b2b0ec9ba6c7b5abaf6af85b95a97b00279f65845a23"}, + {file = "pydantic-1.8.2-cp37-cp37m-win_amd64.whl", hash = "sha256:234a6c19f1c14e25e362cb05c68afb7f183eb931dd3cd4605eafff055ebbf287"}, + {file = "pydantic-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:021ea0e4133e8c824775a0cfe098677acf6fa5a3cbf9206a376eed3fc09302cd"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e710876437bc07bd414ff453ac8ec63d219e7690128d925c6e82889d674bb505"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux2014_i686.whl", hash = "sha256:ac8eed4ca3bd3aadc58a13c2aa93cd8a884bcf21cb019f8cfecaae3b6ce3746e"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:4a03cbbe743e9c7247ceae6f0d8898f7a64bb65800a45cbdc52d65e370570820"}, + {file = "pydantic-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:8621559dcf5afacf0069ed194278f35c255dc1a1385c28b32dd6c110fd6531b3"}, + {file = "pydantic-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8b223557f9510cf0bfd8b01316bf6dd281cf41826607eada99662f5e4963f316"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:244ad78eeb388a43b0c927e74d3af78008e944074b7d0f4f696ddd5b2af43c62"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux2014_i686.whl", hash = "sha256:05ef5246a7ffd2ce12a619cbb29f3307b7c4509307b1b49f456657b43529dc6f"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:54cd5121383f4a461ff7644c7ca20c0419d58052db70d8791eacbbe31528916b"}, + {file = "pydantic-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:4be75bebf676a5f0f87937c6ddb061fa39cbea067240d98e298508c1bda6f3f3"}, + {file = "pydantic-1.8.2-py3-none-any.whl", hash = "sha256:fec866a0b59f372b7e776f2d7308511784dace622e0992a0b59ea3ccee0ae833"}, + {file = "pydantic-1.8.2.tar.gz", hash = "sha256:26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b"}, +] +pygments = [] +pymupdf = [] +pynndescent = [] pyparsing = [ - {file = "pyparsing-3.0.7-py3-none-any.whl", hash = "sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484"}, - {file = "pyparsing-3.0.7.tar.gz", hash = "sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"}, -] -pyrsistent = [ - {file = "pyrsistent-0.18.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:df46c854f490f81210870e509818b729db4488e1f30f2a1ce1698b2295a878d1"}, - {file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d45866ececf4a5fff8742c25722da6d4c9e180daa7b405dc0a2a2790d668c26"}, - {file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4ed6784ceac462a7d6fcb7e9b663e93b9a6fb373b7f43594f9ff68875788e01e"}, - {file = "pyrsistent-0.18.1-cp310-cp310-win32.whl", hash = "sha256:e4f3149fd5eb9b285d6bfb54d2e5173f6a116fe19172686797c056672689daf6"}, - {file = "pyrsistent-0.18.1-cp310-cp310-win_amd64.whl", hash = "sha256:636ce2dc235046ccd3d8c56a7ad54e99d5c1cd0ef07d9ae847306c91d11b5fec"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e92a52c166426efbe0d1ec1332ee9119b6d32fc1f0bbfd55d5c1088070e7fc1b"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7a096646eab884bf8bed965bad63ea327e0d0c38989fc83c5ea7b8a87037bfc"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cdfd2c361b8a8e5d9499b9082b501c452ade8bbf42aef97ea04854f4a3f43b22"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-win32.whl", hash = "sha256:7ec335fc998faa4febe75cc5268a9eac0478b3f681602c1f27befaf2a1abe1d8"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-win_amd64.whl", hash = "sha256:6455fc599df93d1f60e1c5c4fe471499f08d190d57eca040c0ea182301321286"}, - {file = "pyrsistent-0.18.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fd8da6d0124efa2f67d86fa70c851022f87c98e205f0594e1fae044e7119a5a6"}, - {file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bfe2388663fd18bd8ce7db2c91c7400bf3e1a9e8bd7d63bf7e77d39051b85ec"}, - {file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e3e1fcc45199df76053026a51cc59ab2ea3fc7c094c6627e93b7b44cdae2c8c"}, - {file = "pyrsistent-0.18.1-cp38-cp38-win32.whl", hash = "sha256:b568f35ad53a7b07ed9b1b2bae09eb15cdd671a5ba5d2c66caee40dbf91c68ca"}, - {file = "pyrsistent-0.18.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1b96547410f76078eaf66d282ddca2e4baae8964364abb4f4dcdde855cd123a"}, - {file = "pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5"}, - {file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045"}, - {file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:914474c9f1d93080338ace89cb2acee74f4f666fb0424896fcfb8d86058bf17c"}, - {file = "pyrsistent-0.18.1-cp39-cp39-win32.whl", hash = "sha256:1b34eedd6812bf4d33814fca1b66005805d3640ce53140ab8bbb1e2651b0d9bc"}, - {file = "pyrsistent-0.18.1-cp39-cp39-win_amd64.whl", hash = "sha256:e24a828f57e0c337c8d8bb9f6b12f09dfdf0273da25fda9e314f0b684b415a07"}, - {file = "pyrsistent-0.18.1.tar.gz", hash = "sha256:d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96"}, + {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, + {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, ] +pyrsistent = [] pysocks = [ {file = "PySocks-1.7.1-py27-none-any.whl", hash = "sha256:08e69f092cc6dbe92a0fdd16eeb9b9ffbc13cadfe5ca4c7bd92ffb078b293299"}, {file = "PySocks-1.7.1-py3-none-any.whl", hash = "sha256:2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5"}, @@ -3013,185 +2856,51 @@ python-dateutil = [ {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, ] -python-dotenv = [ - {file = "python-dotenv-0.20.0.tar.gz", hash = "sha256:b7e3b04a59693c42c36f9ab1cc2acc46fa5df8c78e178fc33a8d4cd05c8d498f"}, - {file = "python_dotenv-0.20.0-py3-none-any.whl", hash = "sha256:d92a187be61fe482e4fd675b6d52200e7be63a12b724abbf931a40ce4fa92938"}, -] -pytz = [ - {file = "pytz-2022.1-py2.py3-none-any.whl", hash = "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"}, - {file = "pytz-2022.1.tar.gz", hash = "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7"}, -] -pywin32 = [ - {file = "pywin32-303-cp310-cp310-win32.whl", hash = "sha256:6fed4af057039f309263fd3285d7b8042d41507343cd5fa781d98fcc5b90e8bb"}, - {file = "pywin32-303-cp310-cp310-win_amd64.whl", hash = "sha256:51cb52c5ec6709f96c3f26e7795b0bf169ee0d8395b2c1d7eb2c029a5008ed51"}, - {file = "pywin32-303-cp311-cp311-win32.whl", hash = "sha256:d9b5d87ca944eb3aa4cd45516203ead4b37ab06b8b777c54aedc35975dec0dee"}, - {file = "pywin32-303-cp311-cp311-win_amd64.whl", hash = "sha256:fcf44032f5b14fcda86028cdf49b6ebdaea091230eb0a757282aa656e4732439"}, - {file = "pywin32-303-cp36-cp36m-win32.whl", hash = "sha256:aad484d52ec58008ca36bd4ad14a71d7dd0a99db1a4ca71072213f63bf49c7d9"}, - {file = "pywin32-303-cp36-cp36m-win_amd64.whl", hash = "sha256:2a09632916b6bb231ba49983fe989f2f625cea237219530e81a69239cd0c4559"}, - {file = "pywin32-303-cp37-cp37m-win32.whl", hash = "sha256:b1675d82bcf6dbc96363fca747bac8bff6f6e4a447a4287ac652aa4b9adc796e"}, - {file = "pywin32-303-cp37-cp37m-win_amd64.whl", hash = "sha256:c268040769b48a13367221fced6d4232ed52f044ffafeda247bd9d2c6bdc29ca"}, - {file = "pywin32-303-cp38-cp38-win32.whl", hash = "sha256:5f9ec054f5a46a0f4dfd72af2ce1372f3d5a6e4052af20b858aa7df2df7d355b"}, - {file = "pywin32-303-cp38-cp38-win_amd64.whl", hash = "sha256:793bf74fce164bcffd9d57bb13c2c15d56e43c9542a7b9687b4fccf8f8a41aba"}, - {file = "pywin32-303-cp39-cp39-win32.whl", hash = "sha256:7d3271c98434617a11921c5ccf74615794d97b079e22ed7773790822735cc352"}, - {file = "pywin32-303-cp39-cp39-win_amd64.whl", hash = "sha256:79cbb862c11b9af19bcb682891c1b91942ec2ff7de8151e2aea2e175899cda34"}, -] -pywinpty = [ - {file = "pywinpty-2.0.5-cp310-none-win_amd64.whl", hash = "sha256:f86c76e2881c37e69678cbbf178109f8da1fa8584db24d58e1b9369b0276cfcb"}, - {file = "pywinpty-2.0.5-cp37-none-win_amd64.whl", hash = "sha256:ff9b52f182650cfdf3db1b264a6fe0963eb9d996a7a1fa843ac406c1e32111f8"}, - {file = "pywinpty-2.0.5-cp38-none-win_amd64.whl", hash = "sha256:651ee1467bd7eb6f64d44dbc954b7ab7d15ab6d8adacc4e13299692c67c5d5d2"}, - {file = "pywinpty-2.0.5-cp39-none-win_amd64.whl", hash = "sha256:e59a508ae78374febada3e53b5bbc90b5ad07ae68cbfd72a2e965f9793ae04f3"}, - {file = "pywinpty-2.0.5.tar.gz", hash = "sha256:e125d3f1804d8804952b13e33604ad2ca8b9b2cac92b27b521c005d1604794f8"}, -] +python-dotenv = [] +python-json-logger = [] +pytz = [] +pywin32 = [] +pywinpty = [] pyyaml = [ - {file = "PyYAML-5.4.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922"}, - {file = "PyYAML-5.4.1-cp27-cp27m-win32.whl", hash = "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393"}, - {file = "PyYAML-5.4.1-cp27-cp27m-win_amd64.whl", hash = "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8"}, - {file = "PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185"}, - {file = "PyYAML-5.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253"}, - {file = "PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc"}, - {file = "PyYAML-5.4.1-cp36-cp36m-win32.whl", hash = "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5"}, - {file = "PyYAML-5.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df"}, - {file = "PyYAML-5.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018"}, - {file = "PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63"}, - {file = "PyYAML-5.4.1-cp37-cp37m-win32.whl", hash = "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b"}, - {file = "PyYAML-5.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf"}, - {file = "PyYAML-5.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46"}, - {file = "PyYAML-5.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb"}, - {file = "PyYAML-5.4.1-cp38-cp38-win32.whl", hash = "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc"}, - {file = "PyYAML-5.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696"}, - {file = "PyYAML-5.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77"}, - {file = "PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183"}, - {file = "PyYAML-5.4.1-cp39-cp39-win32.whl", hash = "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10"}, - {file = "PyYAML-5.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db"}, - {file = "PyYAML-5.4.1.tar.gz", hash = "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"}, -] -pyzmq = [ - {file = "pyzmq-22.3.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:6b217b8f9dfb6628f74b94bdaf9f7408708cb02167d644edca33f38746ca12dd"}, - {file = "pyzmq-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2841997a0d85b998cbafecb4183caf51fd19c4357075dfd33eb7efea57e4c149"}, - {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f89468059ebc519a7acde1ee50b779019535db8dcf9b8c162ef669257fef7a93"}, - {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea12133df25e3a6918718fbb9a510c6ee5d3fdd5a346320421aac3882f4feeea"}, - {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76c532fd68b93998aab92356be280deec5de8f8fe59cd28763d2cc8a58747b7f"}, - {file = "pyzmq-22.3.0-cp310-cp310-win32.whl", hash = "sha256:67db33bea0a29d03e6eeec55a8190e033318cee3cbc732ba8fd939617cbf762d"}, - {file = "pyzmq-22.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:7661fc1d5cb73481cf710a1418a4e1e301ed7d5d924f91c67ba84b2a1b89defd"}, - {file = "pyzmq-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79244b9e97948eaf38695f4b8e6fc63b14b78cc37f403c6642ba555517ac1268"}, - {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab888624ed68930442a3f3b0b921ad7439c51ba122dbc8c386e6487a658e4a4e"}, - {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18cd854b423fce44951c3a4d3e686bac8f1243d954f579e120a1714096637cc0"}, - {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:de8df0684398bd74ad160afdc2a118ca28384ac6f5e234eb0508858d8d2d9364"}, - {file = "pyzmq-22.3.0-cp36-cp36m-win32.whl", hash = "sha256:3c1895c95be92600233e476fe283f042e71cf8f0b938aabf21b7aafa62a8dac9"}, - {file = "pyzmq-22.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:851977788b9caa8ed011f5f643d3ee8653af02c5fc723fa350db5125abf2be7b"}, - {file = "pyzmq-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b4ebed0977f92320f6686c96e9e8dd29eed199eb8d066936bac991afc37cbb70"}, - {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42abddebe2c6a35180ca549fadc7228d23c1e1f76167c5ebc8a936b5804ea2df"}, - {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1e41b32d6f7f9c26bc731a8b529ff592f31fc8b6ef2be9fa74abd05c8a342d7"}, - {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:be4e0f229cf3a71f9ecd633566bd6f80d9fa6afaaff5489492be63fe459ef98c"}, - {file = "pyzmq-22.3.0-cp37-cp37m-win32.whl", hash = "sha256:7c58f598d9fcc52772b89a92d72bf8829c12d09746a6d2c724c5b30076c1f11d"}, - {file = "pyzmq-22.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2b97502c16a5ec611cd52410bdfaab264997c627a46b0f98d3f666227fd1ea2d"}, - {file = "pyzmq-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d728b08448e5ac3e4d886b165385a262883c34b84a7fe1166277fe675e1c197a"}, - {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:480b9931bfb08bf8b094edd4836271d4d6b44150da051547d8c7113bf947a8b0"}, - {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7dc09198e4073e6015d9a8ea093fc348d4e59de49382476940c3dd9ae156fba8"}, - {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ca6cd58f62a2751728016d40082008d3b3412a7f28ddfb4a2f0d3c130f69e74"}, - {file = "pyzmq-22.3.0-cp38-cp38-win32.whl", hash = "sha256:c0f84360dcca3481e8674393bdf931f9f10470988f87311b19d23cda869bb6b7"}, - {file = "pyzmq-22.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:f762442bab706fd874064ca218b33a1d8e40d4938e96c24dafd9b12e28017f45"}, - {file = "pyzmq-22.3.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:954e73c9cd4d6ae319f1c936ad159072b6d356a92dcbbabfd6e6204b9a79d356"}, - {file = "pyzmq-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f43b4a2e6218371dd4f41e547bd919ceeb6ebf4abf31a7a0669cd11cd91ea973"}, - {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:acebba1a23fb9d72b42471c3771b6f2f18dcd46df77482612054bd45c07dfa36"}, - {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cf98fd7a6c8aaa08dbc699ffae33fd71175696d78028281bc7b832b26f00ca57"}, - {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d072f7dfbdb184f0786d63bda26e8a0882041b1e393fbe98940395f7fab4c5e2"}, - {file = "pyzmq-22.3.0-cp39-cp39-win32.whl", hash = "sha256:e6a02cf7271ee94674a44f4e62aa061d2d049001c844657740e156596298b70b"}, - {file = "pyzmq-22.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d3dcb5548ead4f1123851a5ced467791f6986d68c656bc63bfff1bf9e36671e2"}, - {file = "pyzmq-22.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3a4c9886d61d386b2b493377d980f502186cd71d501fffdba52bd2a0880cef4f"}, - {file = "pyzmq-22.3.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:80e043a89c6cadefd3a0712f8a1322038e819ebe9dbac7eca3bce1721bcb63bf"}, - {file = "pyzmq-22.3.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1621e7a2af72cced1f6ec8ca8ca91d0f76ac236ab2e8828ac8fe909512d566cb"}, - {file = "pyzmq-22.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d6157793719de168b199194f6b6173f0ccd3bf3499e6870fac17086072e39115"}, - {file = "pyzmq-22.3.0.tar.gz", hash = "sha256:8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c"}, -] -qtconsole = [ - {file = "qtconsole-5.2.2-py3-none-any.whl", hash = "sha256:4aa6a3e600e0c8cf16853f2378311bc2371f57cb0f22ecfc28994f4cf409ee2e"}, - {file = "qtconsole-5.2.2.tar.gz", hash = "sha256:8f9db97b27782184efd0a0f2d57ea3bd852d053747a2e442a9011329c082976d"}, -] -qtpy = [ - {file = "QtPy-2.0.1-py3-none-any.whl", hash = "sha256:d93f2c98e97387fcc9d623d509772af5b6c15ab9d8f9f4c5dfbad9a73ad34812"}, - {file = "QtPy-2.0.1.tar.gz", hash = "sha256:adfd073ffbd2de81dc7aaa0b983499ef5c59c96adcfdcc9dea60d42ca885eb8f"}, -] -regex = [ - {file = "regex-2022.3.15-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:42eb13b93765c6698a5ab3bcd318d8c39bb42e5fa8a7fcf7d8d98923f3babdb1"}, - {file = "regex-2022.3.15-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9beb03ff6fe509d6455971c2489dceb31687b38781206bcec8e68bdfcf5f1db2"}, - {file = "regex-2022.3.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0a5a1fdc9f148a8827d55b05425801acebeeefc9e86065c7ac8b8cc740a91ff"}, - {file = "regex-2022.3.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb374a2a4dba7c4be0b19dc7b1adc50e6c2c26c3369ac629f50f3c198f3743a4"}, - {file = "regex-2022.3.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c33ce0c665dd325200209340a88438ba7a470bd5f09f7424e520e1a3ff835b52"}, - {file = "regex-2022.3.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04c09b9651fa814eeeb38e029dc1ae83149203e4eeb94e52bb868fadf64852bc"}, - {file = "regex-2022.3.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ab5d89cfaf71807da93c131bb7a19c3e19eaefd613d14f3bce4e97de830b15df"}, - {file = "regex-2022.3.15-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0e2630ae470d6a9f8e4967388c1eda4762706f5750ecf387785e0df63a4cc5af"}, - {file = "regex-2022.3.15-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:df037c01d68d1958dad3463e2881d3638a0d6693483f58ad41001aa53a83fcea"}, - {file = "regex-2022.3.15-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:940570c1a305bac10e8b2bc934b85a7709c649317dd16520471e85660275083a"}, - {file = "regex-2022.3.15-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:7f63877c87552992894ea1444378b9c3a1d80819880ae226bb30b04789c0828c"}, - {file = "regex-2022.3.15-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:3e265b388cc80c7c9c01bb4f26c9e536c40b2c05b7231fbb347381a2e1c8bf43"}, - {file = "regex-2022.3.15-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:058054c7a54428d5c3e3739ac1e363dc9347d15e64833817797dc4f01fb94bb8"}, - {file = "regex-2022.3.15-cp310-cp310-win32.whl", hash = "sha256:76435a92e444e5b8f346aed76801db1c1e5176c4c7e17daba074fbb46cb8d783"}, - {file = "regex-2022.3.15-cp310-cp310-win_amd64.whl", hash = "sha256:174d964bc683b1e8b0970e1325f75e6242786a92a22cedb2a6ec3e4ae25358bd"}, - {file = "regex-2022.3.15-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:6e1d8ed9e61f37881c8db383a124829a6e8114a69bd3377a25aecaeb9b3538f8"}, - {file = "regex-2022.3.15-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b52771f05cff7517f7067fef19ffe545b1f05959e440d42247a17cd9bddae11b"}, - {file = "regex-2022.3.15-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:673f5a393d603c34477dbad70db30025ccd23996a2d0916e942aac91cc42b31a"}, - {file = "regex-2022.3.15-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8923e1c5231549fee78ff9b2914fad25f2e3517572bb34bfaa3aea682a758683"}, - {file = "regex-2022.3.15-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:764e66a0e382829f6ad3bbce0987153080a511c19eb3d2f8ead3f766d14433ac"}, - {file = "regex-2022.3.15-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd00859291658fe1fda48a99559fb34da891c50385b0bfb35b808f98956ef1e7"}, - {file = "regex-2022.3.15-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:aa2ce79f3889720b46e0aaba338148a1069aea55fda2c29e0626b4db20d9fcb7"}, - {file = "regex-2022.3.15-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:34bb30c095342797608727baf5c8aa122406aa5edfa12107b8e08eb432d4c5d7"}, - {file = "regex-2022.3.15-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:25ecb1dffc5e409ca42f01a2b2437f93024ff1612c1e7983bad9ee191a5e8828"}, - {file = "regex-2022.3.15-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:aa5eedfc2461c16a092a2fabc5895f159915f25731740c9152a1b00f4bcf629a"}, - {file = "regex-2022.3.15-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:7d1a6e403ac8f1d91d8f51c441c3f99367488ed822bda2b40836690d5d0059f5"}, - {file = "regex-2022.3.15-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:3e4d710ff6539026e49f15a3797c6b1053573c2b65210373ef0eec24480b900b"}, - {file = "regex-2022.3.15-cp36-cp36m-win32.whl", hash = "sha256:0100f0ded953b6b17f18207907159ba9be3159649ad2d9b15535a74de70359d3"}, - {file = "regex-2022.3.15-cp36-cp36m-win_amd64.whl", hash = "sha256:f320c070dea3f20c11213e56dbbd7294c05743417cde01392148964b7bc2d31a"}, - {file = "regex-2022.3.15-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fc8c7958d14e8270171b3d72792b609c057ec0fa17d507729835b5cff6b7f69a"}, - {file = "regex-2022.3.15-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ca6dcd17f537e9f3793cdde20ac6076af51b2bd8ad5fe69fa54373b17b48d3c"}, - {file = "regex-2022.3.15-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0214ff6dff1b5a4b4740cfe6e47f2c4c92ba2938fca7abbea1359036305c132f"}, - {file = "regex-2022.3.15-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a98ae493e4e80b3ded6503ff087a8492db058e9c68de371ac3df78e88360b374"}, - {file = "regex-2022.3.15-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b1cc70e31aacc152a12b39245974c8fccf313187eead559ee5966d50e1b5817"}, - {file = "regex-2022.3.15-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b4829db3737480a9d5bfb1c0320c4ee13736f555f53a056aacc874f140e98f64"}, - {file = "regex-2022.3.15-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:303b15a3d32bf5fe5a73288c316bac5807587f193ceee4eb6d96ee38663789fa"}, - {file = "regex-2022.3.15-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:dc7b7c16a519d924c50876fb152af661a20749dcbf653c8759e715c1a7a95b18"}, - {file = "regex-2022.3.15-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ce3057777a14a9a1399b81eca6a6bfc9612047811234398b84c54aeff6d536ea"}, - {file = "regex-2022.3.15-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:48081b6bff550fe10bcc20c01cf6c83dbca2ccf74eeacbfac240264775fd7ecf"}, - {file = "regex-2022.3.15-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dcbb7665a9db9f8d7642171152c45da60e16c4f706191d66a1dc47ec9f820aed"}, - {file = "regex-2022.3.15-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c155a1a80c5e7a8fa1d9bb1bf3c8a953532b53ab1196092749bafb9d3a7cbb60"}, - {file = "regex-2022.3.15-cp37-cp37m-win32.whl", hash = "sha256:04b5ee2b6d29b4a99d38a6469aa1db65bb79d283186e8460542c517da195a8f6"}, - {file = "regex-2022.3.15-cp37-cp37m-win_amd64.whl", hash = "sha256:797437e6024dc1589163675ae82f303103063a0a580c6fd8d0b9a0a6708da29e"}, - {file = "regex-2022.3.15-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8afcd1c2297bc989dceaa0379ba15a6df16da69493635e53431d2d0c30356086"}, - {file = "regex-2022.3.15-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0066a6631c92774391f2ea0f90268f0d82fffe39cb946f0f9c6b382a1c61a5e5"}, - {file = "regex-2022.3.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8248f19a878c72d8c0a785a2cd45d69432e443c9f10ab924c29adda77b324ae"}, - {file = "regex-2022.3.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8d1f3ea0d1924feb4cf6afb2699259f658a08ac6f8f3a4a806661c2dfcd66db1"}, - {file = "regex-2022.3.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:794a6bc66c43db8ed06698fc32aaeaac5c4812d9f825e9589e56f311da7becd9"}, - {file = "regex-2022.3.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d1445824944e642ffa54c4f512da17a953699c563a356d8b8cbdad26d3b7598"}, - {file = "regex-2022.3.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f553a1190ae6cd26e553a79f6b6cfba7b8f304da2071052fa33469da075ea625"}, - {file = "regex-2022.3.15-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:75a5e6ce18982f0713c4bac0704bf3f65eed9b277edd3fb9d2b0ff1815943327"}, - {file = "regex-2022.3.15-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f16cf7e4e1bf88fecf7f41da4061f181a6170e179d956420f84e700fb8a3fd6b"}, - {file = "regex-2022.3.15-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dad3991f0678facca1a0831ec1ddece2eb4d1dd0f5150acb9440f73a3b863907"}, - {file = "regex-2022.3.15-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:491fc754428514750ab21c2d294486223ce7385446f2c2f5df87ddbed32979ae"}, - {file = "regex-2022.3.15-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:6504c22c173bb74075d7479852356bb7ca80e28c8e548d4d630a104f231e04fb"}, - {file = "regex-2022.3.15-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:01c913cf573d1da0b34c9001a94977273b5ee2fe4cb222a5d5b320f3a9d1a835"}, - {file = "regex-2022.3.15-cp38-cp38-win32.whl", hash = "sha256:029e9e7e0d4d7c3446aa92474cbb07dafb0b2ef1d5ca8365f059998c010600e6"}, - {file = "regex-2022.3.15-cp38-cp38-win_amd64.whl", hash = "sha256:947a8525c0a95ba8dc873191f9017d1b1e3024d4dc757f694e0af3026e34044a"}, - {file = "regex-2022.3.15-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:591d4fba554f24bfa0421ba040cd199210a24301f923ed4b628e1e15a1001ff4"}, - {file = "regex-2022.3.15-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b9809404528a999cf02a400ee5677c81959bc5cb938fdc696b62eb40214e3632"}, - {file = "regex-2022.3.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f08a7e4d62ea2a45557f561eea87c907222575ca2134180b6974f8ac81e24f06"}, - {file = "regex-2022.3.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5a86cac984da35377ca9ac5e2e0589bd11b3aebb61801204bd99c41fac516f0d"}, - {file = "regex-2022.3.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:286908cbe86b1a0240a867aecfe26a439b16a1f585d2de133540549831f8e774"}, - {file = "regex-2022.3.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b7494df3fdcc95a1f76cf134d00b54962dd83189520fd35b8fcd474c0aa616d"}, - {file = "regex-2022.3.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b1ceede92400b3acfebc1425937454aaf2c62cd5261a3fabd560c61e74f6da3"}, - {file = "regex-2022.3.15-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0317eb6331146c524751354ebef76a7a531853d7207a4d760dfb5f553137a2a4"}, - {file = "regex-2022.3.15-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9c144405220c5ad3f5deab4c77f3e80d52e83804a6b48b6bed3d81a9a0238e4c"}, - {file = "regex-2022.3.15-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:5b2e24f3ae03af3d8e8e6d824c891fea0ca9035c5d06ac194a2700373861a15c"}, - {file = "regex-2022.3.15-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f2c53f3af011393ab5ed9ab640fa0876757498aac188f782a0c620e33faa2a3d"}, - {file = "regex-2022.3.15-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:060f9066d2177905203516c62c8ea0066c16c7342971d54204d4e51b13dfbe2e"}, - {file = "regex-2022.3.15-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:530a3a16e57bd3ea0dff5ec2695c09632c9d6c549f5869d6cf639f5f7153fb9c"}, - {file = "regex-2022.3.15-cp39-cp39-win32.whl", hash = "sha256:78ce90c50d0ec970bd0002462430e00d1ecfd1255218d52d08b3a143fe4bde18"}, - {file = "regex-2022.3.15-cp39-cp39-win_amd64.whl", hash = "sha256:c5adc854764732dbd95a713f2e6c3e914e17f2ccdc331b9ecb777484c31f73b6"}, - {file = "regex-2022.3.15.tar.gz", hash = "sha256:0a7b75cc7bb4cc0334380053e4671c560e31272c9d2d5a6c4b8e9ae2c9bd0f82"}, -] -requests = [ - {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"}, - {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"}, -] + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] +pyzmq = [] +qtconsole = [] +qtpy = [] +regex = [] +requests = [] requests-oauthlib = [ {file = "requests-oauthlib-1.3.1.tar.gz", hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"}, {file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl", hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5"}, @@ -3200,147 +2909,33 @@ retina-face = [ {file = "retina-face-0.0.5.tar.gz", hash = "sha256:5cd16e47968932332765e3b7233e378403132b4f2a03f826e166dd84d652ccb9"}, {file = "retina_face-0.0.5-py3-none-any.whl", hash = "sha256:65f52062da77d490ae3411c7f0321cee1f48bc25e94ea228d6fa48998c1ae65a"}, ] -rsa = [ - {file = "rsa-4.8-py3-none-any.whl", hash = "sha256:95c5d300c4e879ee69708c428ba566c59478fd653cc3a22243eeb8ed846950bb"}, - {file = "rsa-4.8.tar.gz", hash = "sha256:5c6bd9dc7a543b7fe4304a631f8a8a3b674e2bbfc49c2ae96200cdbe55df6b17"}, -] -sacremoses = [ - {file = "sacremoses-0.0.49-py3-none-any.whl", hash = "sha256:33ca6d4e125271b9201cc7fdf7f03f3ffdd358ee6dd8079c0432811d82da5377"}, - {file = "sacremoses-0.0.49.tar.gz", hash = "sha256:c2ecd3a50d1c09a26253ad84b0b89e9e3a28a023455b72a2197cfeab27ff5141"}, -] -scikit-learn = [ - {file = "scikit-learn-1.0.2.tar.gz", hash = "sha256:b5870959a5484b614f26d31ca4c17524b1b0317522199dc985c3b4256e030767"}, - {file = "scikit_learn-1.0.2-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:da3c84694ff693b5b3194d8752ccf935a665b8b5edc33a283122f4273ca3e687"}, - {file = "scikit_learn-1.0.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:75307d9ea39236cad7eea87143155eea24d48f93f3a2f9389c817f7019f00705"}, - {file = "scikit_learn-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f14517e174bd7332f1cca2c959e704696a5e0ba246eb8763e6c24876d8710049"}, - {file = "scikit_learn-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9aac97e57c196206179f674f09bc6bffcd0284e2ba95b7fe0b402ac3f986023"}, - {file = "scikit_learn-1.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:d93d4c28370aea8a7cbf6015e8a669cd5d69f856cc2aa44e7a590fb805bb5583"}, - {file = "scikit_learn-1.0.2-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:85260fb430b795d806251dd3bb05e6f48cdc777ac31f2bcf2bc8bbed3270a8f5"}, - {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a053a6a527c87c5c4fa7bf1ab2556fa16d8345cf99b6c5a19030a4a7cd8fd2c0"}, - {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:245c9b5a67445f6f044411e16a93a554edc1efdcce94d3fc0bc6a4b9ac30b752"}, - {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:158faf30684c92a78e12da19c73feff9641a928a8024b4fa5ec11d583f3d8a87"}, - {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:08ef968f6b72033c16c479c966bf37ccd49b06ea91b765e1cc27afefe723920b"}, - {file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16455ace947d8d9e5391435c2977178d0ff03a261571e67f627c8fee0f9d431a"}, - {file = "scikit_learn-1.0.2-cp37-cp37m-win32.whl", hash = "sha256:2f3b453e0b149898577e301d27e098dfe1a36943f7bb0ad704d1e548efc3b448"}, - {file = "scikit_learn-1.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:46f431ec59dead665e1370314dbebc99ead05e1c0a9df42f22d6a0e00044820f"}, - {file = "scikit_learn-1.0.2-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:ff3fa8ea0e09e38677762afc6e14cad77b5e125b0ea70c9bba1992f02c93b028"}, - {file = "scikit_learn-1.0.2-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:9369b030e155f8188743eb4893ac17a27f81d28a884af460870c7c072f114243"}, - {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:7d6b2475f1c23a698b48515217eb26b45a6598c7b1840ba23b3c5acece658dbb"}, - {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:285db0352e635b9e3392b0b426bc48c3b485512d3b4ac3c7a44ec2a2ba061e66"}, - {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cb33fe1dc6f73dc19e67b264dbb5dde2a0539b986435fdd78ed978c14654830"}, - {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b1391d1a6e2268485a63c3073111fe3ba6ec5145fc957481cfd0652be571226d"}, - {file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c"}, - {file = "scikit_learn-1.0.2-cp38-cp38-win32.whl", hash = "sha256:a999c9f02ff9570c783069f1074f06fe7386ec65b84c983db5aeb8144356a355"}, - {file = "scikit_learn-1.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:7626a34eabbf370a638f32d1a3ad50526844ba58d63e3ab81ba91e2a7c6d037e"}, - {file = "scikit_learn-1.0.2-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:a90b60048f9ffdd962d2ad2fb16367a87ac34d76e02550968719eb7b5716fd10"}, - {file = "scikit_learn-1.0.2-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7a93c1292799620df90348800d5ac06f3794c1316ca247525fa31169f6d25855"}, - {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:eabceab574f471de0b0eb3f2ecf2eee9f10b3106570481d007ed1c84ebf6d6a1"}, - {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:55f2f3a8414e14fbee03782f9fe16cca0f141d639d2b1c1a36779fa069e1db57"}, - {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80095a1e4b93bd33261ef03b9bc86d6db649f988ea4dbcf7110d0cded8d7213d"}, - {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fa38a1b9b38ae1fad2863eff5e0d69608567453fdfc850c992e6e47eb764e846"}, - {file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff746a69ff2ef25f62b36338c615dd15954ddc3ab8e73530237dd73235e76d62"}, - {file = "scikit_learn-1.0.2-cp39-cp39-win32.whl", hash = "sha256:e174242caecb11e4abf169342641778f68e1bfaba80cd18acd6bc84286b9a534"}, - {file = "scikit_learn-1.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:b54a62c6e318ddbfa7d22c383466d38d2ee770ebdb5ddb668d56a099f6eaf75f"}, -] -scipy = [ - {file = "scipy-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:87b01c7d5761e8a266a0fbdb9d88dcba0910d63c1c671bdb4d99d29f469e9e03"}, - {file = "scipy-1.8.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ae3e327da323d82e918e593460e23babdce40d7ab21490ddf9fc06dec6b91a18"}, - {file = "scipy-1.8.0-cp310-cp310-macosx_12_0_universal2.macosx_10_9_x86_64.whl", hash = "sha256:16e09ef68b352d73befa8bcaf3ebe25d3941fe1a58c82909d5589856e6bc8174"}, - {file = "scipy-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c17a1878d00a5dd2797ccd73623ceca9d02375328f6218ee6d921e1325e61aff"}, - {file = "scipy-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:937d28722f13302febde29847bbe554b89073fbb924a30475e5ed7b028898b5f"}, - {file = "scipy-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:8f4d059a97b29c91afad46b1737274cb282357a305a80bdd9e8adf3b0ca6a3f0"}, - {file = "scipy-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:38aa39b6724cb65271e469013aeb6f2ce66fd44f093e241c28a9c6bc64fd79ed"}, - {file = "scipy-1.8.0-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:559a8a4c03a5ba9fe3232f39ed24f86457e4f3f6c0abbeae1fb945029f092720"}, - {file = "scipy-1.8.0-cp38-cp38-macosx_12_0_universal2.macosx_10_9_x86_64.whl", hash = "sha256:f4a6d3b9f9797eb2d43938ac2c5d96d02aed17ef170c8b38f11798717523ddba"}, - {file = "scipy-1.8.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:92b2c2af4183ed09afb595709a8ef5783b2baf7f41e26ece24e1329c109691a7"}, - {file = "scipy-1.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a279e27c7f4566ef18bab1b1e2c37d168e365080974758d107e7d237d3f0f484"}, - {file = "scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4"}, - {file = "scipy-1.8.0-cp38-cp38-win32.whl", hash = "sha256:3d9dd6c8b93a22bf9a3a52d1327aca7e092b1299fb3afc4f89e8eba381be7b59"}, - {file = "scipy-1.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:5e73343c5e0d413c1f937302b2e04fb07872f5843041bcfd50699aef6e95e399"}, - {file = "scipy-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:de2e80ee1d925984c2504812a310841c241791c5279352be4707cdcd7c255039"}, - {file = "scipy-1.8.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:c2bae431d127bf0b1da81fc24e4bba0a84d058e3a96b9dd6475dfcb3c5e8761e"}, - {file = "scipy-1.8.0-cp39-cp39-macosx_12_0_universal2.macosx_10_9_x86_64.whl", hash = "sha256:723b9f878095ed994756fa4ee3060c450e2db0139c5ba248ee3f9628bd64e735"}, - {file = "scipy-1.8.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:011d4386b53b933142f58a652aa0f149c9b9242abd4f900b9f4ea5fbafc86b89"}, - {file = "scipy-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6f0cd9c0bd374ef834ee1e0f0999678d49dcc400ea6209113d81528958f97c7"}, - {file = "scipy-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3720d0124aced49f6f2198a6900304411dbbeed12f56951d7c66ebef05e3df6"}, - {file = "scipy-1.8.0-cp39-cp39-win32.whl", hash = "sha256:3d573228c10a3a8c32b9037be982e6440e411b443a6267b067cac72f690b8d56"}, - {file = "scipy-1.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:bb7088e89cd751acf66195d2f00cf009a1ea113f3019664032d9075b1e727b6c"}, - {file = "scipy-1.8.0.tar.gz", hash = "sha256:31d4f2d6b724bc9a98e527b5849b8a7e589bf1ea630c33aa563eda912c9ff0bd"}, -] +rfc3339-validator = [] +rfc3986-validator = [] +rsa = [] +scikit-learn = [] +scipy = [] send2trash = [ {file = "Send2Trash-1.8.0-py3-none-any.whl", hash = "sha256:f20eaadfdb517eaca5ce077640cb261c7d2698385a6a0f072a4a5447fd49fa08"}, {file = "Send2Trash-1.8.0.tar.gz", hash = "sha256:d2c24762fd3759860a0aff155e45871447ea58d2be6bdd39b5c8f966a0c99c2d"}, ] -sentence-transformers = [ - {file = "sentence-transformers-2.2.0.tar.gz", hash = "sha256:c7365228b6d24e4d73cf49d409421820887ca43c86d49f264b68cfa00d761f96"}, -] -sentencepiece = [ - {file = "sentencepiece-0.1.96-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc969e6694fb27fba7cee2953f350804faf03913f25ae1ee713a7b8a1bc08018"}, - {file = "sentencepiece-0.1.96-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:36e9ff61e7b67c5b7ee96733613622620b4802fc8cf188a4dbc1f355b03dde02"}, - {file = "sentencepiece-0.1.96-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e9e9fe8094ca57549d801e9a2017ac5c24108bbf485ea4f8994a72e8e96ee135"}, - {file = "sentencepiece-0.1.96-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b77d27f59d515c43b61745b8173fbe7c7b3014b14b3702a75bf1793471e7def6"}, - {file = "sentencepiece-0.1.96-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1dac8c2ad02b5ebc1179c0a14cbc7d7c6f4fd73d4dd51820626402d0aefc974e"}, - {file = "sentencepiece-0.1.96-cp35-cp35m-macosx_10_6_x86_64.whl", hash = "sha256:e8ec5bb6777e2060e1499750c50e1b69dca5a0f80f90f2c66656c5f3e5244593"}, - {file = "sentencepiece-0.1.96-cp36-cp36m-macosx_10_6_x86_64.whl", hash = "sha256:99ea2d9db19e63a2d17d5dc64f9ace83fb9308a735be05a1aaf98eb4b496fba7"}, - {file = "sentencepiece-0.1.96-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeb090ad462833df03af1debce4ae607a2766ef861f992003ad0c56d074ab805"}, - {file = "sentencepiece-0.1.96-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f8c90df663cd9759b2cf8dd29998b63140ac39e51ada2e739dc13bdac0b4f001"}, - {file = "sentencepiece-0.1.96-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:26d20d713b3ba1b7a19205336afb1e93a4327c372b2f795e907b8dc2315ac92e"}, - {file = "sentencepiece-0.1.96-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5388882bb24d083f6cc8cffc5c435f3694a7772b018e06ea6fd84d1044009efb"}, - {file = "sentencepiece-0.1.96-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a92e1932ee8fd500680ccbe1bf53eb33228f4c9d6524ed6f300bcc80ac359f27"}, - {file = "sentencepiece-0.1.96-cp36-cp36m-win32.whl", hash = "sha256:bedf0355117fb4e9b1fc9fc92b4d5ee743a7d468be9f6196e3b94447710ea589"}, - {file = "sentencepiece-0.1.96-cp36-cp36m-win_amd64.whl", hash = "sha256:4997c7ccf2ae462320250314aa5709a88d8a09fa271d073458a07bebf33f8e7c"}, - {file = "sentencepiece-0.1.96-cp37-cp37m-macosx_10_6_x86_64.whl", hash = "sha256:a697257a2cd7581732d7741a8d32a06927f0311c3d277dbc47fa1043350c9d17"}, - {file = "sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff7d752a7f82d87711ec1a95c2262cb74f98be5b457f0300d81a1aefe5be2a95"}, - {file = "sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3e61e0757e49c306fff78ea75d6b75773418fe22214b4a460959203be934e834"}, - {file = "sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ef59ba19340dc1d002ce5713b911c0ef23c577b08f8ed57998ee3c8e62c5bf6e"}, - {file = "sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:89c038da7f827a6e2ca4c73aeb4e4b25b99d981ce47dd61b04d446c8200cba1e"}, - {file = "sentencepiece-0.1.96-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d954d25a8705f972e8bfc1dea5464d7e697dd6f4ade092f1a487387e6d6c829a"}, - {file = "sentencepiece-0.1.96-cp37-cp37m-win32.whl", hash = "sha256:fd907a8f744e5337de7fc532dd800c4416b571ea47f8c3c66be10cd1bc67c925"}, - {file = "sentencepiece-0.1.96-cp37-cp37m-win_amd64.whl", hash = "sha256:335bf84d72112cc91f3c3b691d61802fc963503b7772fd8280d20368048b8f3e"}, - {file = "sentencepiece-0.1.96-cp38-cp38-macosx_10_6_x86_64.whl", hash = "sha256:e811984b0908c14c56de7d8226fdd494d87a7ccb75af8ac3a07423037aaafc35"}, - {file = "sentencepiece-0.1.96-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8179785883b556cd517416cdbda6244745414b00ec83132cfe1d26000971f3ae"}, - {file = "sentencepiece-0.1.96-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:466e381f0a812da8fda97a9707498cef3210ea8385a3421bcbadcb5384063969"}, - {file = "sentencepiece-0.1.96-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8cb24d8d0b2f8b7463815a59183eb81ec1d7a06e3217bed456063f3303eddfb"}, - {file = "sentencepiece-0.1.96-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e88354b61f59dfdeb41023f7be8ae31dc627c2dc2dacbc2de8b2d82a0997135c"}, - {file = "sentencepiece-0.1.96-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a336575463d75d3aac1f7e32470b8998643ccd9a73786bd726f6b0470520b6b4"}, - {file = "sentencepiece-0.1.96-cp38-cp38-win32.whl", hash = "sha256:81bb77ba3651114943b2f8f77829cf764137dff06e38f4bf7fa43efea12c7f84"}, - {file = "sentencepiece-0.1.96-cp38-cp38-win_amd64.whl", hash = "sha256:eba0471ab0bb2e07ed06d91ecf5185d402c83d194155a41d8e2aa547d187712e"}, - {file = "sentencepiece-0.1.96-cp39-cp39-macosx_10_6_x86_64.whl", hash = "sha256:78e18d9106c36dcca929e18fd2c412378deac661d47fa3ee25defc55eef8a215"}, - {file = "sentencepiece-0.1.96-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1c24c1d9405b2148184ff27c062493d5e3be5c144575f95b5a0d7c660a515af"}, - {file = "sentencepiece-0.1.96-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:940a6999c7d3f55e9d7b194fd5e1f41a7dbed26d3519fb95333216292a39599e"}, - {file = "sentencepiece-0.1.96-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:384148cead5cdab34a4d74fe1fb6a5a8abaafed25eaa4a7698b49dd9482e4c4e"}, - {file = "sentencepiece-0.1.96-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3c703e68ea192e45b65c5d5836f6980849d828a18da4189899d7150fad82dc9e"}, - {file = "sentencepiece-0.1.96-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d501713a8396193883aa526f48dc609f5f031a5df1afbafa561cf9ab492ffc76"}, - {file = "sentencepiece-0.1.96-cp39-cp39-win32.whl", hash = "sha256:b8b1dd2712f8a7de5b4c8ec912e6c041d25750bf03e1ce325cdba43bae0944ae"}, - {file = "sentencepiece-0.1.96-cp39-cp39-win_amd64.whl", hash = "sha256:d45e3f78e746aa161bc9f5a31c6a2839c512101113a4065f4d2e7a3ab8198d8c"}, - {file = "sentencepiece-0.1.96-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5513298d62fe63dd0862d08a6eb52a9aa3537006f597f2386184e3f95bb88889"}, - {file = "sentencepiece-0.1.96-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dadccb2e49244b6e64b4527d13ec14d5e094a90b41cf9b963e457e64182f1941"}, - {file = "sentencepiece-0.1.96-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48c6d13b3bfff08060c138248e85df60f6fad11135ad7a8fc2ef6005aacca839"}, - {file = "sentencepiece-0.1.96.tar.gz", hash = "sha256:9bdf097d5bd1d8ce42dfee51f6ff05f5578b96e48c6f6006aa4eff69edfa3639"}, -] -setuptools-scm = [ - {file = "setuptools_scm-6.4.2-py3-none-any.whl", hash = "sha256:acea13255093849de7ccb11af9e1fb8bde7067783450cee9ef7a93139bddf6d4"}, - {file = "setuptools_scm-6.4.2.tar.gz", hash = "sha256:6833ac65c6ed9711a4d5d2266f8024cfa07c533a0e55f4c12f6eff280a5a9e30"}, -] +setuptools-scm = [] six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] +smart-open = [] +sniffio = [] soupsieve = [ - {file = "soupsieve-2.3.1-py3-none-any.whl", hash = "sha256:1a3cca2617c6b38c0343ed661b1fa5de5637f257d4fe22bd9f1338010a1efefb"}, - {file = "soupsieve-2.3.1.tar.gz", hash = "sha256:b8d49b1cd4f037c7082a9683dfa1801aa2597fb11c3a1155b7a5b94829b4f1f9"}, -] -stack-data = [ - {file = "stack_data-0.2.0-py3-none-any.whl", hash = "sha256:999762f9c3132308789affa03e9271bbbe947bf78311851f4d485d8402ed858e"}, - {file = "stack_data-0.2.0.tar.gz", hash = "sha256:45692d41bd633a9503a5195552df22b583caf16f0b27c4e58c98d88c8b648e12"}, -] -tenacity = [ - {file = "tenacity-8.0.1-py3-none-any.whl", hash = "sha256:f78f4ea81b0fabc06728c11dc2a8c01277bfc5181b321a4770471902e3eb844a"}, - {file = "tenacity-8.0.1.tar.gz", hash = "sha256:43242a20e3e73291a28bcbcacfd6e000b02d3857a9a9fff56b297a27afdc932f"}, -] -tensorboard = [ - {file = "tensorboard-2.8.0-py3-none-any.whl", hash = "sha256:65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def"}, -] + {file = "soupsieve-2.3.2.post1-py3-none-any.whl", hash = "sha256:3b2503d3c7084a42b1ebd08116e5f81aadfaea95863628c80a3b774a11b7c759"}, + {file = "soupsieve-2.3.2.post1.tar.gz", hash = "sha256:fc53893b3da2c33de295667a0e19f078c14bf86544af307354de5fcf12a3f30d"}, +] +spacy = [] +spacy-legacy = [] +spacy-loggers = [] +srsly = [] +stack-data = [] +tenacity = [] +tensorboard = [] tensorboard-data-server = [ {file = "tensorboard_data_server-0.6.1-py3-none-any.whl", hash = "sha256:809fe9887682d35c1f7d1f54f0f40f98bb1f771b14265b453ca051e2ce58fca7"}, {file = "tensorboard_data_server-0.6.1-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:fa8cef9be4fcae2f2363c88176638baf2da19c5ec90addb49b1cde05c95c88ee"}, @@ -3349,95 +2944,38 @@ tensorboard-data-server = [ tensorboard-plugin-wit = [ {file = "tensorboard_plugin_wit-1.8.1-py3-none-any.whl", hash = "sha256:ff26bdd583d155aa951ee3b152b3d0cffae8005dc697f72b44a8e8c2a77a8cbe"}, ] -tensorflow = [ - {file = "tensorflow-2.8.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:78c3ba2e0c952aa9eb388200f1923e40287f9357492a464188ca3043e35edc52"}, - {file = "tensorflow-2.8.0-cp310-cp310-manylinux2010_x86_64.whl", hash = "sha256:2a520538e77a52fb428acb05e300c960844fd1d2c3918ca8ca14127edba6f83b"}, - {file = "tensorflow-2.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:b7170844ae6b048d82a9d7a61b2fa627f2e16cb829267bf0ce4b3a0de0a61054"}, - {file = "tensorflow-2.8.0-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:fa4a723368d5f748b6f4ec305cf7c26b98e4a6a8c2ce1425f8ae10383a37bcfc"}, - {file = "tensorflow-2.8.0-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:05fb161c6b2a6c4b8317a703a0a6d7f7aa6b5e3c6ea31bbc4f44ef96b89c3344"}, - {file = "tensorflow-2.8.0-cp37-cp37m-win_amd64.whl", hash = "sha256:291fa84f1022914580810ad76732fb254e44a8a609128e1c58873a12b2f81559"}, - {file = "tensorflow-2.8.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:dd0f9f113ebc21b73fcd349db1629e187b8686395b8146d100eb1706a943bbc0"}, - {file = "tensorflow-2.8.0-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:8489b4f1771e146f752b0eaeb57acf183bd07357e4550464e7dff18b3b656b5d"}, - {file = "tensorflow-2.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:da38d4043185267e7316ae5dc98d18e89c8af4170859f64798e7a3607fd606e3"}, - {file = "tensorflow-2.8.0-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:52f225fecc688281b3ae2cba2b52d3ed6215ed4a3ffb686b9cfd09885ca65563"}, - {file = "tensorflow-2.8.0-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:9d91a989e5455ae713c03fd7236071ab3f232ad8ff2831f2658072933546091f"}, - {file = "tensorflow-2.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:b360c13b3e58b9a5c0780cbdb6b549eea73f620275fa203f8508fe418ae02735"}, -] -tensorflow-io-gcs-filesystem = [ - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:9c00f9a9880477b1dff0c71ee6734421ce99ac484ca2151793ebf2681fc0cb4c"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b6ca3a9f751aa9c2f9851520e666d905ad14667281bbafeabe611b7b8f3e1bc5"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp310-cp310-win_amd64.whl", hash = "sha256:2f67d19a2f2579dc55f1590faf48c2e882cabb860992b5a9c7edb0ed8b3eb187"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:cde835e68b2b43ddade07c999e7c3251bcd62b1ff165c34fbe9fc6e0f12c3ac9"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:71c00638c9b6048480095f2738dfefd8f4b2e7b534190c91d699aee769bfa86e"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f63d70d7fce10c63f21bdd8e72244958afc0c495966831a547f038543c9633f7"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d1eb5e9be62040c5a249ae8adaae7e61f65b59541139e4d6767157f25a224bf5"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:cc093f160f79526d31f6070a3ddc000868d737a36ccf40984128661563383601"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6e65009770a05a3b55c5f782348f785e5034d277a727832811ad737bd857c8c9"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:658764aaaf9419ddefb3daa95bdc84e5210c691ff73b8ac2606d5c839040206b"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp38-cp38-win_amd64.whl", hash = "sha256:aa90b9a34ea8da4dbd534f77746d67375714db869524da889193c3042352679a"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:825f396388748038ad38c35b091311982081f93a5db8ca9763fc874c3f555e6c"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cbc71b3925508bf796644a0083a6f9284f71404654f53092bece701383a69520"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae96b20b973b1c3bbf2c068409035ead45177447ef51701f4e726f67cadc4695"}, - {file = "tensorflow_io_gcs_filesystem-0.24.0-cp39-cp39-win_amd64.whl", hash = "sha256:2862e0869453ce1f872a28d1362768ee078ec227ea587dd69164081dea6d7177"}, -] -termcolor = [ - {file = "termcolor-1.1.0.tar.gz", hash = "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"}, -] -terminado = [ - {file = "terminado-0.13.3-py3-none-any.whl", hash = "sha256:874d4ea3183536c1782d13c7c91342ef0cf4e5ee1d53633029cbc972c8760bd8"}, - {file = "terminado-0.13.3.tar.gz", hash = "sha256:94d1cfab63525993f7d5c9b469a50a18d0cdf39435b59785715539dd41e36c0d"}, -] -testpath = [ - {file = "testpath-0.6.0-py3-none-any.whl", hash = "sha256:8ada9f80a2ac6fb0391aa7cdb1a7d11cfa8429f693eda83f74dde570fe6fa639"}, - {file = "testpath-0.6.0.tar.gz", hash = "sha256:2f1b97e6442c02681ebe01bd84f531028a7caea1af3825000f52345c30285e0f"}, -] -tf-estimator-nightly = [ - {file = "tf_estimator_nightly-2.8.0.dev2021122109-py2.py3-none-any.whl", hash = "sha256:0065a04e396b2890bd19761fc1de7559ceafeba12839f8db2c7e7473afaaf612"}, +tensorflow = [] +tensorflow-estimator = [] +tensorflow-io-gcs-filesystem = [] +termcolor = [] +terminado = [] +thinc = [ + {file = "thinc-8.0.17-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9c42240d19bf7f02837fb5fe395c19b8e7ae8b5539dec7d4373555e1c940ab49"}, + {file = "thinc-8.0.17-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cc074a16876ec3eaf765ac0178adf891dc1c4eda33e9e02906a027bf51b78141"}, + {file = "thinc-8.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d1b481a2c88796988ac6a2c755059aace586d2494bb186f709aa3981ead96b2"}, + {file = "thinc-8.0.17-cp310-cp310-win_amd64.whl", hash = "sha256:fd2d49a80a6c95be4eb0f8370a22eef903ecad10b65762d39c9b192abf905f7c"}, + {file = "thinc-8.0.17-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d6657b0e2978f0ab8c75cb8180856ebbbaf7f52d97351ad5f59988b5da5b6b1e"}, + {file = "thinc-8.0.17-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2821a820e47edfe098901dd1be60b8321c5b15e5132d47b48f0b8225115054c"}, + {file = "thinc-8.0.17-cp36-cp36m-win_amd64.whl", hash = "sha256:cfd8cc5df9652e746d708f7d9e1aaaf4fe6ce0d66d66ad267c170c92e8b8ef45"}, + {file = "thinc-8.0.17-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b104ff10bb968d1625b9a81ef56f947a25e24b46069bbaf35fc3ea4562c92cbc"}, + {file = "thinc-8.0.17-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f86b8ee3c2605f0de9925dd6f0fc2c1c2392c8ca4fbc93511eee97299c09260"}, + {file = "thinc-8.0.17-cp37-cp37m-win_amd64.whl", hash = "sha256:3eb3e5c897cbd5501048666ef30e4fac5921941b735a91e6803a7cf714dacd92"}, + {file = "thinc-8.0.17-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:73d454210e9cf11537887635ddeea4b2aad607886a6d4360524df10d57ff8272"}, + {file = "thinc-8.0.17-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:55780308cae6119c75a7b6cfee154fded0a03692858c308032151151b37d1571"}, + {file = "thinc-8.0.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2bcf5db534e237b23513965f3d542a6f261370a1946e1c7252bc8134086085f"}, + {file = "thinc-8.0.17-cp38-cp38-win_amd64.whl", hash = "sha256:d4275d9cd382707dd1a340cb4e8fba550a3fbff0b000abc1c413825837f55a60"}, + {file = "thinc-8.0.17-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:515e86cead73d42828db140efa36f6e1b826ac4401426236aa9fca5eb3e6f068"}, + {file = "thinc-8.0.17-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c4a6e7e4c00ae560b799d269e7cf2b87379eaf15350a312405d93bd8c7076ce8"}, + {file = "thinc-8.0.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4737feae51aef428f2b7be03cabc28d4e4116968ec1419cf0508c460ee8a059d"}, + {file = "thinc-8.0.17-cp39-cp39-win_amd64.whl", hash = "sha256:eba973fe229e7fa86b99f2c5e2724f7f19040ac75a8ef7c8b23b434dac1eadea"}, + {file = "thinc-8.0.17.tar.gz", hash = "sha256:042c518aa799a38bec22a7a0bf28df80ce617eb7de32bc049798707c0a36167f"}, ] threadpoolctl = [ {file = "threadpoolctl-3.1.0-py3-none-any.whl", hash = "sha256:8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b"}, {file = "threadpoolctl-3.1.0.tar.gz", hash = "sha256:a335baacfaa4400ae1f0d8e3a58d6674d2f8828e3716bb2802c44955ad391380"}, ] -tokenizers = [ - {file = "tokenizers-0.11.6-cp310-cp310-macosx_10_11_x86_64.whl", hash = "sha256:c24f3e0e69edf015efab6bea0a24d45eb19f477106d00a739c19d2a02f6085fc"}, - {file = "tokenizers-0.11.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1c5a786fe12a4c1782337abc818fc48ca84e07f8cb0eeab263a27fcd30f7fc6f"}, - {file = "tokenizers-0.11.6-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6f7b82aaedb24e0a4dcd8fe77a79de9a0acf43db8ae173cdb4eca1e767566b47"}, - {file = "tokenizers-0.11.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7d8ea3a05b593e5744c4ad0e6e2cbba6f82588c302d663855316c1861c09557"}, - {file = "tokenizers-0.11.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3fde9a1e7d18caddff3ac13baf4e31235688b0db2ba42bbc8179dc878327560a"}, - {file = "tokenizers-0.11.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:46a763d1f43f46448e41884356f105a2f067b6e573c7e0c67d8f93512304b22c"}, - {file = "tokenizers-0.11.6-cp310-cp310-win32.whl", hash = "sha256:6bc5cc6d5b17bf8222049a2c97bcc117974793e37fb2e42b8fb04b2ef984d165"}, - {file = "tokenizers-0.11.6-cp310-cp310-win_amd64.whl", hash = "sha256:3c1ad5d230bdd6a3f63bbffd16a9fdea6a049ceb6d225e4d70a2664853f40aaf"}, - {file = "tokenizers-0.11.6-cp36-cp36m-macosx_12_0_arm64.whl", hash = "sha256:44697b08469dfe3265a851f87ad41c7f04efa511ada8182b6b08aa809765dcb8"}, - {file = "tokenizers-0.11.6-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0975b9f06f982580909f9fa769baf58b806ab2d099daccc43dc95d60bf56817a"}, - {file = "tokenizers-0.11.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0deaa700f9e442ed4bb4fe2c6482979b3709772bcce2dd7b89dc586ec39ce2e"}, - {file = "tokenizers-0.11.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34ac8450ad93e4dae1c72b7ad6c6a74d2941a68beb25df25d05b2b371267daba"}, - {file = "tokenizers-0.11.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:38420ddd3b47d6f13be20bfecd928f4301c8cbebd1a752a7436c22fe01b3f6c4"}, - {file = "tokenizers-0.11.6-cp37-cp37m-macosx_10_11_x86_64.whl", hash = "sha256:c08d5745fb5852adeeffc6bfbe13b77cd95d3f49e7e6129537858c5fb9b7142c"}, - {file = "tokenizers-0.11.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:820a4cc3ef39c556c6f9495ce7cbd169098ca352e073ed3b34d6b74b53df2fbb"}, - {file = "tokenizers-0.11.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c72383a918e9fef9c2bf4666a961f3b312361fb027165b4446ff333441ebf91"}, - {file = "tokenizers-0.11.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6259833c189e36c29e84a853b9503028324a3b176a2ae3980c815456d326b652"}, - {file = "tokenizers-0.11.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79074927fc9efaf13b3accd53246e50ade37550920077411ab55bd5ed4944153"}, - {file = "tokenizers-0.11.6-cp37-cp37m-win32.whl", hash = "sha256:7ed928ac19a3397af6fe3716b313fb13dcaf54978f0fc159eeabaff8e35e5c92"}, - {file = "tokenizers-0.11.6-cp37-cp37m-win_amd64.whl", hash = "sha256:6840554a8cac1196db627d42edbf77f4b5decf6ce6fa9ca073efaaa2cff887a6"}, - {file = "tokenizers-0.11.6-cp38-cp38-macosx_10_11_x86_64.whl", hash = "sha256:216745a6e92eb52d99b56123e6fece59e0dcf7bd1444f42bee09e1f02c89bbec"}, - {file = "tokenizers-0.11.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e6d02076160d60966d6b2b320744affe6b846ee10a37d1c0222b6ca9e640bdb8"}, - {file = "tokenizers-0.11.6-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7074162348a7784faccbea18cf814138483ce0c47eb17dc482cbc4bbbde8a00c"}, - {file = "tokenizers-0.11.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c5ae264b75b7355db2bc3f34e8e3eb608fcca799ff9a109f3d61e4d9614f947"}, - {file = "tokenizers-0.11.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d393eb6b79ab972e6ebede2aa330903913cf380f6fe975d64a92fca15b5d8579"}, - {file = "tokenizers-0.11.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:251978daef3b57257bd313df7ef705aacc6cd5831644f6e2e8a42e2c7b7c4a30"}, - {file = "tokenizers-0.11.6-cp38-cp38-win32.whl", hash = "sha256:fd3fccc801b7621eca8dfd876494fad0b00bd43fc73afdc1c11d6be3c9136f78"}, - {file = "tokenizers-0.11.6-cp38-cp38-win_amd64.whl", hash = "sha256:3c1c6e10f655e0f57b9bb9a64ac4b7ea70d20a73f8013f8bd38d21d64d45d96a"}, - {file = "tokenizers-0.11.6-cp39-cp39-macosx_10_11_x86_64.whl", hash = "sha256:809b506a6e9f2f6cba86cfe642c1d1e82cbd758574bdc1207efe07229d6fa4d4"}, - {file = "tokenizers-0.11.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5b3829ad386747760e7d805c9ffd5cb5a9309679467029eea3162fb76c8c89dc"}, - {file = "tokenizers-0.11.6-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b9a34bd33d866862f45bfc4a409563132a0b6af5951e08f3ccfde36152cd7683"}, - {file = "tokenizers-0.11.6-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e75efa0275665ca30536c75dc5b4d33492fc40ae40c90d9085bdcdb99e060044"}, - {file = "tokenizers-0.11.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afc3c76268cdef4567f84a19d9c06fdd697b22f5142d1af18254ec70703db7b"}, - {file = "tokenizers-0.11.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47878a49211f8df63f7ec7de62f13b1c65e68be501f6a98b28f4bbb8d3390f25"}, - {file = "tokenizers-0.11.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d4f67758f62d64410e86d548c2c38ca5e59310ca38c18e8239637213c49e2fb"}, - {file = "tokenizers-0.11.6-cp39-cp39-win32.whl", hash = "sha256:468c3e3f414a532924fa277a58807e127a27d2a56b04113540ea755fc5ca9ba8"}, - {file = "tokenizers-0.11.6-cp39-cp39-win_amd64.whl", hash = "sha256:b28966c68a2cdecd5120f4becea159eebe0335b8202e21e292eb381031026edc"}, - {file = "tokenizers-0.11.6.tar.gz", hash = "sha256:562b2022faf0882586c915385620d1f11798fc1b32bac55353a530132369a6d0"}, -] +tinycss2 = [] +tokenizers = [] tomli = [ {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, @@ -3463,6 +3001,27 @@ torch = [ {file = "torch-1.11.0-cp39-none-macosx_10_9_x86_64.whl", hash = "sha256:50fd9bf85c578c871c28f1cb0ace9dfc6024401c7f399b174fb0f370899f4454"}, {file = "torch-1.11.0-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:0e48af66ad755f0f9c5f2664028a414f57c49d6adc37e77e06fe0004da4edb61"}, ] +torchaudio = [ + {file = "torchaudio-0.11.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:8363e3db0a8af5820fd7d3bf8396a0af23dc8221c9a9d4b60e2e389805492944"}, + {file = "torchaudio-0.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d3a3b2cceb95f04ed936da33bc53bd666dab0715a79db33ae4719852241dc2d2"}, + {file = "torchaudio-0.11.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:4e70645a1b77a89d9f40406f1a5b9af724f726a5c13bc2be55381e72b0fa63b6"}, + {file = "torchaudio-0.11.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:4d45833276a34ba0cdc9743b93141e6dbf17950091bb07940a30a6bf6cb80f05"}, + {file = "torchaudio-0.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:eff169d339d671b44bd777188be62861f4a3fca0779ecaa37518218e1e90978e"}, + {file = "torchaudio-0.11.0-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:b9a4d3e1ab611161c065ed2106804833ff4b85f64d84021ec590468363169f9d"}, + {file = "torchaudio-0.11.0-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:a2f27bd7b53c5a3d91b120b8291a46fb09ba3e5aa4e54dd5c8fe47fbb8f7d848"}, + {file = "torchaudio-0.11.0-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3a3964f8a50cdeba8a02d20f07305853650a2dc3fb604a2334dce6b68cf8ea38"}, + {file = "torchaudio-0.11.0-cp37-cp37m-win_amd64.whl", hash = "sha256:21837810b14fec5fbd21055f8153f608f4957d8a563055402913a3da6bf602de"}, + {file = "torchaudio-0.11.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f4e9dda9e8d3ce0bbd5e791926219f5054b8b85365c79be2ee90333acf9adbfc"}, + {file = "torchaudio-0.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:317fd8ec39fddb3af1dad906593b9ecdc3edf68e7f5780c42f8de956585ae480"}, + {file = "torchaudio-0.11.0-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7bcd958c31071accc8147f4781acd64743e37fcdc72c06b6eaa37dc88fb1ee28"}, + {file = "torchaudio-0.11.0-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:77add44d291a8a97f3a607cef053f009a27296f5d99f33082c57c4e6c326fafc"}, + {file = "torchaudio-0.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:771bb585311306c416de6ca20f60eb6940bff8f5e3b43fd8204f22d37e794ac2"}, + {file = "torchaudio-0.11.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:70d8bc07f277608d23a9aa08db3fbaf035660254bc12d9b361640c4556777559"}, + {file = "torchaudio-0.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e5e5513fcdd57870061965befbf0765787b25f499c3e00b58f4d844e44183177"}, + {file = "torchaudio-0.11.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7eb1376d2ed2693ada562841500ff84a8be40b63c859d10fb70e423af5f6c2fb"}, + {file = "torchaudio-0.11.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:9d1196a0f21041f60e915c2aa1b3fa9734d23f3b56f78794b2684cbd498a9dcb"}, + {file = "torchaudio-0.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:cd938f5e4a9456112574f28c493422525095c0fa27bd41215ff9d27999e52a2c"}, +] torchvision = [ {file = "torchvision-0.12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:693656e6790b6ab21e4a6e87e81c2982bad9e455b5eb24e14bb672382ec6130f"}, {file = "torchvision-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0be4501ca0ba1b195644c9243f49a1c49a26e52a7f37924c4239d0bf5ecbd8d"}, @@ -3484,155 +3043,91 @@ torchvision = [ {file = "torchvision-0.12.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:b93a767f44e3933cb3b01a6fe9727db54590f57b7dac09d5aaf15966c6c151dd"}, {file = "torchvision-0.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:edab05f7ba9f648c00435b384ffdbd7bde79a3b8ea893813fb50f6ccf28b1e76"}, ] -tornado = [ - {file = "tornado-6.1-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:d371e811d6b156d82aa5f9a4e08b58debf97c302a35714f6f45e35139c332e32"}, - {file = "tornado-6.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:0d321a39c36e5f2c4ff12b4ed58d41390460f798422c4504e09eb5678e09998c"}, - {file = "tornado-6.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9de9e5188a782be6b1ce866e8a51bc76a0fbaa0e16613823fc38e4fc2556ad05"}, - {file = "tornado-6.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:61b32d06ae8a036a6607805e6720ef00a3c98207038444ba7fd3d169cd998910"}, - {file = "tornado-6.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:3e63498f680547ed24d2c71e6497f24bca791aca2fe116dbc2bd0ac7f191691b"}, - {file = "tornado-6.1-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:6c77c9937962577a6a76917845d06af6ab9197702a42e1346d8ae2e76b5e3675"}, - {file = "tornado-6.1-cp35-cp35m-win32.whl", hash = "sha256:6286efab1ed6e74b7028327365cf7346b1d777d63ab30e21a0f4d5b275fc17d5"}, - {file = "tornado-6.1-cp35-cp35m-win_amd64.whl", hash = "sha256:fa2ba70284fa42c2a5ecb35e322e68823288a4251f9ba9cc77be04ae15eada68"}, - {file = "tornado-6.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:0a00ff4561e2929a2c37ce706cb8233b7907e0cdc22eab98888aca5dd3775feb"}, - {file = "tornado-6.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:748290bf9112b581c525e6e6d3820621ff020ed95af6f17fedef416b27ed564c"}, - {file = "tornado-6.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:e385b637ac3acaae8022e7e47dfa7b83d3620e432e3ecb9a3f7f58f150e50921"}, - {file = "tornado-6.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:25ad220258349a12ae87ede08a7b04aca51237721f63b1808d39bdb4b2164558"}, - {file = "tornado-6.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:65d98939f1a2e74b58839f8c4dab3b6b3c1ce84972ae712be02845e65391ac7c"}, - {file = "tornado-6.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:e519d64089b0876c7b467274468709dadf11e41d65f63bba207e04217f47c085"}, - {file = "tornado-6.1-cp36-cp36m-win32.whl", hash = "sha256:b87936fd2c317b6ee08a5741ea06b9d11a6074ef4cc42e031bc6403f82a32575"}, - {file = "tornado-6.1-cp36-cp36m-win_amd64.whl", hash = "sha256:cc0ee35043162abbf717b7df924597ade8e5395e7b66d18270116f8745ceb795"}, - {file = "tornado-6.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7250a3fa399f08ec9cb3f7b1b987955d17e044f1ade821b32e5f435130250d7f"}, - {file = "tornado-6.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ed3ad863b1b40cd1d4bd21e7498329ccaece75db5a5bf58cd3c9f130843e7102"}, - {file = "tornado-6.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:dcef026f608f678c118779cd6591c8af6e9b4155c44e0d1bc0c87c036fb8c8c4"}, - {file = "tornado-6.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:70dec29e8ac485dbf57481baee40781c63e381bebea080991893cd297742b8fd"}, - {file = "tornado-6.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:d3f7594930c423fd9f5d1a76bee85a2c36fd8b4b16921cae7e965f22575e9c01"}, - {file = "tornado-6.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:3447475585bae2e77ecb832fc0300c3695516a47d46cefa0528181a34c5b9d3d"}, - {file = "tornado-6.1-cp37-cp37m-win32.whl", hash = "sha256:e7229e60ac41a1202444497ddde70a48d33909e484f96eb0da9baf8dc68541df"}, - {file = "tornado-6.1-cp37-cp37m-win_amd64.whl", hash = "sha256:cb5ec8eead331e3bb4ce8066cf06d2dfef1bfb1b2a73082dfe8a161301b76e37"}, - {file = "tornado-6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:20241b3cb4f425e971cb0a8e4ffc9b0a861530ae3c52f2b0434e6c1b57e9fd95"}, - {file = "tornado-6.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:c77da1263aa361938476f04c4b6c8916001b90b2c2fdd92d8d535e1af48fba5a"}, - {file = "tornado-6.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:fba85b6cd9c39be262fcd23865652920832b61583de2a2ca907dbd8e8a8c81e5"}, - {file = "tornado-6.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:1e8225a1070cd8eec59a996c43229fe8f95689cb16e552d130b9793cb570a288"}, - {file = "tornado-6.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:d14d30e7f46a0476efb0deb5b61343b1526f73ebb5ed84f23dc794bdb88f9d9f"}, - {file = "tornado-6.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:8f959b26f2634a091bb42241c3ed8d3cedb506e7c27b8dd5c7b9f745318ddbb6"}, - {file = "tornado-6.1-cp38-cp38-win32.whl", hash = "sha256:34ca2dac9e4d7afb0bed4677512e36a52f09caa6fded70b4e3e1c89dbd92c326"}, - {file = "tornado-6.1-cp38-cp38-win_amd64.whl", hash = "sha256:6196a5c39286cc37c024cd78834fb9345e464525d8991c21e908cc046d1cc02c"}, - {file = "tornado-6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0ba29bafd8e7e22920567ce0d232c26d4d47c8b5cf4ed7b562b5db39fa199c5"}, - {file = "tornado-6.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:33892118b165401f291070100d6d09359ca74addda679b60390b09f8ef325ffe"}, - {file = "tornado-6.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7da13da6f985aab7f6f28debab00c67ff9cbacd588e8477034c0652ac141feea"}, - {file = "tornado-6.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:e0791ac58d91ac58f694d8d2957884df8e4e2f6687cdf367ef7eb7497f79eaa2"}, - {file = "tornado-6.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:66324e4e1beede9ac79e60f88de548da58b1f8ab4b2f1354d8375774f997e6c0"}, - {file = "tornado-6.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:a48900ecea1cbb71b8c71c620dee15b62f85f7c14189bdeee54966fbd9a0c5bd"}, - {file = "tornado-6.1-cp39-cp39-win32.whl", hash = "sha256:d3d20ea5782ba63ed13bc2b8c291a053c8d807a8fa927d941bd718468f7b950c"}, - {file = "tornado-6.1-cp39-cp39-win_amd64.whl", hash = "sha256:548430be2740e327b3fe0201abe471f314741efcb0067ec4f2d7dcfb4825f3e4"}, - {file = "tornado-6.1.tar.gz", hash = "sha256:33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791"}, -] -tqdm = [ - {file = "tqdm-4.63.1-py2.py3-none-any.whl", hash = "sha256:6461b009d6792008d0000e1b0c7ca50195ec78c0e808a3a6b668a56a3236c3a5"}, - {file = "tqdm-4.63.1.tar.gz", hash = "sha256:4230a49119a416c88cc47d0d2d32d5d90f1a282d5e497d49801950704e49863d"}, -] -traitlets = [ - {file = "traitlets-5.1.1-py3-none-any.whl", hash = "sha256:2d313cc50a42cd6c277e7d7dc8d4d7fedd06a2c215f78766ae7b1a66277e0033"}, - {file = "traitlets-5.1.1.tar.gz", hash = "sha256:059f456c5a7c1c82b98c2e8c799f39c9b8128f6d0d46941ee118daace9eb70c7"}, -] -transformers = [ - {file = "transformers-4.17.0-py3-none-any.whl", hash = "sha256:5c7d1955693ebf4a69a0fa700b2ef730232d5d7c1528e15d44c1d473b38f57b8"}, - {file = "transformers-4.17.0.tar.gz", hash = "sha256:986fd59255460555b893a2b1827b9b8dd4e5cd6343e4409d18539208f69fb51b"}, -] -typing-extensions = [ - {file = "typing_extensions-4.1.1-py3-none-any.whl", hash = "sha256:21c85e0fe4b9a155d0799430b0ad741cdce7e359660ccbd8b530613e8df88ce2"}, - {file = "typing_extensions-4.1.1.tar.gz", hash = "sha256:1a9462dcc3347a79b1f1c0271fbe79e844580bb598bafa1ed208b94da3cdcd42"}, -] +tornado = [] +tqdm = [] +traitlets = [] +transformers = [] +typer = [] +typing-extensions = [] umap-learn = [ - {file = "umap-learn-0.5.2.tar.gz", hash = "sha256:0ede8921c3ef0e1976cdc91b533b2bce82471c87dbb9fad447f617ca5b881d52"}, -] -urllib3 = [ - {file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"}, - {file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"}, -] -wcwidth = [ - {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, - {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, + {file = "umap-learn-0.5.3.tar.gz", hash = "sha256:dbd57cb181c2b66d238acb5635697526bf24c798082daed0cf9b87f6a3a6c0c7"}, ] +uri-template = [] +urllib3 = [] +wasabi = [] +wcwidth = [] +webcolors = [] webencodings = [ {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, ] -werkzeug = [ - {file = "Werkzeug-2.0.3-py3-none-any.whl", hash = "sha256:1421ebfc7648a39a5c58c601b154165d05cf47a3cd0ccb70857cbdacf6c8f2b8"}, - {file = "Werkzeug-2.0.3.tar.gz", hash = "sha256:b863f8ff057c522164b6067c9e28b041161b4be5ba4d0daceeaa50a163822d3c"}, -] -widgetsnbextension = [ - {file = "widgetsnbextension-3.6.0-py2.py3-none-any.whl", hash = "sha256:4fd321cad39fdcf8a8e248a657202d42917ada8e8ed5dd3f60f073e0d54ceabd"}, - {file = "widgetsnbextension-3.6.0.tar.gz", hash = "sha256:e84a7a9fcb9baf3d57106e184a7389a8f8eb935bf741a5eb9d60aa18cc029a80"}, -] +websocket-client = [] +werkzeug = [] +widgetsnbextension = [] wrapt = [ - {file = "wrapt-1.14.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:5a9a1889cc01ed2ed5f34574c90745fab1dd06ec2eee663e8ebeefe363e8efd7"}, - {file = "wrapt-1.14.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:9a3ff5fb015f6feb78340143584d9f8a0b91b6293d6b5cf4295b3e95d179b88c"}, - {file = "wrapt-1.14.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:4b847029e2d5e11fd536c9ac3136ddc3f54bc9488a75ef7d040a3900406a91eb"}, - {file = "wrapt-1.14.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:9a5a544861b21e0e7575b6023adebe7a8c6321127bb1d238eb40d99803a0e8bd"}, - {file = "wrapt-1.14.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:88236b90dda77f0394f878324cfbae05ae6fde8a84d548cfe73a75278d760291"}, - {file = "wrapt-1.14.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:f0408e2dbad9e82b4c960274214af533f856a199c9274bd4aff55d4634dedc33"}, - {file = "wrapt-1.14.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:9d8c68c4145041b4eeae96239802cfdfd9ef927754a5be3f50505f09f309d8c6"}, - {file = "wrapt-1.14.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:22626dca56fd7f55a0733e604f1027277eb0f4f3d95ff28f15d27ac25a45f71b"}, - {file = "wrapt-1.14.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:65bf3eb34721bf18b5a021a1ad7aa05947a1767d1aa272b725728014475ea7d5"}, - {file = "wrapt-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09d16ae7a13cff43660155383a2372b4aa09109c7127aa3f24c3cf99b891c330"}, - {file = "wrapt-1.14.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:debaf04f813ada978d7d16c7dfa16f3c9c2ec9adf4656efdc4defdf841fc2f0c"}, - {file = "wrapt-1.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:748df39ed634851350efa87690c2237a678ed794fe9ede3f0d79f071ee042561"}, - {file = "wrapt-1.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1807054aa7b61ad8d8103b3b30c9764de2e9d0c0978e9d3fc337e4e74bf25faa"}, - {file = "wrapt-1.14.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:763a73ab377390e2af26042f685a26787c402390f682443727b847e9496e4a2a"}, - {file = "wrapt-1.14.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8529b07b49b2d89d6917cfa157d3ea1dfb4d319d51e23030664a827fe5fd2131"}, - {file = "wrapt-1.14.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:68aeefac31c1f73949662ba8affaf9950b9938b712fb9d428fa2a07e40ee57f8"}, - {file = "wrapt-1.14.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59d7d92cee84a547d91267f0fea381c363121d70fe90b12cd88241bd9b0e1763"}, - {file = "wrapt-1.14.0-cp310-cp310-win32.whl", hash = "sha256:3a88254881e8a8c4784ecc9cb2249ff757fd94b911d5df9a5984961b96113fff"}, - {file = "wrapt-1.14.0-cp310-cp310-win_amd64.whl", hash = "sha256:9a242871b3d8eecc56d350e5e03ea1854de47b17f040446da0e47dc3e0b9ad4d"}, - {file = "wrapt-1.14.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:a65bffd24409454b889af33b6c49d0d9bcd1a219b972fba975ac935f17bdf627"}, - {file = "wrapt-1.14.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9d9fcd06c952efa4b6b95f3d788a819b7f33d11bea377be6b8980c95e7d10775"}, - {file = "wrapt-1.14.0-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:db6a0ddc1282ceb9032e41853e659c9b638789be38e5b8ad7498caac00231c23"}, - {file = "wrapt-1.14.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:14e7e2c5f5fca67e9a6d5f753d21f138398cad2b1159913ec9e9a67745f09ba3"}, - {file = "wrapt-1.14.0-cp35-cp35m-win32.whl", hash = "sha256:6d9810d4f697d58fd66039ab959e6d37e63ab377008ef1d63904df25956c7db0"}, - {file = "wrapt-1.14.0-cp35-cp35m-win_amd64.whl", hash = "sha256:d808a5a5411982a09fef6b49aac62986274ab050e9d3e9817ad65b2791ed1425"}, - {file = "wrapt-1.14.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b77159d9862374da213f741af0c361720200ab7ad21b9f12556e0eb95912cd48"}, - {file = "wrapt-1.14.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36a76a7527df8583112b24adc01748cd51a2d14e905b337a6fefa8b96fc708fb"}, - {file = "wrapt-1.14.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0057b5435a65b933cbf5d859cd4956624df37b8bf0917c71756e4b3d9958b9e"}, - {file = "wrapt-1.14.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a0a4ca02752ced5f37498827e49c414d694ad7cf451ee850e3ff160f2bee9d3"}, - {file = "wrapt-1.14.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:8c6be72eac3c14baa473620e04f74186c5d8f45d80f8f2b4eda6e1d18af808e8"}, - {file = "wrapt-1.14.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:21b1106bff6ece8cb203ef45b4f5778d7226c941c83aaaa1e1f0f4f32cc148cd"}, - {file = "wrapt-1.14.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:493da1f8b1bb8a623c16552fb4a1e164c0200447eb83d3f68b44315ead3f9036"}, - {file = "wrapt-1.14.0-cp36-cp36m-win32.whl", hash = "sha256:89ba3d548ee1e6291a20f3c7380c92f71e358ce8b9e48161401e087e0bc740f8"}, - {file = "wrapt-1.14.0-cp36-cp36m-win_amd64.whl", hash = "sha256:729d5e96566f44fccac6c4447ec2332636b4fe273f03da128fff8d5559782b06"}, - {file = "wrapt-1.14.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:891c353e95bb11abb548ca95c8b98050f3620a7378332eb90d6acdef35b401d4"}, - {file = "wrapt-1.14.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23f96134a3aa24cc50614920cc087e22f87439053d886e474638c68c8d15dc80"}, - {file = "wrapt-1.14.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6807bcee549a8cb2f38f73f469703a1d8d5d990815c3004f21ddb68a567385ce"}, - {file = "wrapt-1.14.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6915682f9a9bc4cf2908e83caf5895a685da1fbd20b6d485dafb8e218a338279"}, - {file = "wrapt-1.14.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:f2f3bc7cd9c9fcd39143f11342eb5963317bd54ecc98e3650ca22704b69d9653"}, - {file = "wrapt-1.14.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:3a71dbd792cc7a3d772ef8cd08d3048593f13d6f40a11f3427c000cf0a5b36a0"}, - {file = "wrapt-1.14.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:5a0898a640559dec00f3614ffb11d97a2666ee9a2a6bad1259c9facd01a1d4d9"}, - {file = "wrapt-1.14.0-cp37-cp37m-win32.whl", hash = "sha256:167e4793dc987f77fd476862d32fa404d42b71f6a85d3b38cbce711dba5e6b68"}, - {file = "wrapt-1.14.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d066ffc5ed0be00cd0352c95800a519cf9e4b5dd34a028d301bdc7177c72daf3"}, - {file = "wrapt-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d9bdfa74d369256e4218000a629978590fd7cb6cf6893251dad13d051090436d"}, - {file = "wrapt-1.14.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2498762814dd7dd2a1d0248eda2afbc3dd9c11537bc8200a4b21789b6df6cd38"}, - {file = "wrapt-1.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f24ca7953f2643d59a9c87d6e272d8adddd4a53bb62b9208f36db408d7aafc7"}, - {file = "wrapt-1.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b835b86bd5a1bdbe257d610eecab07bf685b1af2a7563093e0e69180c1d4af1"}, - {file = "wrapt-1.14.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b21650fa6907e523869e0396c5bd591cc326e5c1dd594dcdccac089561cacfb8"}, - {file = "wrapt-1.14.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:354d9fc6b1e44750e2a67b4b108841f5f5ea08853453ecbf44c81fdc2e0d50bd"}, - {file = "wrapt-1.14.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1f83e9c21cd5275991076b2ba1cd35418af3504667affb4745b48937e214bafe"}, - {file = "wrapt-1.14.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:61e1a064906ccba038aa3c4a5a82f6199749efbbb3cef0804ae5c37f550eded0"}, - {file = "wrapt-1.14.0-cp38-cp38-win32.whl", hash = "sha256:28c659878f684365d53cf59dc9a1929ea2eecd7ac65da762be8b1ba193f7e84f"}, - {file = "wrapt-1.14.0-cp38-cp38-win_amd64.whl", hash = "sha256:b0ed6ad6c9640671689c2dbe6244680fe8b897c08fd1fab2228429b66c518e5e"}, - {file = "wrapt-1.14.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b3f7e671fb19734c872566e57ce7fc235fa953d7c181bb4ef138e17d607dc8a1"}, - {file = "wrapt-1.14.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87fa943e8bbe40c8c1ba4086971a6fefbf75e9991217c55ed1bcb2f1985bd3d4"}, - {file = "wrapt-1.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4775a574e9d84e0212f5b18886cace049a42e13e12009bb0491562a48bb2b758"}, - {file = "wrapt-1.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9d57677238a0c5411c76097b8b93bdebb02eb845814c90f0b01727527a179e4d"}, - {file = "wrapt-1.14.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00108411e0f34c52ce16f81f1d308a571df7784932cc7491d1e94be2ee93374b"}, - {file = "wrapt-1.14.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d332eecf307fca852d02b63f35a7872de32d5ba8b4ec32da82f45df986b39ff6"}, - {file = "wrapt-1.14.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:01f799def9b96a8ec1ef6b9c1bbaf2bbc859b87545efbecc4a78faea13d0e3a0"}, - {file = "wrapt-1.14.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47045ed35481e857918ae78b54891fac0c1d197f22c95778e66302668309336c"}, - {file = "wrapt-1.14.0-cp39-cp39-win32.whl", hash = "sha256:2eca15d6b947cfff51ed76b2d60fd172c6ecd418ddab1c5126032d27f74bc350"}, - {file = "wrapt-1.14.0-cp39-cp39-win_amd64.whl", hash = "sha256:bb36fbb48b22985d13a6b496ea5fb9bb2a076fea943831643836c9f6febbcfdc"}, - {file = "wrapt-1.14.0.tar.gz", hash = "sha256:8323a43bd9c91f62bb7d4be74cc9ff10090e7ef820e27bfe8815c57e68261311"}, -] -zipp = [ - {file = "zipp-3.7.0-py3-none-any.whl", hash = "sha256:b47250dd24f92b7dd6a0a8fc5244da14608f3ca90a5efcd37a3b1642fac9a375"}, - {file = "zipp-3.7.0.tar.gz", hash = "sha256:9f50f446828eb9d45b267433fd3e9da8d801f614129124863f9c51ebceafb87d"}, -] + {file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"}, + {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"}, + {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28"}, + {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59"}, + {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87"}, + {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1"}, + {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b"}, + {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462"}, + {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1"}, + {file = "wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320"}, + {file = "wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2"}, + {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4"}, + {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069"}, + {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310"}, + {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f"}, + {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656"}, + {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c"}, + {file = "wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8"}, + {file = "wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164"}, + {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907"}, + {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3"}, + {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3"}, + {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d"}, + {file = "wrapt-1.14.1-cp35-cp35m-win32.whl", hash = "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7"}, + {file = "wrapt-1.14.1-cp35-cp35m-win_amd64.whl", hash = "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00"}, + {file = "wrapt-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4"}, + {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1"}, + {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1"}, + {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff"}, + {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d"}, + {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1"}, + {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569"}, + {file = "wrapt-1.14.1-cp36-cp36m-win32.whl", hash = "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed"}, + {file = "wrapt-1.14.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471"}, + {file = "wrapt-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248"}, + {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68"}, + {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d"}, + {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77"}, + {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7"}, + {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015"}, + {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a"}, + {file = "wrapt-1.14.1-cp37-cp37m-win32.whl", hash = "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853"}, + {file = "wrapt-1.14.1-cp37-cp37m-win_amd64.whl", hash = "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c"}, + {file = "wrapt-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456"}, + {file = "wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f"}, + {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc"}, + {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1"}, + {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af"}, + {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b"}, + {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0"}, + {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57"}, + {file = "wrapt-1.14.1-cp38-cp38-win32.whl", hash = "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5"}, + {file = "wrapt-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d"}, + {file = "wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383"}, + {file = "wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7"}, + {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86"}, + {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735"}, + {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b"}, + {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3"}, + {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3"}, + {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe"}, + {file = "wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5"}, + {file = "wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb"}, + {file = "wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d"}, +] +zipp = [] diff --git a/pyproject.toml b/pyproject.toml index 92a4861..5a8f570 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Théo Alves Da Costa "] license = "MIT" [tool.poetry.dependencies] -python = ">=3.8,<3.10" +python = ">=3.8,<3.11" jupyter = "^1.0.0" pandas = "^1.3.4" numpy = "^1.21.3" @@ -31,6 +31,12 @@ Click = ">=8.0.4" requests = ">=2.26.0" beautifulsoup4 = ">=4.10.0" chardet = ">=4.0.0" +outputformat = "^0.1.3" +setuptools = "^62.3.2" +wheel = "^0.37.1" +spacy = "^3.3.0" +[tool.poetry.dependencies.en_core_web_lg] +url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.3.0/en_core_web_lg-3.3.0.tar.gz" [tool.poetry.dev-dependencies]