TestDriven.io: Running Django on DigitalOcean's App Platform
Link: https://testdriven.io/blog/django-digitalocean-app-platform/
This article looks at how to deploy a Django application to DigitalOcean's App Platform.
Link: https://testdriven.io/blog/django-digitalocean-app-platform/
This article looks at how to deploy a Django application to DigitalOcean's App Platform.
testdriven.io
Running Django on DigitalOcean's App Platform
This article looks at how to deploy a Django application to DigitalOcean's App Platform.
Sebastian Witowski: type() vs. isinstance()
Link: https://switowski.com/blog/type-vs-isinstance
Python is a dynamically typed language. A variable, initially created as a string, can be later reassigned to an integer or a float. And the interpreter won’t complain:
name = "Sebastian"
# Dynamical
Link: https://switowski.com/blog/type-vs-isinstance
Python is a dynamically typed language. A variable, initially created as a string, can be later reassigned to an integer or a float. And the interpreter won’t complain:
name = "Sebastian"
# Dynamical
Sebastian Witowski
type() vs. isinstance()
What's the difference between type() and isinstance() methods, and which one is better for checking the type of an object?
Codementor: AI, ML and Python: Let’s See How far They Can Go Together
Link: https://www.codementor.io/theronald248/ai-ml-and-python-let-s-see-how-far-they-can-go-together-1b9praj476
You might have heard these words together : AI, Machine Learning and Python. The reason behind this is that Python is one of the most suitable languages for AI and ML. Python is one of the simplest...
Link: https://www.codementor.io/theronald248/ai-ml-and-python-let-s-see-how-far-they-can-go-together-1b9praj476
You might have heard these words together : AI, Machine Learning and Python. The reason behind this is that Python is one of the most suitable languages for AI and ML. Python is one of the simplest...
www.codementor.io
AI, ML and Python: Let’s See How far They Can Go Together | Codementor
You might have heard these words together : AI, Machine Learning and Python. The reason behind this is that Python is one of the most suitable languages for AI and ML. Python is one of the simplest...
Stack Abuse: Python: Get Number of Elements in a List
Link: https://stackabuse.com/python-get-number-of-elements-in-a-list/
Introduction
Getting the number of elements in a list in Python is a common operation. For example, you will need to know how many elements the list has whenever you iterate through it. Remember that
Link: https://stackabuse.com/python-get-number-of-elements-in-a-list/
Introduction
Getting the number of elements in a list in Python is a common operation. For example, you will need to know how many elements the list has whenever you iterate through it. Remember that
Stack Abuse
Python: Get Number of Elements in a List
In this article we'll take a look at how to get the number of elements in a list in Python. We'll go through examples of getting all elements, unique elements, and elements in nested lists.
Python Circle: How to post messages to Microsoft teams channel using Python
Link: https://pythoncircle.com/post/725/how-to-post-messages-to-microsoft-teams-channel-using-python/
In this article we will see how to send alerts or messages to microsoft teams channels using connectors or incoming webhook. we used python's requests module to send post request.
Link: https://pythoncircle.com/post/725/how-to-post-messages-to-microsoft-teams-channel-using-python/
In this article we will see how to send alerts or messages to microsoft teams channels using connectors or incoming webhook. we used python's requests module to send post request.
Python Circle
How to post messages to Microsoft teams channel using Python
In this article we will see how to send alerts or messages to microsoft teams channels using connectors or incoming webhook. we used python's requests module to send post request.
Matt Layman: Capped Social Network - Building SaaS #76
Link: https://www.mattlayman.com/building-saas/capped-social-network/
In this episode, I started a new project to build a different kind of social network. This social network will contain a max number of connections to encourage thoughtful choice when growing your pers
Link: https://www.mattlayman.com/building-saas/capped-social-network/
In this episode, I started a new project to build a different kind of social network. This social network will contain a max number of connections to encourage thoughtful choice when growing your pers
Matt Layman
Capped Social Network - Building SaaS #76
In this episode, I started a new project to build a different kind of social network. This social network will contain a max number of connections to encourage thoughtful choice when growing your personal network. We talked MVP features and put in the basics…
EuroPython: EuroPython 2021 will be run online
Link: https://blog.europython.eu/post/632055258029473792
In the last few weeks, we had a close look at the how the situation around COVID-19 is panning out. Unfortunately, things are not moving in a direction where we’d feel confident to hold next year’s co
Link: https://blog.europython.eu/post/632055258029473792
In the last few weeks, we had a close look at the how the situation around COVID-19 is panning out. Unfortunately, things are not moving in a direction where we’d feel confident to hold next year’s co
blog.europython.eu
EuroPython Blog
EuroPython 2021 will be run online In the last few weeks, we had a close look at the how the situation around COVID-19 is panning out. Unfortunately, things are not moving in a direction where we’d...
Python Circle: Solving Django error 'NoReverseMatch at' URL with arguments '()' and keyword arguments '{}' not found.
Link: https://pythoncircle.com/post/424/solving-django-error-noreversematch-at-url-with-arguments-and-keyword-arguments-not-found/
Solving Django error 'NoReverseMatch at' URL with arguments '()' and keyword arguments '{}' not found, URL not found in Django, No reverse match in Django template error
Link: https://pythoncircle.com/post/424/solving-django-error-noreversematch-at-url-with-arguments-and-keyword-arguments-not-found/
Solving Django error 'NoReverseMatch at' URL with arguments '()' and keyword arguments '{}' not found, URL not found in Django, No reverse match in Django template error
Python Circle
Solving Django error 'NoReverseMatch at' URL with arguments '()' and keyword arguments '{}' not found.
Solving Django error 'NoReverseMatch at' URL with arguments '()' and keyword arguments '{}' not found, URL not found in Django, No reverse match in Django template error
Real Python: The Real Python Podcast – Episode #31: Python Return Statement Best Practices and Working With the map() Function
Link: https://realpython.com/podcasts/rpp/31/
The Python return statement is such a fundamental part of writing functions. Is it possible you missed some best practices when writing your own return statements? This week on the show, David Amos re
Link: https://realpython.com/podcasts/rpp/31/
The Python return statement is such a fundamental part of writing functions. Is it possible you missed some best practices when writing your own return statements? This week on the show, David Amos re
Realpython
Episode #31: Python Return Statement Best Practices and Working With the map() Function – The Real Python Podcast
The Python return statement is such a fundamental part of writing functions. Is it possible you missed some best practices when writing your own return statements? This week on the show, David Amos returns with another batch of PyCoder’s Weekly articles and…
Andrea Grandi: Set specific environment variables activating a Python virtual environment
Link: https://www.andreagrandi.it/2020/10/16/set-specific-environment-variables-activating-python-virtual-environment/
How to set specific environment variables when we activate a Python virtual environment
Link: https://www.andreagrandi.it/2020/10/16/set-specific-environment-variables-activating-python-virtual-environment/
How to set specific environment variables when we activate a Python virtual environment
Andrea Grandi
Set specific environment variables activating a Python virtual environment
How to set specific environment variables when we activate a Python virtual environment
Python Bytes: #203 Scripting a masterpiece for Python web automation
Link: https://pythonbytes.fm/episodes/show/203/scripting-a-masterpiece-for-python-web-automation
<p>Sponsored by DataDog: <a href="https://pythonbytes.fm/datadog">pythonbytes.fm/datadog</a></p>
<p><strong>Michael #1:</strong> <a href="https://www.digitalocean.com/blog/introducing-digitalocean-ap
Link: https://pythonbytes.fm/episodes/show/203/scripting-a-masterpiece-for-python-web-automation
<p>Sponsored by DataDog: <a href="https://pythonbytes.fm/datadog">pythonbytes.fm/datadog</a></p>
<p><strong>Michael #1:</strong> <a href="https://www.digitalocean.com/blog/introducing-digitalocean-ap
pythonbytes.fm
Scripting a masterpiece for Python web automation
News and announcements from the Python community for the week of Oct 16th, 2020
Talk Python to Me: #286 Python and ML at NASA Jet Propulsion Laboratory (JPL)
Link: https://talkpython.fm/episodes/show/286/python-and-ml-at-nasa-jet-propulsion-laboratory-jpl
NASA's Jet Propulsion Laboratory (JPL)'s primary function is the construction and operation of planetary robotic spacecraft, though it also conducts Earth-orbit and astronomy missions. It is also resp
Link: https://talkpython.fm/episodes/show/286/python-and-ml-at-nasa-jet-propulsion-laboratory-jpl
NASA's Jet Propulsion Laboratory (JPL)'s primary function is the construction and operation of planetary robotic spacecraft, though it also conducts Earth-orbit and astronomy missions. It is also resp
talkpython.fm
Python and ML at NASA Jet Propulsion Laboratory (JPL)
NASA's Jet Propulsion Laboratory (JPL)'s primary function is the construction and operation of planetary robotic spacecraft, though it also conducts Earth-orbit and astronomy missions. It is also responsible for operating NASA's Deep Space Network.
The Digital Cat: Flask project setup: TDD, Docker, Postgres and more - Part 2
Link: https://www.thedigitalcatonline.com/blog/2020/07/06/flask-project-setup-tdd-docker-postgres-and-more-part-2/
In this series of posts I explore the development of a Flask project with a setup that is built with efficiency and tidiness in mind, using TDD, Docker and Postgres.
Catch-up¶
In the previous post we
Link: https://www.thedigitalcatonline.com/blog/2020/07/06/flask-project-setup-tdd-docker-postgres-and-more-part-2/
In this series of posts I explore the development of a Flask project with a setup that is built with efficiency and tidiness in mind, using TDD, Docker and Postgres.
Catch-up¶
In the previous post we
Thedigitalcatonline
Flask project setup: TDD, Docker, Postgres and more - Part 2
A step-by-step tutorial on how to setup a Flask project with TDD, Docker and Postgres
The Digital Cat: Flask project setup: TDD, Docker, Postgres and more - Part 3
Link: https://www.thedigitalcatonline.com/blog/2020/07/07/flask-project-setup-tdd-docker-postgres-and-more-part-3/
In this series of posts I explore the development of a Flask project with a setup that is built with efficiency and tidiness in mind, using TDD, Docker and Postgres.
Catch-up¶
In the first and second
Link: https://www.thedigitalcatonline.com/blog/2020/07/07/flask-project-setup-tdd-docker-postgres-and-more-part-3/
In this series of posts I explore the development of a Flask project with a setup that is built with efficiency and tidiness in mind, using TDD, Docker and Postgres.
Catch-up¶
In the first and second
Thedigitalcatonline
Flask project setup: TDD, Docker, Postgres and more - Part 3
A step-by-step tutorial on how to setup a Flask project with TDD, Docker and Postgres
Weekly Python StackOverflow Report: (ccxlvi) stackoverflow python report
Link: http://python-weekly.blogspot.com/2020/10/ccxlvi-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-10-17 21:54:11 GMTHow can I generate three random integers that sa
Link: http://python-weekly.blogspot.com/2020/10/ccxlvi-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-10-17 21:54:11 GMTHow can I generate three random integers that sa
Blogspot
(ccxlvi) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2020...
Python Circle: Accessing Gmail Inbox using Python imaplib module
Link: https://pythoncircle.com/post/727/accessing-gmail-inbox-using-python-imaplib-module/
In this article, we are accessing Gmail inbox using IMAP library of python, We covered how to generate the password of an App to access the gmail inbox, how to read inbox and different category emails
Link: https://pythoncircle.com/post/727/accessing-gmail-inbox-using-python-imaplib-module/
In this article, we are accessing Gmail inbox using IMAP library of python, We covered how to generate the password of an App to access the gmail inbox, how to read inbox and different category emails
Python Circle
Accessing Gmail Inbox using Python imaplib module
In this article, we are accessing Gmail inbox using IMAP library of python, We covered how to generate the password of an App to access the gmail inbox, how to read inbox and different category emails, how to read promotional email, forum email and updates…
Codementor: How to Create Tkinter Progress Bar and DropDown
Link: https://www.codementor.io/martarey/how-to-create-tkinter-progress-bar-and-dropdown-1bcxwqpi6l
Learn step by step how you can add a progress bar and a dropdown widget to you user interface develop using Tkinter
Link: https://www.codementor.io/martarey/how-to-create-tkinter-progress-bar-and-dropdown-1bcxwqpi6l
Learn step by step how you can add a progress bar and a dropdown widget to you user interface develop using Tkinter
www.codementor.io
How to Create Tkinter Progress Bar and DropDown | Codementor
Learn step by step how you can add a progress bar and a dropdown widget to you user interface develop using Tkinter
EuroPython: EuroPython 2020: Edited videos are online
Link: https://blog.europython.eu/post/632313693115416577
We’re happy to announce that all edited videos of this year’s conference are now available on our YouTube channel:EuroPython 2020 PlaylistWe have 131 videos available in total, covering a very broad s
Link: https://blog.europython.eu/post/632313693115416577
We’re happy to announce that all edited videos of this year’s conference are now available on our YouTube channel:EuroPython 2020 PlaylistWe have 131 videos available in total, covering a very broad s
blog.europython.eu
EuroPython Blog
EuroPython 2020: Edited videos are online We’re happy to announce that all edited videos of this year’s conference are now available on our YouTube channel: EuroPython 2020 Playlist We have 131 videos...
Doug Hellmann: sphinxcontrib-spelling 6.0.0
Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/lgU6yyNTdGs/
sphinxcontrib-spelling is a spelling checker for Sphinx-based documentation. It uses PyEnchant to produce a report showing misspelled words. What’s new in 6.0.0? add release notes for recent changes s
Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/lgU6yyNTdGs/
sphinxcontrib-spelling is a spelling checker for Sphinx-based documentation. It uses PyEnchant to produce a report showing misspelled words. What’s new in 6.0.0? add release notes for recent changes s
Anarcat: CDPATH replacements
Link: https://anarc.at/blog/2020-10-18-cdpath-replacement/
after reading this post I figured I might as well bite the bullet
and improve on my CDPATH-related setup, especially because it does not
work with Emacs. so i looked around for autojump-related altern
Link: https://anarc.at/blog/2020-10-18-cdpath-replacement/
after reading this post I figured I might as well bite the bullet
and improve on my CDPATH-related setup, especially because it does not
work with Emacs. so i looked around for autojump-related altern
Mike Driscoll: PyDev of the Week: Sunita Dwivedi
Link: https://www.blog.pythonlibrary.org/2020/10/19/pydev-of-the-week-sunita-dwivedi/
This week we welcome Sunita Dwivedi as our PyDev of the Week! Sunita works for the DISH Network. She is active with PyDEN, the Denver, CO Python users group as well as PyColorado.
Let’s take some tim
Link: https://www.blog.pythonlibrary.org/2020/10/19/pydev-of-the-week-sunita-dwivedi/
This week we welcome Sunita Dwivedi as our PyDev of the Week! Sunita works for the DISH Network. She is active with PyDEN, the Denver, CO Python users group as well as PyColorado.
Let’s take some tim
The Mouse Vs. The Python
PyDev of the Week: Sunita Dwivedi - The Mouse Vs. The Python
This week we welcome Sunita Dwivedi as our PyDev of the Week! Sunita works for the DISH Network. She is active with PyDEN, the Denver, CO Python users group as well as PyColorado. Let’s take some time to learn more about Sunita! Can you tell us a little about…