Telegram Group Search
چگونه با پایتون یوزر و پسوردهای سیو شده ی wifi مون را ببینیم؟!
import subprocess

a = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles']).decode('utf-8').split('\n')
#print(a)
a = [i.split(":")[1][1:-1] for i in a if "All User Profile" in i]
#print(a)
for i in a:
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key=clear']).decode('utf-8').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, ""))
توجهتونو به انواع کپی در پایتون جلب می نمایم:
کپی رفرنس - کپی shallow و کپی عمیق یا deep
حالت 1 از 3:
کپی رفرنس. b فقط نام دیگری برای a است
حال 2 از 3:
کپی کم عمق یا shallow
حالت 3 از 3 :
کپی عمیق
قابلیت mosaic در رسم نمودار
This media is not supported in your browser
VIEW IN TELEGRAM
#قابلیت_جدید

Add native SQL cells to query your database connections in Datalore Enterprise 2021.3. The query result is automatically transferred to a pandas DataFrame and you can continue your work in Python 🐍

https://www.jetbrains.com/datalore/enterprise/
A free available book about Simple patterns for building complex applications
کتابی در مورد پترن‌های ساده برای ساختن اپلیکیشن‌های پیچیده با پایتون که به رایگان و آنلاین قابل مطالعه است.

#python #book #architecture #pattern #design #anti

https://www.cosmicpython.com/book/preface.html
Python custom formatting

Python objects can define their own formatting mini-languages for f-strings by defining format.

https://nedbatchelder.com/blog/202204/python_custom_formatting.html
جرمی هاوارد یه آموزش ساده استفاده از jupyter توی kaggle برای تازه کارا گذاشته:
https://www.kaggle.com/code/jhoward/jupyter-notebook-101
When Python can’t thread: a deep-dive into the GIL’s impact.
چرا در پایتون به معنای واقعی نمیتوانیم thread داشته باشیم. توی این مقاله جالب بصورت ملموس در مورد GIL در پایتون صحبت میشه.

#python #gil #thread #deepdive

https://pythonspeed.com/articles/python-gil
Gooey

فقط با یک خط به اپلیکیشنتون UI اضافه کنید!

pip install Gooey 

Turn (almost) any Python command line program into a full GUI application with one line!

https://github.com/chriskiehl/Gooey
Forwarded from Tensorflow(@CVision) (Alireza Akhavan)
کلاس‌ویژن با همکاری دیجی‌نکست برگزار میکند

دوره‌ی تخصصی شبکه های عصبی مولد عمیق و GAN

https://class.vision/product/gan-deep-generative/
کی میتونه این کدو شرح بده؟
آیا تا به حال شده که بخواید با پایتون معادله بنویسید؟
قطعا SymPy به کارتان می آید!
2025/06/14 19:11:15
Back to Top
HTML Embed Code: