Real Python: The Square Root Function in Python
Link: https://realpython.com/courses/square-root-function-python/
Are you trying to solve a quadratic equation? Maybe you need to calculate the length of one side of a right triangle. You can use the math module’s sqrt() method for determining the square root of a n
Link: https://realpython.com/courses/square-root-function-python/
Are you trying to solve a quadratic equation? Maybe you need to calculate the length of one side of a right triangle. You can use the math module’s sqrt() method for determining the square root of a n
Realpython
The Square Root Function in Python – Real Python
In this quick and practical course, you'll learn what a square root is and how to calculate one in Python. You'll even see how you can use the Python square root function to solve a real-world problem.
death and gravity: Why I wrote my own SQL query builder (in Python)
Link: https://death.andgravity.com/own-query-builder
Previously
This is the third article in a series about
writing an SQL query builder in 150 lines of Python.
Today, we'll talk about:
why I decided to write my own
the alternatives I considered
why I
Link: https://death.andgravity.com/own-query-builder
Previously
This is the third article in a series about
writing an SQL query builder in 150 lines of Python.
Today, we'll talk about:
why I decided to write my own
the alternatives I considered
why I
death and gravity
Why I wrote my own SQL query builder (in Python)
This is the third article in a series about writing an SQL query builder in 150 lines of Python. Here, I talk about why I decided to write my own, the alternatives I considered, why I didn't use an existing library, and how I knew it wouldn't become a maintenance…
Python Morsels: How to write a generator expression
Link: https://www.pythonmorsels.com/topics/how-write-generator-expression/
Transcript
Let's make a generator expression.
Writing a generator expression
Here we have a list and a list comprehension that loops over that list:
>>> numbers = [2, 1, 3, 4, 7, 11, 18]
>>> square
Link: https://www.pythonmorsels.com/topics/how-write-generator-expression/
Transcript
Let's make a generator expression.
Writing a generator expression
Here we have a list and a list comprehension that loops over that list:
>>> numbers = [2, 1, 3, 4, 7, 11, 18]
>>> square
Pythonmorsels
How to write a generator expression
List comprehensions make lists; generator expressions make generators. Generators are lazy single-use iterables which generate values as you loop over them.
Mike Driscoll: Learn to Code by Solving Problems eBook Contest
Link: https://www.blog.pythonlibrary.org/2021/07/13/learn-to-code-by-solving-problems-ebook-contest/
No Starch Press has partnered with Mouse vs Python to bring you an eBook contest for Learn to Code by Solving Problems: A Python Programming Primer by Daniel Zingaro.
There will be 5 winners. To ente
Link: https://www.blog.pythonlibrary.org/2021/07/13/learn-to-code-by-solving-problems-ebook-contest/
No Starch Press has partnered with Mouse vs Python to bring you an eBook contest for Learn to Code by Solving Problems: A Python Programming Primer by Daniel Zingaro.
There will be 5 winners. To ente
Mouse Vs Python
Learn to Code by Solving Problems eBook Contest
Enter this contest to win an eBook copy of Learn to Code by Solving Problems, which uses the Python language from No Starch Press.
PyCharm: Webinar: “Simple, Fast Frontends with htmx” with Carson Gross
Link: http://feedproxy.google.com/~r/Pycharm/~3/YhSMW0UCBEA/
The web has changed in recent years. Modern websites mean lots of JavaScript on the frontend, sometimes supplanting HTML all together. You’re left with a pile of npm dependencies, wondering if it will
Link: http://feedproxy.google.com/~r/Pycharm/~3/YhSMW0UCBEA/
The web has changed in recent years. Modern websites mean lots of JavaScript on the frontend, sometimes supplanting HTML all together. You’re left with a pile of npm dependencies, wondering if it will
JetBrains Blog
Webinar: “Simple, Fast Frontends with htmx” with Carson Gross | The PyCharm Blog
Modern web frontends don't have to mean switching from HTML to JavaScript. Come see of a demo of htmx, which lets you boost your web pages while keeping your existing stack.
PyCoder’s Weekly: Issue #481 (July 13, 2021)
Link: https://pycoders.com/issues/481
#481 – JULY 13, 2021 View in Browser » One Database Transaction Too Many Learn how a bug was born — one that resulted in hundreds of users of an application getting a notification that they had
Link: https://pycoders.com/issues/481
#481 – JULY 13, 2021 View in Browser » One Database Transaction Too Many Learn how a bug was born — one that resulted in hundreds of users of an application getting a notification that they had
Pycoders
PyCoder’s Weekly | Issue #481
Issue #481 of the PyCoder’s Weekly newsletter, published July 13, 2021.
Podcast.__init__: Exploring The SpeechBrain Toolkit For Speech Processing
Link: https://www.pythonpodcast.com/speechbrain-deep-learning-speech-toolkit-episode-323/
With the rising availability of computation in everyday devices, there has been a corresponding increase in the appetite for voice as the primary interface. To accomodate this desire it is necessary f
Link: https://www.pythonpodcast.com/speechbrain-deep-learning-speech-toolkit-episode-323/
With the rising availability of computation in everyday devices, there has been a corresponding increase in the appetite for voice as the primary interface. To accomodate this desire it is necessary f
The Python Podcast.__init__
The Python Podcast.__init__: Exploring The SpeechBrain Toolkit For Speech Processing
An interview about the open source SpeechBrain library for research on deep learning applications of speech audio data
Juri Pakaste: Converting between NSBezierPath and CGPath
Link: https://juripakaste.fi/nzbezierpath-cgpath/
The macOS SDK ships with at least two graphics path types: NSBezierPath and CGPath. They are mostly used in different contexts but sometimes it would be useful to convert between them. On iOS UIBezier
Link: https://juripakaste.fi/nzbezierpath-cgpath/
The macOS SDK ships with at least two graphics path types: NSBezierPath and CGPath. They are mostly used in different contexts but sometimes it would be useful to convert between them. On iOS UIBezier
juripakaste.fi
Converting between NSBezierPath and CGPath
Personal blog of Juri Pakaste
Python for Beginners: Python Literals
Link: https://www.pythonforbeginners.com/basics/python-literals
While reading materials for programming in python, you must have encountered certain phrases like keywords, variables, constants and literals. In this article, we will study the underlying concepts
Link: https://www.pythonforbeginners.com/basics/python-literals
While reading materials for programming in python, you must have encountered certain phrases like keywords, variables, constants and literals. In this article, we will study the underlying concepts
PythonForBeginners.com
Python Literals - PythonForBeginners.com
Python Literals will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Stack Abuse: Creating and Parsing Datetime in Python with Delorean
Link: https://stackabuse.com/creating-and-parsing-datetime-in-python-with-delorean
Introduction
Working with datetime can be a bit daunting and challenging, and handling datetime in Python is no exception. Python's built-in datetime module introduced us to several classes - date, d
Link: https://stackabuse.com/creating-and-parsing-datetime-in-python-with-delorean
Introduction
Working with datetime can be a bit daunting and challenging, and handling datetime in Python is no exception. Python's built-in datetime module introduced us to several classes - date, d
Stack Abuse
Creating and Parsing Datetime in Python with Delorean
In this guide, we'll take a look at how to create and parse datetime objects in Python with Delorean, from various string formats, epoch timestamps and how to generate a sequence of dates using stops().
Real Python: Use FastAPI to Build Web APIs
Link: https://realpython.com/fastapi-python-web-apis/
Creating APIs, or application programming interfaces, is an important part of making your software accessible to a broad range of users. In this tutorial, you will learn the main concepts of FastAPI a
Link: https://realpython.com/fastapi-python-web-apis/
Creating APIs, or application programming interfaces, is an important part of making your software accessible to a broad range of users. In this tutorial, you will learn the main concepts of FastAPI a
Realpython
A Close Look at a FastAPI Example Application – Real Python
Set up an example FastAPI app, add path and query parameters, and handle CRUD operations with Pydantic for clean, validated endpoints.
Python Circle: Adding Email Subscription Feature in Django Application
Link: https://pythoncircle.com/post/657/adding-email-subscription-feature-in-django-application/
email subscription feature in django, sending email subscription confirmation mail in django, sending email unsubscribe email in Django, Add subscription feature in Django
Link: https://pythoncircle.com/post/657/adding-email-subscription-feature-in-django-application/
email subscription feature in django, sending email subscription confirmation mail in django, sending email unsubscribe email in Django, Add subscription feature in Django
Python Circle
Adding Email Subscription Feature in Django Application
email subscription feature in django, sending email subscription confirmation mail in django, sending email unsubscribe email in Django, Add subscription feature in Django
Doug Hellmann: sphinxcontrib-datatemplates 0.9.0
Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/73EzZiE30kM/
What’s new in 0.9.0? Added a resolve_any_xref() method to DataTemplateDomain to support Markdown via the myst-parser extension #82 (contributions by Manuel Racle)
Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/73EzZiE30kM/
What’s new in 0.9.0? Added a resolve_any_xref() method to DataTemplateDomain to support Markdown via the myst-parser extension #82 (contributions by Manuel Racle)
Doug Hellmann
sphinxcontrib-datatemplates 0.9.0
What’s new in 0.9.0? Added a resolve_any_xref() method to DataTemplateDomain to support Markdown via the myst-parser extension #82 (contributions by Manuel Racle)
Python Bytes: #242 from lib import * but less
Link: https://pythonbytes.fm/episodes/show/242/from-lib-import-but-less
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=rrpRqdeSw_8' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/242/from-lib-import-but-less
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=rrpRqdeSw_8' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
from lib import * but less
News and announcements from the Python community for the week of Jul 15th, 2021
John Ludhi/nbshare.io: String And Literal In Python 3
Link: https://www.nbshare.io/notebook/775177178/String-And-Literal-In-Python-3/
String And Literal In Python 3
In this notebook, I will talk about basics of string and Literal in Python. Following notebook has been built using Python3.6
Let us start with Py
Link: https://www.nbshare.io/notebook/775177178/String-And-Literal-In-Python-3/
String And Literal In Python 3
In this notebook, I will talk about basics of string and Literal in Python. Following notebook has been built using Python3.6
Let us start with Py
Python Circle: Text to QR code image and QR code image to text generator in Python Django
Link: https://pythoncircle.com/post/749/text-to-qr-code-image-and-qr-code-image-to-text-generator-in-python-django/
QR code image to text generator in Python Django, Text to QR code image generator in Python Django, Implementing QR code generator in Python Django. Serving static files in Django media
Link: https://pythoncircle.com/post/749/text-to-qr-code-image-and-qr-code-image-to-text-generator-in-python-django/
QR code image to text generator in Python Django, Text to QR code image generator in Python Django, Implementing QR code generator in Python Django. Serving static files in Django media
Python Circle
Text to QR code image and QR code image to text generator in Python Django
QR code image to text generator in Python Django, Text to QR code image generator in Python Django, Implementing QR code generator in Python Django. Serving static files in Django media
Anwesha Das: Server migration for blogs.dgplug.org
Link: http://anweshadas.in/server-migration-for-blogs-dgplug-org/
I have been maintaining dgplug infrastructure for sometime now. We have a blogging platform, blogs.dgplug.org for our community. We were planning to migrate it to the latest version of Operating Syste
Link: http://anweshadas.in/server-migration-for-blogs-dgplug-org/
I have been maintaining dgplug infrastructure for sometime now. We have a blogging platform, blogs.dgplug.org for our community. We were planning to migrate it to the latest version of Operating Syste
Stack Abuse: How to Humanize Delorean Datetime Objects
Link: https://stackabuse.com/how-to-humanize-delorean-datetime-objects
Introduction
Working with datetime can be a bit daunting and challenging, and handling datetime in Python is no exception. Python's built-in datetime module introduced us to several classes - date, d
Link: https://stackabuse.com/how-to-humanize-delorean-datetime-objects
Introduction
Working with datetime can be a bit daunting and challenging, and handling datetime in Python is no exception. Python's built-in datetime module introduced us to several classes - date, d
Stack Abuse
How to Humanize Delorean Datetime Objects
Humanizing dates is important for a good user experience. In this guide, we'll take a look at how to humanize dates and relative dates using Delorean and Python.
Read the Docs: Read the Docs newsletter - July 2021
Link: https://blog.readthedocs.com/newsletter-july-2021/
Welcome to a new edition of our monthly newsletter, where we
share the most relevant updates around Read the Docs,
offer a summary of new features we shipped
during the previous month,
and share what
Link: https://blog.readthedocs.com/newsletter-july-2021/
Welcome to a new edition of our monthly newsletter, where we
share the most relevant updates around Read the Docs,
offer a summary of new features we shipped
during the previous month,
and share what
Readthedocs
Read the Docs newsletter - July 2021 — Read the Docs Blog
Company updates and new features from last month, current focus, and upcoming features in July.
Matt Layman: Making Sense Of Settings
Link: https://www.mattlayman.com/understand-django/settings/
In the last Understand Django article, we looked at a storage concept in Django called sessions. Sessions help us answer questions like “How does Django know when a user is logged in?” or “Where can t
Link: https://www.mattlayman.com/understand-django/settings/
In the last Understand Django article, we looked at a storage concept in Django called sessions. Sessions help us answer questions like “How does Django know when a user is logged in?” or “Where can t
Matt Layman
Making Sense Of Settings
All Django apps need to be configured in order to run properly. In this article, we will dig into how Django lets you configure your project using a settings module. We'll also look at ways to be extra effective with settings.