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.pyimagesearch.com/2019/01/21/regression-with-keras/
PyImageSearch
Regression with Keras - PyImageSearch
In this tutorial you will learn how to perform regression using Keras. You will learn how to train a Keras neural network for regression and continuous value prediction, specifically in the context of house price prediction.
Python drawer
https://blog.florimondmanca.com/how-i-built-a-web-framework-and-became-an-open-source-maintainer
Florimond Manca
How I Built A Python Web Framework And Became An Open Source Maintainer - Florimond Manca
Inspirational thoughts and tips on starting and managing an open source project, based on my experience building Bocadillo, an asynchronous Python web framework.
Python drawer
https://www.thurrott.com/windows/windows-10/196830/python-lands-on-the-windows-10-app-store
Thurrott.com
Python Lands on the Windows 10 App Store - Thurrott.com
You can now install the latest version of Python 3.7 from the Microsoft Store.
Python drawer
https://robert-mcdermott.gitlab.io/posts/speeding-up-python-with-nim/
robert-mcdermott.gitlab.io
Speeding Up Python with Nim
Python is a great programming language that is optimized for programmer productivity; it’s amazing sometimes how quickly you can go from idea to minimally working solution. It achieves this unbeatably low “time-to-code” via its very dynamic nature and easy…
Python drawer
https://github.com/numpy/numpy/blob/master/doc/release/1.16.0-notes.rst
GitHub
numpy/numpy
The fundamental package for scientific computing with Python. - numpy/numpy
Python drawer
https://pythonspeed.com/articles/slow-tests-fast-feedback/
Python⇒Speed
Stuck with slow tests? Speed up your feedback loop
Sometimes you can’t speed up your Python test suite. What you can do, however, is find failures faster with linters, partial testing, and more.
Python drawer
https://hackernoon.com/a-letter-to-the-python-community-in-africa-fe88cd0b3096
Hackernoon
A letter to the Python community in Africa | Hacker Noon
Python drawer
https://sumit-ghosh.com/articles/demystifying-decorators-python/
Sumit’s Dreams of Electric Sheeps
Demystifying @decorators in Python
Introduction
Python drawer
https://pyfound.blogspot.com/2019/01/python-software-foundation-fellow.html
Blogspot
Python Software Foundation Fellow Members for Q4 2018
It's a new year and we are happy to announce our newest PSF Fellow Members! Elana Hashman Github , Twitter , Blog Alexander Hend...
Python drawer
https://www.mattlayman.com/blog/2019/web-development-environments/
Matt Layman
Local web development vs Vagrant vs Docker: What’s right for you?
Web development is full of tools that claim to help you develop your perfect application. What's the right tool? Let's explore options like Docker, Vagrant, and honcho to see which tool can work for you on your next (or current) web app.
Python drawer
https://www.toptal.com/finance/financial-modeling/python-and-finance
Toptal Finance Blog
Python and Finance – Power Up Your Spreadsheets | Toptal
®
Python provides many advantages over the traditionally popular VBA scripts for finance professionals looking to automate and enhance their work processes. This article explores how to use Python and finance together via a practical step-by-step tutorial.
Python drawer
https://djangostars.com/blog/top-seven-apps-built-python/
Software Development Blog & IT Tech Insights | Django Stars
Top Seven Apps Built With Python
Simple, clean, pragmatic, cheap – find out why giants like Instagram and Spotify chose to run on Python.
Python drawer
https://realpython.com/working-with-files-in-python/
Realpython
Working With Files in Python – Real Python
In this tutorial, you'll learn how you can work with files in Python by using built-in modules to perform practical tasks that involve groups of files, like renaming them, moving them around, archiving them, and getting their metadata.
Python drawer
https://open.edx.org/blog/python-2-is-ending-we-need-to-move-to-python-3/
Python drawer
https://leanpub.com/clean-architectures-in-python
Leanpub
Clean Architectures in Python
Python drawer
https://blog.eleni.co/transaction-testcase-pytest/
Eleni Lixourioti
Transaction tests in Pytest
If you are coming from Django, you may have come across the slightly unfortunately named TransactionTestCase. While the most commonly used TestCase cleans up after each test by rolling back the database transaction, TransactionTestCase takes the nuclear…
Python drawer
https://hackernoon.com/recursion-vs-looping-in-python-9261442f70a5
Hackernoon
Recursion vs. Looping in Python
One of the most fundamental tools in programming is a loop. While there are many different types of loops, almost each type of loop has the same basic function: iterating over data to analyze or manipulate it. Recursion is another popular type of function…
Python drawer
https://stackabuse.com/big-o-notation-and-algorithm-analysis-with-python-examples/
Stack Abuse
Big O Notation and Algorithm Analysis with Python Examples
In this guide - learn the intuition behind and how to perform algorithmic complexity analysis - including what Big-O, Big-Omega and Big-Theta are, how to calculate Big-O and understand the notation, with practical Python examples.
Python drawer
https://www.dataquest.io/blog/advanced-jupyter-notebooks-tutorial/
Dataquest
Advanced Jupyter Notebook Tutorial – Dataquest
If you're doing data science in Python, notebooks are a powerful tool. This free Jupyter Notebooks tutorial has will help you get the best out of Jupyter.
Python drawer
https://www.youtube.com/watch?v=40S9e5Rf384
YouTube
List Comprehension | Advanced Python | Tutorial 20
An expression in Python which is more flexible than map, filter and other built-in methods are List Comprehensions. Now even though they are more flexible, you can very easily start abusing list comprehensions.
The following topics are covered in this tutorial.…
Python drawer
https://towardsdatascience.com/speed-up-jupyter-notebooks-20716cbe2025
Medium
Profiling and Optimizing Jupyter Notebooks — A Comprehensive Guide
Finding bottlenecks and increasing your speed performance by magnitudes with some tips I came along over the past year.