Robin Wilson: Using SQLAlchemy to access MySQL without frustrating library installation issues
Link: http://blog.rtwilson.com/using-sqlalchemy-to-access-mysql-without-frustrating-library-installation-issues/
This is more a ‘note to myself’ than anything else, but I expect some other people might find it useful.
I’ve often struggled with accessing MySQL from Python, as the ‘default’ MySQL library for Pytho
Link: http://blog.rtwilson.com/using-sqlalchemy-to-access-mysql-without-frustrating-library-installation-issues/
This is more a ‘note to myself’ than anything else, but I expect some other people might find it useful.
I’ve often struggled with accessing MySQL from Python, as the ‘default’ MySQL library for Pytho
Podcast.__init__: Faster And Safer Software Development With Feature Flags
Link: https://www.pythonpodcast.com/feature-flags-episode-239/
Any software project that is worked on or used by multiple people will inevitably reach a point where certain capabilities need to be turned on or off. In this episode Pete Hodgson shares his experien
Link: https://www.pythonpodcast.com/feature-flags-episode-239/
Any software project that is worked on or used by multiple people will inevitably reach a point where certain capabilities need to be turned on or off. In this episode Pete Hodgson shares his experien
The Python Podcast.__init__
The Python Podcast.__init__: Faster And Safer Software Development With Feature Flags
An interview about how using feature flags in your projects allows for faster development and safer releases
PyCharm: Webinar: “React+TypeScript+TDD Part 2” with Paul Everitt
Link: http://feedproxy.google.com/~r/Pycharm/~3/2oYqNe85VqM/
Last month we did a webinar on using PyCharm to write React+TypeScript apps using TDD. We teased a “Part 2” that was more in-depth. Thanks to the good folks at WebStorm, we’ll be doing a Part 2, Tuesd
Link: http://feedproxy.google.com/~r/Pycharm/~3/2oYqNe85VqM/
Last month we did a webinar on using PyCharm to write React+TypeScript apps using TDD. We teased a “Part 2” that was more in-depth. Thanks to the good folks at WebStorm, we’ll be doing a Part 2, Tuesd
PyCharm Blog
Webinar: “React+TypeScript+TDD Part 2” with Paul Everitt
Last month we did a webinar on using PyCharm to write React+TypeScript apps using TDD. We teased a “Part 2” that was more in-depth. Thanks to the good folks at WebStorm, we’ll be …
Real Python: Python KeyError Exceptions and How to Handle Them
Link: https://realpython.com/courses/python-keyerror/
Python’s KeyError exception is a common exception encountered by beginners. Knowing why a KeyError can be raised and some solutions to prevent it from stopping your program are essential steps to impr
Link: https://realpython.com/courses/python-keyerror/
Python’s KeyError exception is a common exception encountered by beginners. Knowing why a KeyError can be raised and some solutions to prevent it from stopping your program are essential steps to impr
Realpython
Python KeyError Exceptions and How to Handle Them – Real Python
In this course, you'll learn how to handle Python KeyError exceptions. They are often caused by a bad key lookup in a dictionary, but there are a few other situations when a KeyError can be raised as well. Knowing how to handle these exceptions is essential…
Reuven Lerner: Black Friday: All of my Python courses are 50% off!
Link: https://lerner.co.il/2019/11/26/black-friday-all-of-my-python-courses-are-50-off/
This coming Friday is “Black Friday,” when many stores offer big discounts on their products. I’m happy to say that from Friday through Monday, every course in my online store will be 50% off.
This in
Link: https://lerner.co.il/2019/11/26/black-friday-all-of-my-python-courses-are-50-off/
This coming Friday is “Black Friday,” when many stores offer big discounts on their products. I’m happy to say that from Friday through Monday, every course in my online store will be 50% off.
This in
Reuven Lerner
Black Friday: All of my Python courses are 50% off! — Reuven Lerner
This coming Friday is “Black Friday,” when many stores offer big discounts on their products. I’m happy to say that from Friday through Monday, every course in my online store will be 50% off. This includes all eight of the video courses in my online store:…
Paolo Amoroso: Revisiting Building Android Apps in Python Using Kivy with Android Studio
Link: http://blog.paoloamoroso.com/2019/11/revisiting-building-android-apps-in.html
One of the books I read on Kivy, a Python cross-platform GUI framework, is Building Android Apps in Python Using Kivy with Android Studio: With Pyjnius, Plyer, and Buildozer by Ahmed Fawzy Mohamed Gad
Link: http://blog.paoloamoroso.com/2019/11/revisiting-building-android-apps-in.html
One of the books I read on Kivy, a Python cross-platform GUI framework, is Building Android Apps in Python Using Kivy with Android Studio: With Pyjnius, Plyer, and Buildozer by Ahmed Fawzy Mohamed Gad
Paoloamoroso
Revisiting Building Android Apps in Python Using Kivy with Android Studio
One of the books I read on Kivy , a Python cross-platform GUI framework, is Building Android Apps in Python Using Kivy with Android Studio: ...
Stack Abuse: Insertion Sort in Python
Link: https://stackabuse.com/insertion-sort-in-python/
Introduction
If you're majoring in Computer Science, Insertion Sort is most likely one of the first sorting algorithms you have heard of. It is intuitive and easy to implement, but it's very slow on l
Link: https://stackabuse.com/insertion-sort-in-python/
Introduction
If you're majoring in Computer Science, Insertion Sort is most likely one of the first sorting algorithms you have heard of. It is intuitive and easy to implement, but it's very slow on l
Stack Abuse
Insertion Sort in Python
Insertion Sort is a simple sorting algorithm that works wonders on small collections. It often used alongside Quicksort and Merge Sort in the final stages. In this article, we'll implement Insertion Sort in Python.
Paolo Amoroso: Two Books About the Kivy GUI Framework
Link: http://blog.paoloamoroso.com/2019/11/two-books-about-kivy-gui-framework.html
The Kivy Python GUI framework is intriguing.Not only it’s cross-platform but also supports Android. Java is too verbose and low level for me and Kivy is an opportunity for developing native Android ap
Link: http://blog.paoloamoroso.com/2019/11/two-books-about-kivy-gui-framework.html
The Kivy Python GUI framework is intriguing.Not only it’s cross-platform but also supports Android. Java is too verbose and low level for me and Kivy is an opportunity for developing native Android ap
Paoloamoroso
Two Books About the Kivy GUI Framework
Paolo Amoroso’s blog on Google products and tech, using the cloud, astronomy and space, Python, self-publishing, blogging, content creation.
Chris Moffitt: Tips for Selecting Columns in a DataFrame
Link: https://pbpython.com/selecting-columns.html
Introduction
This article will discuss several tips and shortcuts for using
iloc
to work with a
data set that has a large number of columns. Even if you have some experience with using
iloc
you s
Link: https://pbpython.com/selecting-columns.html
Introduction
This article will discuss several tips and shortcuts for using
iloc
to work with a
data set that has a large number of columns. Even if you have some experience with using
iloc
you s
Pbpython
Tips for Selecting Columns in a DataFrame
This article will discuss several ways that the pandas iloc function can be used to select columns of data.
PyCoder’s Weekly: Issue #396 (Nov. 26, 2019)
Link: https://pycoders.com/issues/396
#396 – NOVEMBER 26, 2019 View in Browser » PyCon 2020 Registration Is Now Open PyCon is the largest annual gathering for the community that uses and develops the open-source Python programming l
Link: https://pycoders.com/issues/396
#396 – NOVEMBER 26, 2019 View in Browser » PyCon 2020 Registration Is Now Open PyCon is the largest annual gathering for the community that uses and develops the open-source Python programming l
Pycoders
PyCoder’s Weekly | Issue #396
Issue #396 of the PyCoder’s Weekly newsletter, published Nov. 26, 2019.
Codementor: Awesome Full Stack Python Resources
Link: https://www.codementor.io/maxongzb/awesome-full-stack-python-resources-114r54bi68
A list of Python Full Stack resources for aspiring Python web developer looking to learn web development using Python.
Link: https://www.codementor.io/maxongzb/awesome-full-stack-python-resources-114r54bi68
A list of Python Full Stack resources for aspiring Python web developer looking to learn web development using Python.
www.codementor.io
Awesome Full Stack Python Resources | Codementor
A list of Python Full Stack resources for aspiring Python web developer looking to learn web development using Python.
Janusworx: #100DaysOfCode, Days 005, 006 and 007 – The Collections Module
Link: https://janusworx.com/100daysofcode-days-005-006-and-007-the-collections-module/
I have been at this an hour daily for four days now.
It just is not clicking for me.
One thing is for sure, this Talk Python course is definitely going to take longer than a hundred days!
I don’t kn
Link: https://janusworx.com/100daysofcode-days-005-006-and-007-the-collections-module/
I have been at this an hour daily for four days now.
It just is not clicking for me.
One thing is for sure, this Talk Python course is definitely going to take longer than a hundred days!
I don’t kn
Janusworx
#100DaysOfCode, Days 005, 006 and 007 – The Collections Module
I have been at this an hour daily for four days now.
It just is not clicking for me.
One thing is for sure, this Talk Python course is definitely going to take longer than a hundred days!
I don’t kn
It just is not clicking for me.
One thing is for sure, this Talk Python course is definitely going to take longer than a hundred days!
I don’t kn
Lintel Technologies: Manhole service in Twisted Application.
Link: https://howto.lintel.in/how-to-run-manhole-service-in-twisted/
What is Manhole?
Manhole is an in-process service, that will accept UNIX domain socket connections and present the stack traces for all threads and an interactive prompt.
Using it we can access and mo
Link: https://howto.lintel.in/how-to-run-manhole-service-in-twisted/
What is Manhole?
Manhole is an in-process service, that will accept UNIX domain socket connections and present the stack traces for all threads and an interactive prompt.
Using it we can access and mo
Lintel Technologies Blog
Manhole service in Twisted Application. - Lintel Technologies Blog
How to add manhole in twisted application How to implemented manhole in twisted application, monkey patch the content of running twisted application.
PyBites: From webscraper to wordcloud
Link: https://pybit.es/guest-webscraper-to-wordcloud.html
Living in Belgium, I decided to scrape the Belgian newspaper Het Laatste Nieuws.
I wanted to know what kept people busy when reading the news, so I went for a collection of all comments on all article
Link: https://pybit.es/guest-webscraper-to-wordcloud.html
Living in Belgium, I decided to scrape the Belgian newspaper Het Laatste Nieuws.
I wanted to know what kept people busy when reading the news, so I went for a collection of all comments on all article
PyBites
From Webscraper to Wordcloud
After going through the web scraping learning paths, I decided to get my hands dirty and apply my freshly gathered knowledge on a real life project. I explain some difficulties you might encounter while scraping and I also show some libraries that can help…
PyBites: There's no wrong way... to eat a Bite of Py
Link: https://pybit.es/guest-eat-a-bite-of-py.html
The Bites of Py exercises from PyBites are a wonderful way to improve your Python skills in short, focused practice sessions. You can even work on them right from your browser! Of course, that's not t
Link: https://pybit.es/guest-eat-a-bite-of-py.html
The Bites of Py exercises from PyBites are a wonderful way to improve your Python skills in short, focused practice sessions. You can even work on them right from your browser! Of course, that's not t
PyBites
There's no Wrong Way... to Eat a Bite of Py
There are many ways to tackle a Bites of Py exercise, try them all!
Codementor: How to Update Legacy Code Successfully
Link: https://www.codementor.io/djangostars/how-to-update-legacy-code-successfully-1153c38rm0
In this article, we’ll talk about when updates are necessary and how to make them without affecting the app’s functionality.
Link: https://www.codementor.io/djangostars/how-to-update-legacy-code-successfully-1153c38rm0
In this article, we’ll talk about when updates are necessary and how to make them without affecting the app’s functionality.
www.codementor.io
How to Update Legacy Code Successfully | Codementor
In this article, we’ll talk about when updates are necessary and how to make them without affecting the app’s functionality.
Real Python: Python Descriptors: An Introduction
Link: https://realpython.com/python-descriptors/
Descriptors are a specific Python feature that power a lot of the magic hidden under the language’s hood. If you’ve ever thought that Python descriptors are an advanced topic with few practical applic
Link: https://realpython.com/python-descriptors/
Descriptors are a specific Python feature that power a lot of the magic hidden under the language’s hood. If you’ve ever thought that Python descriptors are an advanced topic with few practical applic
Realpython
Python Descriptors: An Introduction – Real Python
In this step-by-step tutorial, you'll learn what Python descriptors are and how they're used in Python's internals. You'll learn about the descriptor protocol and how the lookup chain works when you access an attribute. You'll also see a few practical examples…
Python Anywhere: Python 3.8 now available!
Link: https://blog.pythonanywhere.com/184/
If you signed up since 26 November, you'll have Python 3.8 available on your account -- you can use it just like any other Python version.
If you signed up before then, it's a little more complicated,
Link: https://blog.pythonanywhere.com/184/
If you signed up since 26 November, you'll have Python 3.8 available on your account -- you can use it just like any other Python version.
If you signed up before then, it's a little more complicated,
Pythonanywhere
Python 3.8 now available! - PythonAnywhere News
All the latest updates from the PythonAnywhere team
Python Bytes: #158 There's a bounty on your open-source bugs!
Link: https://pythonbytes.fm/episodes/show/158/there-s-a-bounty-on-your-open-source-bugs
Link: https://pythonbytes.fm/episodes/show/158/there-s-a-bounty-on-your-open-source-bugs
pythonbytes.fm
There's a bounty on your open-source bugs!
News and announcements from the Python community for the week of Nov 27th, 2019
Talk Python to Me: #240 A guided tour of the CPython source code
Link: https://talkpython.fm/episodes/show/240/a-guided-tour-of-the-cpython-source-code
You might use Python every day. But how much do you know about what happens under the covers, down at the C level? When you type something like variable = [], what are the byte-codes that accomplish t
Link: https://talkpython.fm/episodes/show/240/a-guided-tour-of-the-cpython-source-code
You might use Python every day. But how much do you know about what happens under the covers, down at the C level? When you type something like variable = [], what are the byte-codes that accomplish t
talkpython.fm
A guided tour of the CPython source code
You might use Python every day. But how much do you know about what happens under the covers, down at the C level? When you type something like variable = [], what are the byte-codes that accomplish this? How about the class backing the list itself?
Janusworx: #100DaysOfCode, Day 008 – The Collections Module
Link: https://janusworx.com/100daysofcode-day-008-the-collections-module/
Finally feels like something is happening.
Did two hours today.
I don’t know if what I do is cheating, but I darn near print everything to see output and then iterate on the errors.
I understood h
Link: https://janusworx.com/100daysofcode-day-008-the-collections-module/
Finally feels like something is happening.
Did two hours today.
I don’t know if what I do is cheating, but I darn near print everything to see output and then iterate on the errors.
I understood h
Janusworx
#100DaysOfCode, Day 008 – The Collections Module
Finally feels like something is happening.
Did two hours today.
I don’t know if what I do is cheating, but I darn near print everything to see output and then iterate on the errors.
I understood h
Did two hours today.
I don’t know if what I do is cheating, but I darn near print everything to see output and then iterate on the errors.
I understood h