🐍 Python & Raspberry 🐍
8.21K subscribers
1.92K photos
125 videos
623 files
1.23K links
Python- Raspberry Pi-AI-IOT
ادمین : فرهاد ناصری زاده
@farhad_naserizadeh
@farhad3412

گروه پایتون
@Python_QA
تبادل
@mmtahmasbi
کانال مرتبط
@new_mathematical
@micropython_iot
@c_micro
اینستاگرام
http://Instagram.com/python_raspberry
Download Telegram
گیت هاب قابلیت جدیدی برای تعیین وضعیت کاربرانش تعیین کرده
با این ویژگی جدید میتونید ب بازدید کننده ها اعلام کنید الان مشغول کاری هستید یا مسافرت هستید یا هر مورد دیگری
@raspberry_python
#آموزش

🔰 How to Access SMTP in Gmail with Python


from smtplib import SMTP

host="smtp.gmail.com"
port= 587

username= "abc@gmail.com"
password= "abc123"

from_email= username
to_list= ("example1@gmail.com", "example2@gmail.com")

CON= SMTP(host, port)
CON.starttls()
CON.login(username, password)
CON.sendmail(from_email, to_list, "Hey")
CON.quit()


❇️ @raspberry_python
#آموزش
روشن شدن وبکم لپتاپ و مشاهده تصویر با پایتون

import cv2
import numpy as np
cap = cv2.VideoCapture(1)
while True:
ret, frame = cap.read()
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destoryAllWindows()

❇️ @raspberry_python
#آموزش
روشن شدن وبکم لپتاپ و ایجاد دو تصویر رنگی و سیاه سفید با پایتون
import cv2
import numpy as np
cap = cv2.VideoCapture(1)
while True:
ret, frame = cap.read()
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
cv2.imshow('frame', frame)
cv2.imshow('gray', gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destoryAllWindows()

❇️ @raspberry_python
Forwarded from Python Socket
Part1 - Introduction to SQL.pdf
127.9 KB
دوستان سلام. اولین مطلب از مجموعه مباحث SQL با پایتون به پیوست آمده است. لطفا مطالعه بفرمائید.
#DB
#pythonsocket
Forwarded from Python Socket
Scapy Installation and Usage.pdf
326.6 KB
اولین مطلب از مجموعه مباحث Scapy جهت مطالعه به پیوست آمده است. لطفا مطالعه بفرمائید.
#Scapy
#pythonsocket
Forwarded from Sadra Codes
🔍 Create Your Own Command in Linux like rtls


https://ccm.net/faq/2540-linux-create-your-own-command

🔰 @lnxpylnxpy
This media is not supported in your browser
VIEW IN TELEGRAM
Arduino. Raspberry pi. 3dprint. Rubiks cube

@raspberry_python
Forwarded from Python Socket
Python Sec - RSA - Part1.pdf
271.4 KB
دوستان سلام. مطلب RSA رمزنگاری نامتقارن بخش اول به پیوست آمده است. موضوع اصلی برنامه نویسی با پایتون خواهد بود که در شماره ۲ ارایه می شود.
@pythonsocket
#Sec
#آموزش

نوشتن در فایل اکسل با پایتون

❇️ How to Write to a CSV File in Python

import csv

studentsdata= [["Jessica Wallens", 1987], ["Samantha Peters", 1988],
["Jessica Warren", 1990]]

with open ("Students.csv", "w", newline="") as file:
writedata= csv.writer(file)
writedata.writerows(studentsdata)


🔰 @raspberry_python
چند کتاب در حوزه رمزنگاری 👇
از طرف مهندس
@Druidlord