Most Unix/Linux systems come with python pre-installed:
$ python -V
interface RequireContext { | |
keys(): string[]; | |
(id: string): {}; | |
} | |
interface RequireFunction { | |
context: (path: string, deep?: boolean, filter?: RegExp) => RequireContext; | |
} | |
declare var require: RequireFunction; |
from bs4 import BeautifulSoup | |
from urllib.request import urlopen | |
import threading | |
eMails = [] | |
urls = [] | |
last_urls =[] | |
def findEmail(url, TTL, mainUrl): | |
eMail = '' | |
try: | |
#Сразу отсеим ссылки на документы pdf |
/* | |
JavaScript Caesar shift | |
by Evan Hahn (evanhahn.com) | |
"Encrypt" like this: | |
caesarShift('Attack at dawn!', 12); // Returns "Mffmow mf pmiz!" | |
And "decrypt" like this: |