sample_config.env 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # Remove this line first before doing anything else
  2. ___________PLOX_______REMOVE_____THIS_____LINE__________=True
  3. #
  4. # Get from https://my.telegram.org/
  5. #
  6. API_KEY=""
  7. API_HASH=""
  8. #
  9. # Generate using generate_string_session.py. Otherwise you can generate session file using generate_session_file.py
  10. #
  11. STRING_SESSION=""
  12. #
  13. # Screenshot Layer API Key for .screenshot command
  14. # Get from https://screenshotlayer.com/
  15. # Please refer to README for getting the key
  16. #
  17. SCREENSHOT_LAYER_ACCESS_KEY=""
  18. #
  19. # OpenWeather Map API Key for .weather command
  20. # Get from https://openweathermap.org/
  21. #
  22. OPEN_WEATHER_MAP_APPID=""
  23. #
  24. # In case you want to turn on logging, set this True.
  25. #
  26. BOTLOG=False
  27. #
  28. # Chat ID for Botlog.
  29. # Get it from group management bots such as Rose, or using the .chatid Paperplane command.
  30. # This is an integer, please don't wrap it in quotes.
  31. #
  32. BOTLOG_CHATID=0
  33. #
  34. # If you want verbosity on the Logging
  35. #
  36. CONSOLE_LOGGER_VERBOSE=False
  37. #
  38. # PM Auto-Ban Feature Switch
  39. #
  40. PM_AUTO_BAN=False
  41. #
  42. # Your MongoDB Atlas URL
  43. #
  44. MONGO_DB_URI=""
  45. #
  46. # Spotify Configuration
  47. # Obtain Client ID and Secret from https://developer.spotify.com/dashboard
  48. # Make sure to set redirect URL to https://google.com
  49. # Get Session with scripts/generate_spotify_session.py script.
  50. #
  51. SPOTIPY_CLIENT_ID=""
  52. SPOTIPY_CLIENT_SECRET=""
  53. SPOTIPY_SESSION=""
  54. # You have to have your own unique two values for API_KEY and API_SECRET
  55. # Obtain yours from https://www.last.fm/api/account/create for Last.fm
  56. LASTFM_API=""
  57. LASTFM_SECRET=""
  58. LASTFM_USERNAME="" # Your last.fm username
  59. LASTFM_PASSWORD="" # Your last.fm password
  60. # Detect and mute spambots which match the
  61. # Paperplane algorithm after they join a group.
  62. # Use at your own risk, the algorithm is in beta stage.
  63. WELCOME_MUTE=False
  64. # Google Drive upload folder
  65. GDRIVE_FOLDER=""
  66. # Heroku configuration for Updater
  67. HEROKU_APIKEY="" # Get from https://dashboard.heroku.com/account
  68. HEROKU_APPNAME=""
  69. # Wolfram ID
  70. # Get an API KEY from products.wolframalpha.com/api/
  71. WOLFRAM_ID=""