#include<stdio.h>
int main(int argc, char *argv[])
{
printf("Hello, World !");
return 0;
}
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 sys | |
| import cfscrape | |
| from bs4 import BeautifulSoup as BS | |
| import argparse | |
| from node_vm2 import VM | |
| import re | |
| BASE_URL = 'https://kissmanga.com' | |
| args = None | |
| scraper = cfscrape.create_scraper(delay=10) |
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 os | |
| import subprocess | |
| import re | |
| import sys | |
| #from defusedxml.ElementTree import parse as parsexml | |
| from xml.etree.ElementTree import parse as parsexml | |
| from xml.etree.ElementTree import register_namespace | |
| from xml.etree.ElementTree import dump as xmldump | |
| from xml.etree.ElementTree import fromstring as xmlfromstring | |
| import ntpath |
NewerOlder