Final version
This commit is contained in:
parent
d7fd3dd578
commit
63e275fa2f
30 changed files with 2918 additions and 5 deletions
|
@ -1,12 +1,13 @@
|
|||
import scrapy
|
||||
|
||||
|
||||
class PyConUS2024Spider(scrapy.Spider):
|
||||
name = "pyconus"
|
||||
|
||||
start_urls = [
|
||||
'https://us.pycon.org/2024/schedule/tutorials/',
|
||||
"https://us.pycon.org/2024/schedule/tutorials/",
|
||||
]
|
||||
|
||||
def parse(self, response):
|
||||
for tutorial in response.css('.calendar a::text').getall():
|
||||
for tutorial in response.css(".calendar a::text").getall():
|
||||
yield {"title": tutorial}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue