{"id":21557244,"url":"https://github.com/kernel-loophole/scrapy","last_synced_at":"2026-02-18T00:04:15.875Z","repository":{"id":115786117,"uuid":"461314003","full_name":"kernel-loophole/scrapy","owner":"kernel-loophole","description":"Web Scraping and crawling with scrappy","archived":false,"fork":false,"pushed_at":"2023-07-12T05:11:36.000Z","size":1221,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-18T21:56:25.039Z","etag":null,"topics":["beautifulsoup4","scrapy","webscraping"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/kernel-loophole.png","metadata":{"files":{"readme":"README.md","changelog":"news scrapping/second/__pycache__/__init__.cpython-38.pyc","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":"2022-02-19T21:10:08.000Z","updated_at":"2023-07-18T09:10:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"a5b6de0e-8aa1-4494-89f1-70df1c2be21c","html_url":"https://github.com/kernel-loophole/scrapy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kernel-loophole/scrapy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernel-loophole%2Fscrapy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernel-loophole%2Fscrapy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernel-loophole%2Fscrapy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernel-loophole%2Fscrapy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kernel-loophole","download_url":"https://codeload.github.com/kernel-loophole/scrapy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kernel-loophole%2Fscrapy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29563304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T21:50:49.831Z","status":"ssl_error","status_checked_at":"2026-02-17T21:46:15.313Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["beautifulsoup4","scrapy","webscraping"],"created_at":"2024-11-24T08:11:45.364Z","updated_at":"2026-02-18T00:04:15.838Z","avatar_url":"https://github.com/kernel-loophole.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# scrapy\nWeb Scraping and crawling with scrapy\n# scraping wikipedia title pages\n\n\n![deom_scraping_gif](https://user-images.githubusercontent.com/76658396/168424063-6069a8e9-5638-4bd2-9913-a1a2c63df714.gif)\n\n\n# simple news scarpper\n\n```python\n\nclass SecondSpider(Spider):\n    name = 'second'\n    start_urls = ['https://www.thenews.com.pk/']\n    def make(response):\n        x=response.xpath('//div[@id=\"content_left\"]/div[@class=\"result c-container \"]/h3/a/text()').extract()\n        yield x\n    def parse(self, response):\n        logging.getLogger('scrapy').propagate = False\n        m = '.heading-cat'\n        counter=0\n        for test in response.css(m):\n            Name_SELECTOR = 'h2::text'\n            counter+=1\n            x=yield {\n                counter: test.css(Name_SELECTOR).extract_first(),\n            }\n            print(cs('Head Line #====',\"red\"),counter)\n            print(cs(test.css(Name_SELECTOR).extract_first(),\"yellow\"),)\n        print(cs(\"Total\",\"red\"),counter)\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkernel-loophole%2Fscrapy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkernel-loophole%2Fscrapy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkernel-loophole%2Fscrapy/lists"}