Final version
This commit is contained in:
parent
d7fd3dd578
commit
63e275fa2f
30 changed files with 2918 additions and 5 deletions
|
@ -1,8 +1,8 @@
|
|||
import requests
|
||||
from parsel import Selector
|
||||
|
||||
response = requests.get('https://us.pycon.org/2024/schedule/tutorials/')
|
||||
response = requests.get("https://us.pycon.org/2024/schedule/tutorials/")
|
||||
|
||||
sel = Selector(text=response.text)
|
||||
for tutorial in sel.css('.calendar a::text').getall():
|
||||
print(tutorial)
|
||||
for tutorial in sel.css(".calendar a::text").getall():
|
||||
print(tutorial)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue