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://sobolevn.me/2019/03/enforcing-srp
Python drawer
https://medium.com/@caoyiming/our-journey-rewriting-500k-lines-of-java-code-with-python-part-1-9349b421856e
Medium
Our journey rewriting 500K lines of Java code with Python — Part 1
This story is for software teams who got really tired of old bulky systems, who are craving for a major refactor either for a better…
Python drawer
https://kite.com/blog/python/matplotlib/tutorial
Kite
Code Faster with Line-of-Code Completions, Cloudless Processing
Kite is a free autocomplete for Python developers. Code faster with the Kite plugin for your code editor, featuring Line-of-Code Completions and cloudless processing.
Python drawer
https://scotch.io/tutorials/building-a-universal-application-with-nuxtjs-and-django
Scotch
Building a Universal Application with Nuxt.js and Django
In this article, we will learn what a Universal application is and go on to build a Universal application using Nuxt.js and Django.
Python drawer
https://towardsdatascience.com/how-to-build-a-complex-reporting-dashboard-using-dash-and-plotl-4f4257c18a7f
Medium
How to Build a Reporting Dashboard using Dash and Plotly
In this blog post, I will provide a step-by-step tutorial on how to build a reporting dashboard using Dash, a Python framework for…
Python drawer
https://blog.doismellburning.co.uk/django-an-unofficial-opinionated-faq/
blog.doismellburning.co.uk
Django: An Unofficial Opinionated FAQ - Kristian Glass - Do I Smell Burning?
I really like Django. Django is fast, featureful, secure, scalable, and versatile. It works well with a variety of workflows, approaches, tools, pl...
Python drawer
https://itnext.io/create-a-highly-scalable-image-processing-service-on-aws-lambda-and-api-gateway-in-10-minutes-7cbb2893a479
Medium
Create a Highly Scalable Image Processing Service on AWS Lambda and API Gateway in 10 Minutes
Let’s just think about servers, less.
Python drawer
https://medium.freecodecamp.org/asymptotic-analysis-explained-with-pokémon-a-deep-dive-into-complexity-analysis-8bf4396804e0
Developer News
Asymptotic Analysis Explained with Pokémon: A Deep Dive into Complexity Analysis
by Divya Godayal
Asymptotic Analysis Explained with Pokémon: A Deep Dive into Complexity Analysis
by Sachin Malhotra [https://medium.com/@sachinmalhotra] and Divya Godayal
[https://medium.com/@divyagodayal]
> Let’s admit that we are either still stuck…
Python drawer
https://github.com/indico/indico
GitHub
GitHub - indico/indico: Indico - A feature-rich event management system, made @ CERN, the place where the Web was born.
Indico - A feature-rich event management system, made @ CERN, the place where the Web was born. - indico/indico
Python drawer
https://github.com/pickitup247/pyckitup
GitHub
GitHub - pickitup247/pyckitup: python game engine that runs in browser
python game engine that runs in browser. Contribute to pickitup247/pyckitup development by creating an account on GitHub.
Python drawer
https://github.com/thisisparker/cursewords
GitHub
GitHub - thisisparker/cursewords: :pencil: Terminal-based crossword puzzle solving interface
:pencil: Terminal-based crossword puzzle solving interface - thisisparker/cursewords
Python drawer
https://realpython.com/python-gui-with-wxpython/
Realpython
How to Build a Python GUI Application With wxPython – Real Python
In this step-by-step tutorial, you'll learn how to create a cross-platform graphical user interface (GUI) using Python and the wxPython toolkit. A graphical user interface is an application that has buttons, windows, and lots of other widgets that the user…
Python drawer
https://medium.com/homeaway-tech-blog/simplify-your-python-developer-environment-aba90f32dddb
Medium
Simplify Your Python Developer Environment
Three tools (pyenv, pipx, pipenv) make for smooth, isolated, reproducible Python developer and production environments.
Python drawer
https://pythonspeed.com/articles/python-c-extension-crashes/
Python⇒Speed
When C extensions crash: easier debugging for your Python application
If your Python test suite segfaults in C code, debugging is difficult. But an easy configuration tweak can help you pinpoint the responsible code.
Python drawer
https://neopythonic.blogspot.com/2019/03/why-operators-are-useful.html
Blogspot
Why operators are useful
This is something I posted on python-ideas, but I think it's interesting to a wider audience. There's been a lot of discussion recently ab...
Python drawer
https://realpython.com/courses/python-decorators-101/
Realpython
Python Decorators 101 – Real Python
In this course on Python decorators, you'll learn what they are and how to create and use them. Decorators provide a simple syntax for calling higher-order functions in Python. By definition, a decorator is a function that takes another function and extends…
Python drawer
https://treyhunner.com/2019/03/python-deep-comparisons-and-code-readability/
Treyhunner
Tuple ordering and deep comparisons in Python
Comparing things in Python.
That sounds like something that almost doesn’t even need to be taught.
But I’ve found that Python’s …
Python drawer
https://bugs.python.org/issue36276
Python drawer
http://www.craigkerstiens.com/2019/03/13/give-me-back-my-monolith/
Craigkerstiens
Give me back my monolith - CRAIG KERSTIENS
It feels like we’re starting to pass the peak of the hype cycle of microservices. It’s no longer multiple times a week we now see a blog post of “How I migrated my monolith to 150 services”. Now I often hear a bit more of the counter: “I don’t hate my monolith…
Python drawer
https://realpython.com/python-mock-library/
Realpython
Understanding the Python Mock Object Library – Real Python
In this tutorial, you'll learn how to use the Python mock object library, unittest.mock, to create and use mock objects to improve your tests. Obstacles like complex logic and unpredictable dependencies make writing valuable tests difficult, but unittest.mock…