Podcast.__init__: See The Structure Of Your Software At A Glance With Call Graphs From Code2Flow
Link: https://www.pythonpodcast.com/code2flow-call-graph-episode-354/
As software projects grow and change it can become difficult to keep track of all of the logical flows. By visualizing the interconnections of function definitions, classes, and their invocations you
Link: https://www.pythonpodcast.com/code2flow-call-graph-episode-354/
As software projects grow and change it can become difficult to keep track of all of the logical flows. By visualizing the interconnections of function definitions, classes, and their invocations you
The Python Podcast.__init__
The Python Podcast.__init__: See The Structure Of Your Software At A Glance With Call Graphs From Code2Flow
An interview with Scott Rogowski about his work on the Code2Flow package that lets you quickly view the structure of your code with "pretty good" call graphs that support Python, Ruby, and PHP.
Mike Driscoll: PyDev of the Week: Henry Schreiner III
Link: https://www.blog.pythonlibrary.org/2022/02/28/pydev-of-the-week-henry-schreiner-iii/
This week we welcome Henry Schreiner (@HenrySchreiner3) as our PyDev of the Week! Henry is an open-source maintainer/core contributor to multiple projects related to scikit, PyPA, and more. You can ge
Link: https://www.blog.pythonlibrary.org/2022/02/28/pydev-of-the-week-henry-schreiner-iii/
This week we welcome Henry Schreiner (@HenrySchreiner3) as our PyDev of the Week! Henry is an open-source maintainer/core contributor to multiple projects related to scikit, PyPA, and more. You can ge
Mouse Vs Python
PyDev of the Week: Henry Schreiner III - Mouse Vs Python
This week we welcome Henry Schreiner (@HenrySchreiner3) as our PyDev of the Week! Henry is an open-source maintainer/core contributor to multiple projects
Malthe Borch: Container Registry on a Budget using AWS S3
Link: https://maltheborch.com/2022/02/container-registry-on-a-budget-using-aws-s3.html
Inspired by Mike Cartmell's
Budget Kubernetes Hosting for Personal Use blog series, I wanted to set up my own Kubernetes cluster on DigitalOcean on a budget, mostl
Link: https://maltheborch.com/2022/02/container-registry-on-a-budget-using-aws-s3.html
Inspired by Mike Cartmell's
Budget Kubernetes Hosting for Personal Use blog series, I wanted to set up my own Kubernetes cluster on DigitalOcean on a budget, mostl
Malthe's Homepage:
Software Engineering and Architecture, Data Processing and Analytics
A Blog About Computer Systems
Software Engineering and Architecture, Data Processing and Analytics
A Blog About Computer Systems
Container Registry on a Budget using AWS S3
Python⇒Speed: Docker builds in CircleCI: go faster, and support newer Linux versions
Link: https://pythonspeed.com/articles/circleci-docker/
If you’re using CircleCI to build your Docker images, you might find yourself using an old version of Docker without realizing it.
That means:
Slower builds.
Lack of support for newer Linux distribut
Link: https://pythonspeed.com/articles/circleci-docker/
If you’re using CircleCI to build your Docker images, you might find yourself using an old version of Docker without realizing it.
That means:
Slower builds.
Lack of support for newer Linux distribut
Python⇒Speed
Docker builds in CircleCI: go faster, and support newer Linux versions
CircleCI’s default version of Docker is quite old; make sure you choose a newer version if you want faster builds and support for newer Linux distributions.
Python Morsels: What is a generator function?
Link: https://www.pythonmorsels.com/topics/what-is-a-generator-function/
What is a generator function in Python?
A regular function in Python
Here's a regular function:
def negate_all(iterable):
print("Start")
negatives = []
for n in iterable:
print(
Link: https://www.pythonmorsels.com/topics/what-is-a-generator-function/
What is a generator function in Python?
A regular function in Python
Here's a regular function:
def negate_all(iterable):
print("Start")
negatives = []
for n in iterable:
print(
Pythonmorsels
What is a generator function?
When you call a generator function it doesn't actually run the function; instead it returns a generator object.
Real Python: Python's urllib.request for HTTP Requests
Link: https://realpython.com/urllib-request/
If you need to make HTTP requests with Python, then you may find yourself directed to the brilliant requests library. Though it’s a great library, you may have noticed that it’s not a built-in part of
Link: https://realpython.com/urllib-request/
If you need to make HTTP requests with Python, then you may find yourself directed to the brilliant requests library. Though it’s a great library, you may have noticed that it’s not a built-in part of
Realpython
Python's urllib.request for HTTP Requests – Real Python
In this tutorial, you'll be making HTTP requests with Python's built-in urllib.request. You'll try out examples and review common errors encountered, all while learning more about HTTP requests and Python in general.
Python Morsels: Overlooked facts about variables and objects in Python: it's all about pointers
Link: https://www.pythonmorsels.com/topics/pointers/
In Python, variables and data structures don't contain objects.
This fact is both commonly overlooked and tricky to internalize.
You can happily use Python for years without really understanding the b
Link: https://www.pythonmorsels.com/topics/pointers/
In Python, variables and data structures don't contain objects.
This fact is both commonly overlooked and tricky to internalize.
You can happily use Python for years without really understanding the b
Pythonmorsels
Overlooked facts about variables and objects in Python: it's all about pointers
Unlike many programming languages, variables in Python are not buckets which "contain" objects. In Python, variables are pointers that "point" to objects.
TestDriven.io: Deploying a Django Application to Elastic Beanstalk
Link: https://testdriven.io/blog/django-elastic-beanstalk/
This tutorial shows how to deploy a Django Application to AWS Elastic Beanstalk.
Link: https://testdriven.io/blog/django-elastic-beanstalk/
This tutorial shows how to deploy a Django Application to AWS Elastic Beanstalk.
testdriven.io
Deploying a Django Application to Elastic Beanstalk
This tutorial shows how to deploy a Django Application to AWS Elastic Beanstalk.
Zero to Mastery: Python Monthly Newsletter 💻🐍 February 2022
Link: https://zerotomastery.io/blog/python-monthly-newsletter-february-2022/?utm_source=python-rss-feed
27th issue of the Python Monthly Newsletter! Read by 20,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry a
Link: https://zerotomastery.io/blog/python-monthly-newsletter-february-2022/?utm_source=python-rss-feed
27th issue of the Python Monthly Newsletter! Read by 20,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry a
Zero To Mastery
[February 2022] Python Monthly Newsletter 💻🐍 | Zero To Mastery
27th issue of the Python Monthly Newsletter! Read by 20,000+ Python developers, Andrei covers the most important Python news to keep you sharp & up-to-date.
STX Next: Python for Game Development: Should You Develop Games in Python?
Link: https://www.stxnext.com/blog/python-for-game-development/
Ever since a computer first arrived at my doorstep, video games have been my favorite medium. I instantly fell in love with this form of storytelling, playing the role of the protagonist and gett
Link: https://www.stxnext.com/blog/python-for-game-development/
Ever since a computer first arrived at my doorstep, video games have been my favorite medium. I instantly fell in love with this form of storytelling, playing the role of the protagonist and gett
Stxnext
Python for Game Development: Should You Develop Games in Python?
Is Python good for game development? What are the advantages and disadvantages of developing games in Python? Read our article and find out!
Guido van Rossum: Meeting Mike Burrows
Link: http://neopythonic.blogspot.com/2022/02/meeting-mike-burrows.html
In late 2005 I joined Google. The interviews took a surprising long time, which is a tale for another time. Today I want to tell a story that happened in one of my first weeks on campus.In the main b
Link: http://neopythonic.blogspot.com/2022/02/meeting-mike-burrows.html
In late 2005 I joined Google. The interviews took a surprising long time, which is a tale for another time. Today I want to tell a story that happened in one of my first weeks on campus.In the main b
Blogspot
Meeting Mike Burrows
In late 2005 I joined Google. The interviews took a surprising long time, which is a tale for another time. Today I want to tell a story t...
Test and Code: 181: Boost Your Django DX - Adam Johnson
Link: https://testandcode.com/181
We talk with Adam Johnson about his new book, "Boost Your Django DX".
Developer experience includes tools and practices to make developers more effective and efficient, and just plain make software d
Link: https://testandcode.com/181
We talk with Adam Johnson about his new book, "Boost Your Django DX".
Developer experience includes tools and practices to make developers more effective and efficient, and just plain make software d
Test & Code in Python
Test & Code in Python 181: Boost Your Django DX - Adam Johnson
We talk with Adam Johnson about his new book, "Boost Your Django DX".
Tryton News: Newsletter March 2022
Link: https://discuss.tryton.org/t/newsletter-march-2022/5009
Here’s a sneak peak at the improvements that landed during the last month.
Changes for the User
To shipments we’ve added a field that calculates the total weight of the packages.
It is now possib
Link: https://discuss.tryton.org/t/newsletter-march-2022/5009
Here’s a sneak peak at the improvements that landed during the last month.
Changes for the User
To shipments we’ve added a field that calculates the total weight of the packages.
It is now possib
Tryton Discussion
Newsletter March 2022
Here’s a sneak peak at the improvements that landed during the last month. Changes for the User To shipments we’ve added a field that calculates the total weight of the packages. It is now possible to configure which units are used for the shipment volume…
Django Weblog: Django bugfix release: 4.0.3
Link: https://www.djangoproject.com/weblog/2022/mar/01/bugfix-release/
Today we've issued the 4.0.3 bugfix release.
The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used
for this release is
Link: https://www.djangoproject.com/weblog/2022/mar/01/bugfix-release/
Today we've issued the 4.0.3 bugfix release.
The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used
for this release is
S. Lott: Static Site Blues
Link: http://slott-softwarearchitect.blogspot.com/2022/03/static-site-blues.html
I have a very large, static site with 10+ years of stuff about my boat. Most of it is pretty boring. http://www.itmaybeahack.com/TeamRedCruising/I started with iWeb. It was very -- well -- 2000-ish lo
Link: http://slott-softwarearchitect.blogspot.com/2022/03/static-site-blues.html
I have a very large, static site with 10+ years of stuff about my boat. Most of it is pretty boring. http://www.itmaybeahack.com/TeamRedCruising/I started with iWeb. It was very -- well -- 2000-ish lo
Blogspot
Static Site Blues
I have a very large, static site with 10+ years of stuff about my boat. Most of it is pretty boring. http://www.itmaybeahack.com/TeamRedCru...
Real Python: Exploring the Fibonacci Sequence With Python
Link: https://realpython.com/courses/python-fibonacci-sequence/
The Fibonacci sequence is a pretty famous sequence of integer numbers. The sequence comes up naturally in many problems and has a nice recursive definition. Learning how to generate it is an essential
Link: https://realpython.com/courses/python-fibonacci-sequence/
The Fibonacci sequence is a pretty famous sequence of integer numbers. The sequence comes up naturally in many problems and has a nice recursive definition. Learning how to generate it is an essential
Realpython
Exploring the Fibonacci Sequence With Python – Real Python
In this video course, you'll explore the Fibonacci sequence in Python, which serves as an invaluable springboard into the world of recursion, and learn how to optimize recursive algorithms in the process.
Mike Driscoll: 5 Tips on Learning Python From Zero
Link: https://www.blog.pythonlibrary.org/2022/03/01/5-tips-on-learning-python-from-zero/
I was recently contacted by https://www.developrec.net/ to create a video about Python. Here is the result:
The post 5 Tips on Learning Python From Zero appeared first on Mouse Vs Python.
Link: https://www.blog.pythonlibrary.org/2022/03/01/5-tips-on-learning-python-from-zero/
I was recently contacted by https://www.developrec.net/ to create a video about Python. Here is the result:
The post 5 Tips on Learning Python From Zero appeared first on Mouse Vs Python.
Mouse Vs Python
5 Tips on Learning Python From Zero - Mouse Vs Python
I was recently contacted by https://www.developrec.net/ to create a video about Python. Here is the result:
ItsMyCode: [Solved] Error: command errored out with exit status 1
Link: https://itsmycode.com/error-command-errored-out-with-exit-status-1/
If you are installing auto-py-to-exe package on Python 3.8 or below, you will get an error stating ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full comma
Link: https://itsmycode.com/error-command-errored-out-with-exit-status-1/
If you are installing auto-py-to-exe package on Python 3.8 or below, you will get an error stating ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full comma
ItsMyCode
[Solved] Error: command errored out with exit status 1 - ItsMyCode
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command occurs because of gevent dependency
PyCoder’s Weekly: Issue #514 (March 1, 2022)
Link: https://pycoders.com/issues/514
#514 – MARCH 1, 2022 View in Browser » Python’s Assert: Debug and Test Your Code Like a Pro Learn how to use Python’s assert statement to document, debug, and test code in development. REAL PYTH
Link: https://pycoders.com/issues/514
#514 – MARCH 1, 2022 View in Browser » Python’s Assert: Debug and Test Your Code Like a Pro Learn how to use Python’s assert statement to document, debug, and test code in development. REAL PYTH
Pycoders
PyCoder’s Weekly | Issue #514
Issue #514 of the PyCoder’s Weekly newsletter, published March 1, 2022.
The Python Coding Blog: What is coding? Beyond the obvious…
Link: https://thepythoncodingbook.com/2022/03/01/what-is-coding/
This week, instead of one of the tutorial-type articles I’ve been publishing recently, I’ll go back to basics with an article aimed at those who are new to coding or those who are interested to know m
Link: https://thepythoncodingbook.com/2022/03/01/what-is-coding/
This week, instead of one of the tutorial-type articles I’ve been publishing recently, I’ll go back to basics with an article aimed at those who are new to coding or those who are interested to know m
The Python Coding Book
What is coding? Beyond the obvious... - The Python Coding Book
What is coding? In this article, I share my vision of what coding really is and how it compares with human-to-human communication