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
| #include <iostream> | |
| #include <cstring> | |
| #include <cstdlib> | |
| #include <windows.h> | |
| using namespace std; | |
| void SetColor(int value){ | |
| SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), value); //for color output |
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
| from bs4 import BeautifulSoup | |
| import requests | |
| import os | |
| import re | |
| class Subscene: | |
| def __init__(self,**kwargs): |