Guest User

Untitled

a guest
Dec 18th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import requests
  2. from bs4 import BeautifulSoup
  3. page = requests.get("https://poloniex.com/exchange#usdt_dash")
  4. soup = BeautifulSoup(page.content, 'html.parser')
  5. print(soup.find(class_='info'))
Add Comment
Please, Sign In to add comment