This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import obspython as obs | |
| from bs4 import BeautifulSoup | |
| import re | |
| # Variables globales | |
| issue_id = "" | |
| title_source_name = "" | |
| body_source_name = "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Necesario instalar la librería requests: | |
| # pip install requests | |
| import requests | |
| import obspython as obs | |
| from textwrap import wrap | |
| # Tu información de autenticación de Twitch. | |
| client_id = '' | |
| client_secret = '' |