چنل پایتون | جنگو | برنامه نویسی وب سایت | HTML & CSS & JS
442 subscribers
295 photos
142 videos
41 files
212 links
ارتباط با مدیر:

@Amir_1234_ka
Download Telegram
پروف برنامه نویسی 😉
ایده پروژه های پایتون😅
5👍1
This media is not supported in your browser
VIEW IN TELEGRAM
ساخت فولدر مخفی در ویندوز 😐به عقل جن هم نمیرسیددد😱
🔥3
نکاتی که باید هنگام خرید گوشی دست دوم دقت کنید🤫
3
بهترین گوشی ها از نظر دوربین😄
4🤣1
شروع آموزش🏅🏅🏅 کامل 🏅🏅🏅شی گرایی در ++C
3
ساخت بازی گرافیکی هنگ من با پایتون ❤️😁
3🔥1
گروه مارو هم دنبال کنید😁❤️
Create Audio Book using Python
ساخت کتاب صوتی با پایتون 😁

#Python #code
🔥6
Helium is a Python library for automating Chrome and Firefox browsers, built on top of Selenium, allowing simpler and more readable automation scripts

https://github.com/mherrmann/helium



#Python #library
3
ابزار های هوش مصنوعی برای هکر ها

#هک_امنیت
#هوش_مصنوعی

لطفا کانال را دنبال کنید تا اموزشات را از دست ندهید❤️
🔥3👍1
هک رمز وای فای با پایتون
import subprocess

data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles']).decode('utf-8', errors="backslashreplace").split('\n')
profiles = [i.split(":")[1][1:-1] for i in data if "All User Profile" in i]

for i in profiles:
try:
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key=clear']).decode('utf-8', errors="backslashreplace").split('\n')
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]

try:
print ("{:<30}| {:<}".format(i, results[0]))
except IndexError:
print ("{:<30}| {:<}".format(i, ""))

except subprocess.CalledProcessError:
print ("{:<30}| {:<}".format(i, "ENCODING ERROR"))
👍5