comics
comics copied to clipboard
GoComics API wrapper
I would like to (interactively?) enter my username and password so I can scrape all my comics that were updated "today". I have started coding this using BeautifulSoup and Selenium,...
Code: ```python import comics garfield = comics.search("garfield", date="2025-10-10") print(garfield.endpoint) print(garfield.title) print(garfield.url) print(garfield.image_url) ``` Output: ``` garfield Garfield https://www.gocomics.com/garfield/2025/10/10 --------------------------------------------------------------------------- InvalidDateError Traceback (most recent call last) Cell In[4], line 5 3...
Hi, Is it possible to determine the latest available date available for a comic similar to `comics._constants.directory.get_start_date("peanuts")` I know I could just try to get today's comic and handle the...