Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
remove date from imgbox.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Dec 4, 2023
1 parent dc9989b commit e2b4938
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.18"
__version__ = "5.0.19"
2 changes: 0 additions & 2 deletions cyberdrop_dl/scraper/crawlers/imgbox_crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ async def album(self, scrape_item: ScrapeItem) -> None:
soup = await self.client.get_BS4(self.domain, scrape_item.url)

title = await self.create_title(soup.select_one("div[id=gallery-view] h1").get_text().strip().rsplit(" - ", 1)[0], scrape_item.url.parts[2], None)
date = await self.parse_datetime(title.split(" UTC)")[0].split("(")[-1])

scrape_item.possible_datetime = date
scrape_item.part_of_album = True
await scrape_item.add_to_parent_title(title)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cyberdrop-dl"
version = "5.0.18"
version = "5.0.19"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit e2b4938

Please sign in to comment.