“Код Python для шифрования и расшифровки строки с паролем” Ответ

шифровать и расшифровать Python

# encrypting
from cryptography.fernet import Fernet
message = "my deep dark secret".encode()

f = Fernet(key)
encrypted = f.encrypt(message)
# decrypting
from cryptography.fernet import Fernet
encrypted = b"...encrypted bytes..."

f = Fernet(key)
decrypted = f.decrypt(encrypted)
Blue Butterfly

Код Python для шифрования и расшифровки строки с паролем

from bs4 import BeautifulSoup
import requests

print('enter Username : ')

x = input()

url = 'https://privatephotoviewer.com/usr/'

page = requests.get (url+x)

soup = BeautifulSoup (page.text, "html.parser")
name = soup.find_all('h1', id='userfullname')[0].get_text()
followers = soup.find_all('span', class_='followerCount')[0].get_text()
following = soup.find_all('span', id='following')[0].get_text()
posts = soup.find_all('span', id='posttoal')[0].get_text()
print("name : ", name)
print("Followers : ", followers)
print("Following : ", following)
print("Posts : ", posts)
print("created by elamri")
ana ana

Ответы похожие на “Код Python для шифрования и расшифровки строки с паролем”

Вопросы похожие на “Код Python для шифрования и расшифровки строки с паролем”

Больше похожих ответов на “Код Python для шифрования и расшифровки строки с паролем” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования