Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
-
- # client_id : Votre client_ID de l'application que vous avez créé sur Betaseries. Sinon voir ici : https://www.betaseries.com/api/
- # login : Votre utilisateur betaseries
- # password : Votre mot de passe betaseries en md5. https://www.md5hashgenerator.com/
- # Votre user_id sur telegram : https://bigone.zendesk.com/hc/en-us/articles/360008014894-How-to-get-the-Telegram-user-ID-
- # token_bot : le token du bot que vous avez créé sur telegram. Contactez Botfather pour le créer
- import json
-
-
-
- with open('user_config.json') as json_file:
- config = json.load(json_file)
-
-
-
- with open('watched_series.json') as json_file:
- series = json.load(json_file)
-
-
- def main():
- print("Fini")
-
-
- if __name__ == '__main__':
- main()
|