Guest User

Untitled

a guest
Jan 24th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. url = 'https://finance.services.appex.bing.com/Market.svc/ChartAndQuotes?symbols=160.1.KER.PAR&chartType=5y'
  2. resp = requests.get(url=url)
  3. prices_gucci = resp.json()
  4. df = pd.DataFrame(prices_gucci[0]['Chart']['Series'])
  5.  
  6. IsStitched P T
  7. 0 NaN 149.00 7397280
  8. 1 NaN 148.05 10080
  9. 2 NaN 147.50 20160
  10.  
  11. P timestamp
  12. 0 152.20 2014-01-16 22:00:00
  13. 1 149.00 2014-01-23 22:00:00
Add Comment
Please, Sign In to add comment