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://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...
Python drawer
https://medium.com/@schrockn/introducing-dagster-dbd28442b2b7
Medium
Introducing Dagster
A open-source Python library for building data applications
Python drawer
https://www.dataquest.io/blog/machine-learning-tutorial/
Dataquest
Python Machine Learning Tutorial: Predicting Airbnb Prices – Dataquest
Learn about machine learning in Python and build your very first ML model from scratch to predict Airbnb prices using k-nearest neighbors.
Python drawer
https://www.pyimagesearch.com/2019/07/08/keras-imagedatagenerator-and-data-augmentation/
PyImageSearch
Keras ImageDataGenerator and Data Augmentation - PyImageSearch
In today’s tutorial, you will learn how to use Keras’ ImageDataGenerator class to perform data augmentation. I’ll also dispel common confusions surrounding what data augmentation is, why we use data augmentation, and what it does/does not do.
Python drawer
https://itnext.io/heroku-chatbot-with-celery-websockets-and-redis-340fcd160f06
Medium
Heroku Chatbot with Celery, WebSockets, and Redis.
Let’s create a Chatbot which can execute tasks asynchronously using Celery and communicate via WebSockets.
Python drawer
https://medium.com/@calebcheng_87413/avoiding-speeding-tickets-with-python-mapbox-and-overpassql-580b4d1ee21e
Medium
Avoiding speeding tickets with Python, Mapbox and OverpassQL
I got my first speeding ticket :( Lets make a bot to display all the speed camera locations in my city using Python and OpenStreetMap data…