🐍 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
نصب MySQL در پایتون ۳

@raspberry_python
دوستان، گروهی زدیم برای خرید و فروش قطعات الکترونیکی
https://t.me/joinchat/DfbT1ljqDEp9mZH-4lW1sQ

@raspberry_python
Forwarded from AI & DSP (فرهاد ناصری زاده)
Sabu_M_Thampi_ADVANCES_IN_SIGNAL.pdf
52.9 MB
پردازش سیگنال و سیستم های هوشمند با استفاده از رزبری پای

Advances in Signal Processing and Intelligent Recognition Systems

🌟 انتشارات اشپرینگر 2019


❇️ @ai_dsp
Advanced R Statistical Programming and Data Models
Analysis, Machine Learning,
and Visualization

🌟 2019

❇️ @raspberry_python
Matt_Wiley,_Joshua_F_Wiley_Advanced.pdf
70.1 MB
Advanced R Statistical
Programming and Data Models
Analysis, Machine Learning,
and Visualization

🌟 2019

❇️ @raspberry_python
#آموزش

برای اینکه نوشته های خروجیمون را رنگی کنیم میتونیم از کد روش های زیر استفاده کنیم:

۱.استفاده از ANSI escape sequence ها :


colors={'BOLD': '\x1b[1m',
'UNDERLINE': '\x1b[4m',
'FAIL': '\x1b[91m',
'ENDC': '\x1b[0m',
'WARNING': '\x1b[93m',
'OKGREEN': '\x1b[92m',
'OKBLUE': '\x1b[94m',
'HEADER': '\x1b[95m'}

print(colors['BOLD'+"SOME_TEXT"+colors['ENDC']}


۲.میتونید از کتابخونه termcolor استفاده کنبد
from termcolor import colored

print(colored('SOME_TEXT', 'red'))

@raspberry_python
os-module-python3.pdf
54.7 KB
آموزش ماژول OS در پایتون ۳

نویسنده : مهندس میلاد قاسمی @milad_ghasemi_1

🔰 @raspberry_python
ساخت ایستگاه هواشناسی با رزبری پای و زبان پایتون

https://projects.raspberrypi.org/en/projects/build-your-own-weather-station

❇️ @raspberry_python
استفاده از tkinter برای کنترل پین های رزبری پای (GUI)

https://maker.pro/raspberry-pi/tutorial/how-to-use-tkinter-to-control-raspberry-pi-gpio-pins

🔰 @raspberry_python
#آموزش

چگونه یک virtualenv درس کنیم:

برای درس کردن یک محیط مجزا و جدا از پایتون اصلی سیستم میتوان از یک virtualenv استفاده کرد

اول نصبش میکنیم:
sudo pip install virtualenv


بعد ادرس ترنیال رو ببرید ب پوشه ای ک میخواید محیط مجزا رو توش درس کنید
و برای ساخت یک virtualenv جدید:

virtualenv ENV

توجه داشته باشید ENV نام محیط جدیدتون هس

حالا برای فعال کردن محیطمون مینویسیم:

source ENV/bin/activate


حالا توی ترمینال قبل اسم اسم سیستم اسم محیط جدید نوشته میشه مثلا:
(ENV) kasra@kasra-X556UR ~ $


برای غیر فعال کردنش هم مینویسیم:
deactivate



@raspberry_python
نصب کردن pyqt و qt designer

به آدرس زیر مراجعه کنید سپس وارد پوشه PyQt بشید.
github.com/faradarscodes

از طرف @F9876543210

❇️ @raspberry_python
یادگیری رباتیک با پایتون

Learning Robotics using Python: Design, simulate, program, and prototype an autonomous mobile robot using ROS, OpenCV, PCL, and Python
🌟2018


❇️ @raspberry_python
Lentin_Joseph_Learning_Robotics.pdf
18.8 MB
یادگیری رباتیک با پایتون

Learning Robotics using Python: Design, simulate, program, and prototype an autonomous mobile robot using ROS, OpenCV, PCL, and Python
🌟2018


❇️ @raspberry_python
آسیب پذیری جدی روز صفرم در سیستم عامل ویندوز که به صورت گسترده در حال بهره برداری شدن می باشد.
مقامات امنیتی گوگل به کاربران ویندوز هشدار داده اند که از آخرین نسخه ی سیستم عامل ویندوز ۱۰ استفاده بکنند.( اخیرا هکر ها این آسیب پذیری و آسب پذیری اخیر مرورگر گوگل کروم را ادغام کرده اند)
@raspberry_python

منبع:
https://arstechnica.com/information-technology/2019/03/attackers-are-actively-exploiting-a-serious-windows-zeroday-in-the-wild/
The Hacker’s Guide to Python

🔰 🌟 2019

❇️ @raspberry_python
Julien_Danjou_The_Hacker’s_Guide.pdf
4.7 MB
The Hacker’s Guide to Python

🌟2019

Chapter 1: Starting Your Project
Chapter 2: Modules, Libraries, and Frameworks
Chapter 3: Documentation and Good API Practice
Chapter 4: Handling Timestamps and Time Zones
Chapter 5: Distributing Your Software
Chapter 6: Unit Testing
Chapter 7: Methods and Decorators
Chapter 8: Functional Programming
Chapter 9: The Abstract Syntax Tree, Hy, and Lisp-like Attributes
Chapter 10: Performances and Optimizations
Chapter 11: Scaling and Architecture
Chapter 12: Managing Relational Databases
Chapter 13: Write Less, Code More

❇️ @raspberry_python
کمی با ریاضیات

import math

print (math.exp(4))

print (math.log(2,3))

print (math.log2(16))

print (math.log10(10000))

print (math.pow(3,2))

print (math.sqrt(25))


output :

54.598150033144236
0.6309297535714574
4.0
4.0
9.0
5.0

@raspberry_python