{"id":22173467,"url":"https://github.com/codeat3/comics-config","last_synced_at":"2026-01-05T19:05:31.633Z","repository":{"id":109779550,"uuid":"230734536","full_name":"codeat3/comics-config","owner":"codeat3","description":"A configuration information for the comics informationt to fetch","archived":false,"fork":false,"pushed_at":"2020-01-02T04:20:13.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-29T22:33:12.735Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codeat3.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-29T10:24:15.000Z","updated_at":"2020-01-02T04:20:15.000Z","dependencies_parsed_at":"2023-06-11T19:45:11.288Z","dependency_job_id":null,"html_url":"https://github.com/codeat3/comics-config","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeat3%2Fcomics-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeat3%2Fcomics-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeat3%2Fcomics-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeat3%2Fcomics-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeat3","download_url":"https://codeload.github.com/codeat3/comics-config/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245320719,"owners_count":20596238,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-02T07:33:32.071Z","updated_at":"2026-01-05T19:05:26.594Z","avatar_url":"https://github.com/codeat3.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## Comics Config? What is it for?\nThis one is very much inspired by [comic_selectors](https://github.com/oseparovic/comic_selectors) by [oseparovic](https://github.com/oseparovic/). The list there acts as a backend selector for the wonderful app named [PageFlip which is a comic reader app on Android](https://play.google.com/store/apps/details?id=com.printandpixel.pageflip2\u0026hl=en_US).\n\nBut here we have a more generic purpose, of collecting the comic strips and an info about them (how to traverse them with CSS selectors) as a common database.\n\nThe config is in the format of the json, where each json element consists of the following keys:\n```json\n\"title\": \"Adam@Home\",\n\"author\": \"Rob Harrell\",\n\"source\": \"gocomics.com\",\n\"url\": \"https://www.gocomics.com/adamathome/1995/06/20\",\n\"image\": {\n    \"selector\": \".item-comic-image img\",\n    \"index\": \"0\"\n},\n\"first_comic\": {\n    \"selector\": \".fa-backward\",\n    \"index\": \"0\"\n},\n\"last_comic\": {\n    \"selector\": \".fa-forward\",\n    \"index\": \"0\"\n},\n\"previous_comic\": {\n    \"selector\": \".fa-caret-left\",\n    \"index\": \"0\"\n},\n\"next_comic\": {\n    \"selector\": \".fa-caret-right\",\n    \"index\": \"0\"\n},\n\"random_comic\": {\n    \"selector\": \".gc-calendar-nav__select \u003e a.btn-outline-secondary\",\n    \"index\": \"0\"\n}\n```\n\n**title**: A title of the comic  \n**author**: An author of the comic  \n**source**: Source - from where did we got this information  \n**url**: The url which we can use to play with following selectors  \n**image**: selectors on how to get the image  \n**image.selector**: css selector on the page to fetch the image  \n**image.index**: index on the above selector - where image can be found  \n**first_comic**: selectors on how to get the link of the first comic  \n**first_comic.selector**: css selector on the page to fetch the link of the first comic  \n**first_comic.index**: index on the above selector - where link can be found  \n**last_comic**: selectors on how to get the link of the last comic  \n**last_comic.selector**: css selector on the page to fetch the link of the last comic  \n**last_comic.index**: index on the above selector - where link can be found  \n**previous_comic**: selectors on how to get the link of the previous comic  \n**previous_comic.selector**: css selector on the page to fetch the link of the previous comic  \n**previous_comic.index**: index on the above selector - where link can be found  \n**next_comic**: selectors on how to get the link of the next comic  \n**next_comic.selector**: css selector on the page to fetch the link of the next comic  \n**next_comic.index**: index on the above selector - where link can be found  \n**random_comic**: selectors on how to get the link of the random comic  \n**random_comic.selector**: css selector on the page to fetch the link of the random comic  \n**random_comic.index**: index on the above selector - where link can be found  \n\n### If you want to contribute, how can check if you have correctly configured the CSS selectors?\nThe steps are same as the one mentioned on [https://github.com/oseparovic/comic_selectors](https://github.com/oseparovic/comic_selectors), till the time we add proper testing tools for automatically validating the configs.\n\n## Issues\nFeel free to [open an issue](https://github.com/codeat3/comics-config/issues/new), if you have any. Or use the same to throw a question at us.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeat3%2Fcomics-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeat3%2Fcomics-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeat3%2Fcomics-config/lists"}