Skip to content

Commit

Permalink
bump various versions (run-llama#10807)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored and Izuki Matsuba committed Mar 29, 2024
1 parent 82a317e commit 2b5eb73
Show file tree
Hide file tree
Showing 9 changed files with 5,826 additions and 5,745 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ def __init__(self, integration_token: Optional[str] = None) -> None:

super().__init__(token=token, headers=headers)

@classmethod
def class_name(cls) -> str:
"""Get the name identifier of the class."""
return "NotionPageReader"

def _read_block(self, block_id: str, num_tabs: int = 0) -> str:
"""Read a block."""
done = False
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ license = "MIT"
maintainers = ["jerryjliu"]
name = "llama-index-readers-notion"
readme = "README.md"
version = "0.1.2"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ class BeautifulSoupWebReader(BasePydanticReader):
is_remote: bool = True
website_extractor: Dict[str, Callable] = DEFAULT_WEBSITE_EXTRACTOR

@classmethod
def class_name(cls) -> str:
"""Get the name identifier of the class."""
return "BeautifulSoupWebReader"

def load_data(
self,
urls: List[str],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ class TrafilaturaWebReader(BasePydanticReader):

is_remote: bool = True

@classmethod
def class_name(cls) -> str:
"""Get the name identifier of the class."""
return "TrafilaturaWebReader"

def load_data(
self,
urls: List[str],
Expand Down
6,008 changes: 2,997 additions & 3,011 deletions llama-index-integrations/readers/llama-index-readers-web/poetry.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ license = "MIT"
maintainers = ["HawkClaws", "Hironsan", "NA", "an-bluecat", "bborn", "jasonwcfan", "kravetsmic", "pandazki", "ruze00", "selamanse", "thejessezhang"]
name = "llama-index-readers-web"
readme = "README.md"
version = "0.1.2"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
Expand All @@ -37,7 +37,7 @@ html2text = "^2020.1.16"
aiohttp = "^3.9.1"
beautifulsoup4 = "^4.12.3"
requests = "^2.31.0"
urllib3 = "^2.1.0"
urllib3 = ">=1.1.0"
playwright = ">=1.30,<2.0"
newspaper3k = "^0.2.8"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ class YoutubeTranscriptReader(BasePydanticReader):

is_remote: bool = True

@classmethod
def class_name(cls) -> str:
"""Get the name identifier of the class."""
return "YoutubeTranscriptReader"

def load_data(
self,
ytlinks: List[str],
Expand Down
5,533 changes: 2,804 additions & 2,729 deletions llama-index-integrations/readers/llama-index-readers-youtube-transcript/poetry.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ license = "MIT"
maintainers = ["ravi03071991"]
name = "llama-index-readers-youtube-transcript"
readme = "README.md"
version = "0.1.2"
version = "0.1.3"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
llama-index-core = "^0.10.1"
youtube-transcript-api = ">=0.5.0,<0.6.0"
youtube-transcript-api = ">=0.5.0"

[tool.poetry.group.dev.dependencies]
ipython = "8.10.0"
Expand Down

0 comments on commit 2b5eb73

Please sign in to comment.