Permet de donner un conseil chaque jour.. Pour améliorer notre quotidien, Ou pas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.py 328 B

123456789101112131415
  1. #Twitter Information
  2. advice_api = 'https://api.adviceslip.com/advice'
  3. twitter = {
  4. 'consumer_key' : "xxxxxxxxxxxxxxxx",
  5. 'consumer_secret' : "xxxxxxxxxxxxxxxx",
  6. 'access_token' : "xxxxxxxxxxxxxxxx",
  7. 'access_token_secret' : "xxxxxxxxxxxxxxxx"
  8. }
  9. def main():
  10. print(twitter)
  11. if __name__ == '__main__':
  12. main()