Seth Michael Larson: Visualizing the Python package SBOM data flow
Link: https://sethmlarson.dev/visualizing-the-python-package-sbom-data-flow?utm_campaign=rss
Visualizing the Python package SBOM data flow
Link: https://sethmlarson.dev/visualizing-the-python-package-sbom-data-flow?utm_campaign=rss
Visualizing the Python package SBOM data flow
sethmlarson.dev
Visualizing the Python package SBOM data flow
This critical role would not be possible without funding from the Alpha-Omega project.
TLDR: Skip intro, take me to the visualization!
I'm working on improving measurability of Python...
TLDR: Skip intro, take me to the visualization!
I'm working on improving measurability of Python...
Eli Bendersky: GoMLX: ML in Go without Python
Link: https://eli.thegreenplace.net/2024/gomlx-ml-in-go-without-python/
In the previous post
I talked about running ML inference in Go through a Python sidecar process. In
this post, let's see how we can accomplish the same tasks without using Python
at all.
How ML model
Link: https://eli.thegreenplace.net/2024/gomlx-ml-in-go-without-python/
In the previous post
I talked about running ML inference in Go through a Python sidecar process. In
this post, let's see how we can accomplish the same tasks without using Python
at all.
How ML model
Talk Python to Me: #486: CSnakes: Embed Python code in .NET
Link: https://talkpython.fm/episodes/show/486/csnakes-embed-python-code-in-.net
If you are a .NET developer or work in a place that has some of those folks, wouldn't it be great to fully leverage the entirety of PyPI with it's almost 600,000 packages inside your .NET code? But ho
Link: https://talkpython.fm/episodes/show/486/csnakes-embed-python-code-in-.net
If you are a .NET developer or work in a place that has some of those folks, wouldn't it be great to fully leverage the entirety of PyPI with it's almost 600,000 packages inside your .NET code? But ho
talkpython.fm
CSnakes: Embed Python code in .NET
If you are a .NET developer or work in a place that has some of those folks, wouldn't it be great to fully leverage the entirety of PyPI with it's almost 600,000 packages inside your .NET code? But how would you do this? Previous efforts have let you write…
EuroPython Society: 2024 General Assembly Announcement
Link: https://www.europython-society.org/2024-general-assembly-announcement/
We’re excited to invite you to this year’s General Assembly meeting! We’ll gather on Sunday, December 1st, 2024, from 20:00 to 21:00 CET. Just like in recent years, we’ll use Zoom, and additional join
Link: https://www.europython-society.org/2024-general-assembly-announcement/
We’re excited to invite you to this year’s General Assembly meeting! We’ll gather on Sunday, December 1st, 2024, from 20:00 to 21:00 CET. Just like in recent years, we’ll use Zoom, and additional join
EuroPython Society
2024 General Assembly Announcement
We’re excited to invite you to this year’s General Assembly meeting! We’ll gather on Sunday, December 1st, 2024, from 20:00 to 21:00 CET. Just like in recent years, we’ll use Zoom, and additional joining instructions will be shared closer to the date. The…
Matt Layman: Huey Background Worker - Building SaaS #207
Link: https://www.mattlayman.com/videos/huey-background-worker-building-saas-207/
In this episode, I continued a migration of my JourneyInbox app from Heroku to DigitalOcean. I switched how environment configuration is pulled and converted cron jobs to use Huey as a background work
Link: https://www.mattlayman.com/videos/huey-background-worker-building-saas-207/
In this episode, I continued a migration of my JourneyInbox app from Heroku to DigitalOcean. I switched how environment configuration is pulled and converted cron jobs to use Huey as a background work
Matt Layman
Huey Background Worker - Building SaaS #207
In this episode, I continued a migration of my JourneyInbox app from Heroku to DigitalOcean. I switched how environment configuration is pulled and converted cron jobs to use Huey as a background worker. Then I integrated Kamal configuration and walked through…
Real Python: How to Iterate Through a Dictionary in Python
Link: https://realpython.com/iterate-through-dictionary-python/
Python offers several ways to iterate through a dictionary, such as using .items() to access key-value pairs directly and .values() to retrieve values only.
By understanding these techniques, you’ll b
Link: https://realpython.com/iterate-through-dictionary-python/
Python offers several ways to iterate through a dictionary, such as using .items() to access key-value pairs directly and .values() to retrieve values only.
By understanding these techniques, you’ll b
Realpython
How to Iterate Through a Dictionary in Python – Real Python
In this tutorial, you'll take a deep dive into how to iterate through a dictionary in Python. Dictionaries are a fundamental data type in Python, and you can solve various programming problems by iterating through them.
Zero to Mastery: Python Monthly Newsletter 💻🐍
Link: https://zerotomastery.io/blog/python-monthly-newsletter-november-2024/?utm_source=python-rss-feed
60th issue of Andrei Neagoie's must-read monthly Python Newsletter: Python 3.13, Django Project Ideas, GPU Bubble is Bursting, and much more. Read the full newsletter to get up-to-date with everything
Link: https://zerotomastery.io/blog/python-monthly-newsletter-november-2024/?utm_source=python-rss-feed
60th issue of Andrei Neagoie's must-read monthly Python Newsletter: Python 3.13, Django Project Ideas, GPU Bubble is Bursting, and much more. Read the full newsletter to get up-to-date with everything
Zero To Mastery
[November 2024] Python Monthly Newsletter 💻🐍 | Zero To Mastery
60th issue of Andrei Neagoie's must-read monthly Python Newsletter read by 15,000+ Pythonistas. Get up-to-date with the top Python news from last month.
Seth Michael Larson: How do I pay the publisher of a web page?
Link: https://sethmlarson.dev/how-to-i-pay-for-a-web-page?utm_campaign=rss
How do I pay the publisher of a web page?
Link: https://sethmlarson.dev/how-to-i-pay-for-a-web-page?utm_campaign=rss
How do I pay the publisher of a web page?
sethmlarson.dev
How do I pay the publisher of a web page?
Here's an unanswered question:
I have money and I have a URL, how do I send money to the publisher of that URL?
URLs tell you where to get content on the web, but they don't tell you
anything...
I have money and I have a URL, how do I send money to the publisher of that URL?
URLs tell you where to get content on the web, but they don't tell you
anything...
Real Python: Efficient String Concatenation in Python
Link: https://realpython.com/python-string-concatenation/
Python string concatenation is a fundamental operation that combines multiple strings into a single string. In Python, you can concatenate strings using the + operator or the += operator for appending
Link: https://realpython.com/python-string-concatenation/
Python string concatenation is a fundamental operation that combines multiple strings into a single string. In Python, you can concatenate strings using the + operator or the += operator for appending
Realpython
Efficient String Concatenation in Python – Real Python
In this tutorial, you'll learn how to concatenate strings in Python. You'll use different tools and techniques for string concatenation, including the concatenation operators and the .join() method. You'll also explore other tools that can also be handy for…
Real Python: Python range(): Represent Numerical Ranges
Link: https://realpython.com/python-range/
In Python, the range() function generates a sequence of numbers, often used in loops for iteration. By default, it creates numbers starting from 0 up to but not including a specified stop value. You c
Link: https://realpython.com/python-range/
In Python, the range() function generates a sequence of numbers, often used in loops for iteration. By default, it creates numbers starting from 0 up to but not including a specified stop value. You c
Realpython
Python range(): Represent Numerical Ranges – Real Python
Master the Python range() function and learn how it works under the hood. You most commonly use ranges in loops. In this tutorial, you'll learn how to iterate over ranges but also identify when there are better alternatives.
Django Weblog: DjangoCon Europe 2026 call for organizers completed
Link: https://www.djangoproject.com/weblog/2024/nov/24/djangocon-europe-2026-call-for-organizers-complete/
The DjangoCon Europe 2026 call for organizers is now over. We’re elated to report we received three viable proposals, a clear improvement over recent years.
We’ll let the successful team decide when a
Link: https://www.djangoproject.com/weblog/2024/nov/24/djangocon-europe-2026-call-for-organizers-complete/
The DjangoCon Europe 2026 call for organizers is now over. We’re elated to report we received three viable proposals, a clear improvement over recent years.
We’ll let the successful team decide when a
Django Project
DjangoCon Europe 2026 call for organizers completed
Posted by Thibaud Colas & DjangoCon Europe Support working group on Nov. 24, 2024
Django Weblog: 2024 Malcolm Tredinnick Memorial Prize awarded to Rachell Calhoun
Link: https://www.djangoproject.com/weblog/2024/nov/24/2024-malcolm-tredinnick-memorial-prize-awarded-to-/
This year it was hard to decide, and we wanted to also show who else got nominated, because they also deserve recognition, so it took a bit longer than we expected.
The Django Software Foundation Boa
Link: https://www.djangoproject.com/weblog/2024/nov/24/2024-malcolm-tredinnick-memorial-prize-awarded-to-/
This year it was hard to decide, and we wanted to also show who else got nominated, because they also deserve recognition, so it took a bit longer than we expected.
The Django Software Foundation Boa
Django Project
2024 Malcolm Tredinnick Memorial Prize awarded to Rachell Calhoun
Posted by Sarah Abderemane on Nov. 24, 2024
Hugo van Kemenade: A surprising thing about PyPI's BigQuery data
Link: https://dev.to/hugovk/a-surprising-thing-about-pypis-bigquery-data-2g9o
You can get download numbers for PyPI packages (or projects) from a Google BigQuery dataset. You need a Google account and credentials, and Google gives 1 TiB of free quota per month.
Each month, I ha
Link: https://dev.to/hugovk/a-surprising-thing-about-pypis-bigquery-data-2g9o
You can get download numbers for PyPI packages (or projects) from a Google BigQuery dataset. You need a Google account and credentials, and Google gives 1 TiB of free quota per month.
Each month, I ha
DEV Community
A surprising thing about PyPI's BigQuery data
You can get download numbers for PyPI packages (or projects) from a Google BigQuery dataset. You need...
Julien Tayon: The advantages of HTML as a data model over basic declarative ORM approach
Link: https://beauty-of-imagination.blogspot.com/2024/11/the-advantages-of-html-as-data-model.html
Very often, backend devs don't want to write code.
For this, we use one trick : derive HTML widget for presentation, database access, REST endpoints from ONE SOURCE of truth and we call it MODEL.
A tr
Link: https://beauty-of-imagination.blogspot.com/2024/11/the-advantages-of-html-as-data-model.html
Very often, backend devs don't want to write code.
For this, we use one trick : derive HTML widget for presentation, database access, REST endpoints from ONE SOURCE of truth and we call it MODEL.
A tr
Blogspot
The advantages of HTML as a data model over basic declarative ORM approach
Zato Blog: SSH commands as API microservices
Link: https://zato.io/en/blog/ssh-api-service.html
SSH commands as API microservices
2024-11-25, by Dariusz Suchojad
This is a quick guide on how to turn SSH commands into a REST API service. The use-case may be remote administration
of devices
Link: https://zato.io/en/blog/ssh-api-service.html
SSH commands as API microservices
2024-11-25, by Dariusz Suchojad
This is a quick guide on how to turn SSH commands into a REST API service. The use-case may be remote administration
of devices
Real Python: Speed Up Your Python Program With Concurrency
Link: https://realpython.com/python-concurrency/
Concurrency refers to the ability of a program to manage multiple tasks at once, improving performance and responsiveness. It encompasses different models like threading, asynchronous tasks, and multi
Link: https://realpython.com/python-concurrency/
Concurrency refers to the ability of a program to manage multiple tasks at once, improving performance and responsiveness. It encompasses different models like threading, asynchronous tasks, and multi
Realpython
Speed Up Your Python Program With Concurrency – Real Python
In this tutorial, you'll explore concurrency in Python, including multi-threaded and asynchronous solutions for I/O-bound tasks, and multiprocessing for CPU-bound tasks. By the end of this tutorial, you'll know how to choose the appropriate concurrency model…
Trey Hunner: New Python Jumpstart course
Link: https://treyhunner.com/2024/11/new-python-jumpstart-course/
I’ve just recently launched a self-paced introduction to Python that is extremely hands-on.
It’s called Python Jumpstart and it’s based on introductory Python curriculum that I have been iterating on
Link: https://treyhunner.com/2024/11/new-python-jumpstart-course/
I’ve just recently launched a self-paced introduction to Python that is extremely hands-on.
It’s called Python Jumpstart and it’s based on introductory Python curriculum that I have been iterating on
Treyhunner
New Python Jumpstart course
I’ve just recently launched a self-paced introduction to Python that is extremely hands-on.
It’s called Python Jumpstart and it’s …
It’s called Python Jumpstart and it’s …
Mike Driscoll: Black Friday Python Deals 2024
Link: https://www.blog.pythonlibrary.org/2024/11/25/black-friday-python-deals-2024/
Black Friday and Cyber Monday are nearly here, so it’s time to do a Python sale! All my books and courses are 35% off until December 4th if you use this code: BF24 at checkout.
You can learn about any
Link: https://www.blog.pythonlibrary.org/2024/11/25/black-friday-python-deals-2024/
Black Friday and Cyber Monday are nearly here, so it’s time to do a Python sale! All my books and courses are 35% off until December 4th if you use this code: BF24 at checkout.
You can learn about any
Mouse Vs Python
Black Friday Python Deals 2024 - Mouse Vs Python
Black Friday and Cyber Monday are nearly here, so it's time to do a Python sale! All my books and courses are 35% off until December 4th if you use this
Python Bytes: #411 TLS Client: Hello <<guitar solo>>
Link: https://pythonbytes.fm/episodes/show/411/tls-client-hello-guitar-solo
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://talkpython.fm/blog/posts/talk-python-rewritten-in-quart-async-flask/?featured_on=pythonbytes">Talk Python rewri
Link: https://pythonbytes.fm/episodes/show/411/tls-client-hello-guitar-solo
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://talkpython.fm/blog/posts/talk-python-rewritten-in-quart-async-flask/?featured_on=pythonbytes">Talk Python rewri
pythonbytes.fm
TLS Client: Hello <<guitar solo>>
News and announcements from the Python community for the week of Nov 25th, 2024
Wingware: Wing Python IDE Version 10.0.7 - November 25, 2024
Link: https://wingware.com/news/2024-11-25
This minor release reduces Python 3.12+ debugger overhead and improves Python code analysis.
See the change log for details.
Download Wing 10 Now: Wing Pro |
Wing Personal |
Wing 101 |
Compare Product
Link: https://wingware.com/news/2024-11-25
This minor release reduces Python 3.12+ debugger overhead and improves Python code analysis.
See the change log for details.
Download Wing 10 Now: Wing Pro |
Wing Personal |
Wing 101 |
Compare Product
Wingware
Wing Python IDE Version 10.0.7 - November 25, 2024 - Wing Python IDE
This minor release reduces Python 3.12+ debugger overhead and improves Python code analysis.