5 파이썬 자동화 스크립트
1, 주소 단축기
import py shorten ers
s = py shorten ers;
long _ URL = input ("enter the URL to shorten:")
short _ URL = S. bit ly.short (le 대부분의 링크 단축기에는 API 키가 필요하지만 수십만 개의 요청이 있을 것으로 예상되지 않는 한 일반적으로 무료입니다. Bit.ly, Adf.ly, Tinyurl 과 같은 API 가 SaaS 어플리케이션과 Telegram 로봇에 매우 적합하다는 것을 알게 되었습니다.
2, 유사 정보 작성
import pandas a SPD from faker import faker
# createobject fake = faker ()
# gaker Fake.email ()
fake.date ()
fake.country () fake.phone _ number ()
Dato frame creotion fake data frame = pd.data frame ({'date': [fake.date () for I in range (5)],,) Femail': [fake.email () for I in range (5)], "text': [fake.text () for I in range (5) 이 스크립트는 몇 명의 다른 사람을 만들어 데이터 프레임 에 저장하는 것은 약간 복잡한 개념이다. 내가 그다지 신뢰하지 않는 사이트에 정보를 제공해야 하거나, 다른 사람이 나의 어떤 정보로도 거슬러 올라가지 않기를 바란다면, 나는 이 가짜 정보를 사용할 것이다. (존 F. 케네디, 믿음명언)
3, 유쿠 비디오 다운로더
from py tube import YouTube
link = input ("enter a YouTube video's URL") #; /")
# find the email or phone field and enter the email or phone number email _ field = driver.find _ element \ Email _ field.send _ keys ("your _ email _ or _ phone")
# find the password field and enter tor Password _ field.send _ keys ("your _ password")
# find the login button and click it
log 웹 브라우저를 열고 코드에 제공된 다양한 명령에 따라 탐색합니다. 이 특정 코드 블록에서 브라우저는 페이스북으로 점프하여 웹 페이지에서 수정할 특정 요소를 찾습니다. 여기서는 e-메일 및 암호 필드에 특정 문자를 입력한 다음 "로그인" 버튼을 클릭합니다. 유효한 자격 증명이 제공된 경우 사용자가 자동으로 로그인됩니다.
5, 나토 음표 암호화
def encrypt _ message (message):
NATO _ alphabet = {
' a' G': "golf," h: hotel',
"I':" India', 숟가락': "Juliet'," k ":"kik " "Oscar'," p': P':‘Papa',
"q':" Quebec', "r': Romeo',' s':" sierrs Z': "Zulu'
encrypted _ message w
# iterate through each letter in the message
for letter Add the corresponding codeword to the encrypted messag
if letter.upper () in NATO _ alphabet:
encrypter +"n
# I the letter is not in the dictionary, Add the original letter to the encrypted message
else:
encrypted _ message+= letter
return ence Sage = encrypt _ message (message)
print ("encrypted message:", encrypted_message)