Python Projects & Free Courses
61.5K subscribers
88 photos
1 video
45 files
12 links
Free Python Projects & Free Courses
Download Telegram
🚀 Free Courses & Certifications from Google, AWS & Microsoft! 🎓

Just found some amazing 100% FREE resources from top tech giants — perfect for boosting your resume and skills 💼

👇 Grab them here:

🔹 Google Certificates – https://grow.google/certificates/
🔹 Google Cloud – https://cloud.google.com/learn
🔹 Skillshop (Google Ads, etc.) – https://skillshop.withgoogle.com/

🔹 AWS Skill Builder – https://aws.amazon.com/training/digital/
🔹 AWS Educate – https://aws.amazon.com/education/awseducate/

🔹 Microsoft Learn – https://learn.microsoft.com/en-us/training/
🔹 Free Microsoft Exams (Students) – https://aka.ms/student-certification

Enroll now and thank me later 😉🔥
79🔥3👍2🙏1
# Get WiFi Passwords using Python 💻

Code 👇👇👇👇👇👇👇👇

import subprocess
import re

command_output = subprocess.run(["netsh", "wlan", "show", "profiles"], capture_output = True).stdout.decode()

profile_names = (re.findall("All User Profile : (.*)\r", command_output))

wifi_list = list()

if len(profile_names) !=0:
for name in profile_names:

wifi_profile = dict()

profile_info = subprocess.run(["netsh", "wlan", "show", "profile", name], capture_output = True).stdout.decode()

if re.search("Security Key : Absent", profile_info):
continue
else:

wifi_profile["ssid"] = name

profile_info_pass = subprocess.run(["netsh", "wlan", "show", "profile", name, "key=clear"], capture_output = True).stdout.decode()

password = re.search("Key Content : (.*)\r", profile_info_pass)

if password == None:
wifi_profile["password"] = None

else:
wifi_profile["password"] = password[1]

wifi_list.append(wifi_profile)


for x in range(len(wifi_list)):
print(wifi_list[x])
118👍13🥰5😍5
Python Handwritten Notes PDF Guide (1).pdf
32.3 MB
For more content like this react ♥️ on the Post ✔️
145🔥71
16🔥3👏1