Skip to content
Snippets Groups Projects
Unverified Commit 827feb1a authored by Logan's avatar Logan Committed by GitHub
Browse files

bump various versions (#10807)

parent 8431e7ba
No related branches found
No related tags found
No related merge requests found
Showing
with 5826 additions and 5745 deletions
......@@ -47,6 +47,11 @@ class NotionPageReader(BasePydanticReader):
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
......
......@@ -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"
......
......@@ -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],
......
......@@ -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],
......
......@@ -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"
......@@ -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"
......
......@@ -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],
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment