Advertisement
Guest User

Untitled

a guest
Oct 15th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import requests
  2. from bs4 import BeautifulSoup
  3.  
  4. soup = BeautifulSoup(requests.get("https://www.nyaa.se/").text, 'html.parser')
  5. qqq = soup.find_all("td", {"tlistname"})
  6. for www in qqq:
  7.     print (www.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement