Advertisement
calfred2808

#Python Realtime Covid Update

Jul 18th, 2020
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. from covid import Covid
  2.  
  3. covid = Covid()
  4. cases = covid.get_status_by_country_name("Philippines")
  5. for x in cases:
  6.     print(x,":",cases[x])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement