پایکون
81 subscribers
53 photos
2 videos
6 files
131 links
تدریس خصوصی و مشاوره :
@alistvt
سفارش ربات تلگرام :
@mohsen_ykz
گروه ما :
@ir_pycon_gp
Download Telegram
“Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.”

— Martin Golding
کتاب‌های رایگان برنامه‌نویسی پایتون:
- Object Oriented Design in Python
- Wikibooks' Non-Programmers Tutorial for Python 3
- The Official Python Tutorial
- A Byte of Python (Swaroop C H.)
- Problem Solving with Algorithms and Data Structures using python (Brad Miller and David Ranum)
- Dive into Python 3
- Invent Your Own Computer Games With Python (Al Sweigart)
- Making Games with Python & Pygame (Albert Sweigart)
- Natural Language Processing with Python (Steven Bird, Ewan Klein, and Edward Loper)
- Python Bibliotheca
- Python for Fun (Chris Meyers)
- Snake Wrangling For Kids (Jason R. Briggs)
- Think Python (PDF file) (Allen Downey)
- Think Python 3 (Allen Downey)
- Automate the Boring Stuff with Python (Al Sweigart)
- Python® Notes for Professionals book(GoalKicker)
- Python Practice Book(Anand Chitipothu)

آموزش‌های تعاملی پایتون:
- Coursera - Online course for introduction to interactive Python programming
- CheckiO - A game world you can explore, using your Python programming skills
- PyCharm Edu - A desktop application that offers interactive Python learning
- Interactive Python - Includes a modified, interactive version of How to Think Like a Computer Scientist

دوره‌های ویدئویی رایگان:
- Python Basics (Sentdex)
- Intermediate Python Fundamentals (Sentdex)
- Sockets Tutorial with Python 3 (Sentdex)
- Python Requests (Pretty Printed)
- Python 3 Tutorial for Begginers (The Net Ninja)
- Python Tutorials (Corey Schafer)
- Python OOP Tutorials - Working with Classes (Corey Schafer)


کتاب‌های فارسی رایگان برنامه‌نویسی پایتون:
- تفکر پایتونی ( Think Python )
- کتاب آزاد آموزش پایتون ( Coderz )

دوره‌های ویدئویی فارسی:
- آموزش زبان پایتون (ParsClick)
- آموزش برنامه نویسی با پایتون (GoToClass, جادی)
- برنامه‌نویسی با پایتون (پیشرفته) (Maktabkhooneh, جادی) 💰

@ir_pycon
github.com/khode-mohsen/porn4dev

برای اعتراض به سیاست های غلط گیت هاب یه ریپوزیتوری برای اشتراک گذاری پورن راه اندازی کردیم اگر دوست داشتین ستاره بدین
🎉🎉
توتریال جنگو گرلز به فارسی منتشر شد. در این توتریال روش ساختن یک وبلاگ ساده با جنگو و انتشار آن بر روی اینترنت آموزش داده میشود:

https://tutorial.djangogirls.org/fa/
اانیمیشن های css آماده جهت کپی پیست


https://cssfx.dev/
https://epic-spinners.epicmax.co/
https://animista.net/
from django.core.validators import MaxValueValidator, MinValueValidator

. . .

# create a Django fields with maximum and minimum limits
tits_size = models.FloatField(
validators = [
MinValueValidator(70),
MaxValueValidator(185.5)
]
)

#python #django #orm
simple implementation of superuser_required decorator

@user_passes_test(lambda u: u.is_superuser)
def view(request):
...

@user_passes_test(lambda u: u.is_superuser, login_url=..., redirect_field_name=...)
def view(request):
...