Python drawer
@python101
33
subscribers
1
photo
2
files
3.7K
links
A collection of curated Python resources from trustworthy sources.
Download Telegram
Join
Python drawer
33 subscribers
Python drawer
https://www.twilio.com/blog/smart-baby-monitor-python-raspberry-pi-twilio-sms-peripheral-sensors
Twilio Blog
How to Make a Smart Baby Monitor with Python, Raspberry Pi, Twilio SMS, and Peripheral Sensors
Learn to build your own smart baby monitor using Python, a Raspberry Pi, peripheral sensors and Twilio SMS.
Python drawer
https://m.youtube.com/playlist?list=PLGKQkV4guDKEn-pF85NoIL_-VYIFz3ppo
Python drawer
https://julien.danjou.info/handling-multipart-form-data-python/
Python drawer
https://blog.jerrycodes.com/sneak-peek-python-3-8/
Jerry Codes
Sneak peek at Python 3.8
Python 3.8 release is scheduled [https://www.python.org/dev/peps/pep-0569/#id6]
for November this year (2019). The first beta release
[https://www.python.org/downloads/release/python-380a1/] - no new features after
this one - got out a while ago. I decided…
Python drawer
https://hakibenita.com/fast-load-data-python-postgresql
Hakibenita
Fastest Way to Load Data Into PostgreSQL Using Python
From two minutes to less than half a second!
Python drawer
https://testdriven.io/blog/deploying-django-to-heroku-with-docker/?utm_source=realpython
testdriven.io
Deploying Django to Heroku With Docker
This article looks at how to deploy a Django app to Heroku with Docker via the Heroku Container Runtime.
Python drawer
https://realpython.com/learning-paths/writing-pythonic-code/
Realpython
Write More Pythonic Code (Learning Path) – Real Python
Learn to write clean, idiomatic Python. Explore PEP 8, the Zen of Python, duck typing, type checking, code quality tools, and project documentation.
Python drawer
https://www.pythonpodcast.com/domain-driven-design-episode-219/
The Python Podcast.__init__
Domain Driven Design For Python
<div class="wp-block-jetpack-markdown"><h3>Summary</h3>
<p>When your software projects start to scale it becomes a greater challenge to understand and…
Python drawer
https://skerritt.blog/dynamic-programming/
Skerritt.blog
🤔
What Is Dynamic Programming With Python Examples
Dynamic programming is breaking down a problem into smaller sub-problems, solving each sub-problem and storing the solutions to each of these sub-problems in an array (or similar data structure) so each sub-problem is only calculated once.
It is both a mathematical…
Python drawer
https://stackabuse.com/the-python-help-system/
Stack Abuse
The Python Help System
When writing and running your Python programs, you may get stuck and need to get help. You may need to know the meaning of certain modules, classes, functions,...
Python drawer
https://www.pythonprogramming.in/object-oriented-programming.html
Python Programming
Python object-oriented programming questions | Python classes and objects exercises | Python object oriented programming examples…
This Python OOPS exercise project is to help you to learn and practice object-oriented programming (OOP) concepts of abstraction, encapsulation of data, inheritance, and polymorphism. By the end of this tutorial, you will have thoroughly learned object-oriented…
Python drawer
https://www.daxx.com/blog/development-trends/python-developer-salary-usa
Python drawer
https://veekaybee.github.io/2019/07/08/python-type-hints/
Python drawer
https://www.xlwings.org/blog/dynamic-arrays-in-excel
xlwings
Dynamic arrays in Excel with Python and xlwings
The days of Ctrl-Shift-Enter and You can't change part of an array are finally over! Say hello to the new dynamic arrays that Microsoft has now (July 2019) rolled out to a broader user base: their Office 365 subscribers who are on the monthly channel.
Python drawer
https://kushaldas.in/posts/highest-used-python-code-in-the-pentesting-security-world.html
Python drawer
https://habr.com/en/company/mailru/blog/458688/
Habr
Tips and tricks from my Telegram-channel @pythonetc, June 2019
It is a new selection of tips and tricks about Python and programming from my Telegram-channel @pythonetc. ← Previous publications The \ symbol in regular string have special meaning. \t is...
Python drawer
https://matiasmorant.wordpress.com/2019/05/14/folding-vs-currying/
matiasmorant
Folding vs. Currying
In language design, there is a tradeoff to make between implicit folding and implicit currying. Let’s take the + function as an example: it is a function which takes 2 arguments and returns 1…
Python drawer
https://tobydriscoll.net/blog/matlab-vs.-julia-vs.-python/
Toby Driscoll
Matlab vs. Julia vs. Python | Toby Driscoll
I’ve used MATLAB for over 25 years. (And before that, I even used MATRIXx, a late, unlamented attempt at a spinoff, or maybe a ripoff.) It’s not the first language I learned to program in, but it’s the one that I came of age with mathematically.
Python drawer
https://bhupeshv.me/A-Simple-Scheduler-in-Python/
bhupeshv.me
A Simple Scheduler in Python
Making a scheduler in python
Python drawer
https://stackabuse.com/the-python-assert-statement/
Stack Abuse
The Python Assert Statement
In this article, we'll examine how to use the assert statement in Python. In Python, the assert statement is used to validate whether or not a condition is tru...
Python drawer
https://habr.com/en/post/458518/
Habr
Python consumes a lot of memory or how to reduce the size of objects?
A memory problem may arise when a large number of objects are active in RAM during the execution of a program, especially if there are restrictions on the total...