config.py 595 B

12345678910111213141516171819202122232425262728293031
  1. # API KEYS
  2. api_key = {
  3. 'jcdecaux_vls' : '',
  4. 'google_maps' : ''
  5. }
  6. # PARAMÈTRES DES SOURCES D'EVENEMENTS
  7. sources_params = {
  8. 'jcdecaux_vls' : {
  9. 'limit_full' : 4, # en dessous de cette limite, une notificaation est envoyée
  10. 'limit_empty': 4 # idem
  11. }
  12. }
  13. # NOTIFICATIONS
  14. notification = {
  15. 'methods' : ['print'], # "free", "sendmail"
  16. 'free' : { # méthode "free" (sms api voir http://mobile.free.fr/ )
  17. 'user' : '123456789',
  18. 'pass' : 'wwwwwwwww'
  19. },
  20. 'sendmail' : { # méthode "sendmail"
  21. 'to' : 'example@example.com',
  22. 'object' : 'Notification trafic'
  23. }
  24. }