Guest User

Untitled

a guest
Jun 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import apikeys
  2.  
  3. counter = 0
  4. while True:
  5. counter += 1
  6. print(counter)
  7. if counter == 10:
  8. print('We're Done Here')
  9. break
  10.  
  11.  
  12. #if i place the api keys here it works fine,
  13. #key = randomnumbers
  14. #secret = randomrumbers
  15. #api_url = url
  16.  
  17.  
  18. client = AuthenticatedClient(key, secret, api_url)
Add Comment
Please, Sign In to add comment