Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import requests ; from bs4 import BeautifulSoup
  2.  
  3. response = requests.get("https://www.mql5.com/en/signals/272351")
  4. soup = BeautifulSoup(response.text,"lxml")
  5. for title in soup.select("div#growth_chart"):
  6. print(title.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement