Real Python: The Real Python Podcast – Episode #147: Django Deployment Strategies & Preparing for PyCascades 2023
Link: https://realpython.com/podcasts/rpp/147/
Have you decided how you're going to deploy your Django project? Should you use a VPS or a PaaS? Christopher Trudeau is back this week, bringing another batch of PyCoder's Weekly articles and projects
Link: https://realpython.com/podcasts/rpp/147/
Have you decided how you're going to deploy your Django project? Should you use a VPS or a PaaS? Christopher Trudeau is back this week, bringing another batch of PyCoder's Weekly articles and projects
Realpython
Episode #147: Django Deployment Strategies & Preparing for PyCascades 2023 – The Real Python Podcast
Have you decided how you're going to deploy your Django project? Should you use a VPS or a PaaS? Christopher Trudeau is back this week, bringing another batch of PyCoder's Weekly articles and projects. We also have organizers from PyCascades to share details…
Stack Abuse: Loading a Pretrained Tensorflow Model into TensorFlow Serving
Link: https://stackabuse.com/loading-a-pretrained-tensorflow-model-into-tensorflow-serving/
Introduction
You are part of a project that will use deep learning to try to identify what is in images - such as cars, ducks, mountains, sky, trees, etc.
In this project, two things are important - t
Link: https://stackabuse.com/loading-a-pretrained-tensorflow-model-into-tensorflow-serving/
Introduction
You are part of a project that will use deep learning to try to identify what is in images - such as cars, ducks, mountains, sky, trees, etc.
In this project, two things are important - t
Stack Abuse
Loading a Pretrained TensorFlow Model into TensorFlow Serving
In this guide, learn how to prepare, dockerize and deploy a TensorFlow Model using TensorFlow Serving, as well as how to send POST requests for inference in Python.
EuroPython: EuroPython February 2023 Newsletter
Link: https://blog.europython.eu/europython-march-2023-newsletter/
Dobrý den!It’s March already, the days are flying by and EuroPython in Prague will soon be here! So, what’s been going on? 🐍 EuroPython 2023 Conference Update🇨🇿 PragueSince our last newsletter, where
Link: https://blog.europython.eu/europython-march-2023-newsletter/
Dobrý den!It’s March already, the days are flying by and EuroPython in Prague will soon be here! So, what’s been going on? 🐍 EuroPython 2023 Conference Update🇨🇿 PragueSince our last newsletter, where
EuroPython Blog
EuroPython February 2023 Newsletter
EuroPython 2023 February Newsletter
Talk Python to Me: #405: Testing in Radio Astronomy with Python and pytest
Link: https://talkpython.fm/episodes/show/405/testing-in-radio-astronomy-with-python-and-pytest
So you know about dependencies and testing, right? If you're talking to a DB in your app, you have to decide how to approach that with your tests. There are lots of solid options you might pick and th
Link: https://talkpython.fm/episodes/show/405/testing-in-radio-astronomy-with-python-and-pytest
So you know about dependencies and testing, right? If you're talking to a DB in your app, you have to decide how to approach that with your tests. There are lots of solid options you might pick and th
talkpython.fm
Testing in Radio Astronomy with Python and pytest
So you know about dependencies and testing, right? If you're talking to a DB in your app, you have to decide how to approach that with your tests. There are lots of solid options you might pick and they vary by goals. Do you mock out the DB layer for isolation…
Python for Beginners: Add Column to Pandas DataFrame in Python
Link: https://www.pythonforbeginners.com/basics/add-column-to-pandas-dataframe-in-python
Pandas dataframes are used to handle tabular data in python. Sometimes, we need to create new columns in the dataframe for analysis. This article discusses how to add a column to pandas dataframe in p
Link: https://www.pythonforbeginners.com/basics/add-column-to-pandas-dataframe-in-python
Pandas dataframes are used to handle tabular data in python. Sometimes, we need to create new columns in the dataframe for analysis. This article discusses how to add a column to pandas dataframe in p
PythonForBeginners.com
Add Column to Pandas DataFrame in Python - PythonForBeginners.com
Add Column to Pandas DataFrame in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Go Deh: Function purity and idempotence
Link: http://paddy3118.blogspot.com/2023/03/function-purity-and-idempotence.html
Someone mentioned idempotence at work. I looked it up and noted that it too is a property of functions, like function purity.I decided to see if I could write functions with combinations of those pro
Link: http://paddy3118.blogspot.com/2023/03/function-purity-and-idempotence.html
Someone mentioned idempotence at work. I looked it up and noted that it too is a property of functions, like function purity.I decided to see if I could write functions with combinations of those pro
Blogspot
Function purity and idempotence
Someone mentioned idempotence at work. I looked it up and noted that it too is a property of functions, like function purity . I decided to...
PyBites: Jim Hodapp on coaching software engineers and the power of Rust
Link: https://pybit.es/articles/jim-hodapp-on-coaching-software-engineers-and-the-power-of-rust/
Watch here:
Or listen here:
This week we have Jim Hodapp on our podcast.
We talk about his career journey going from software engineer + manager to full-time developer coach, some of the tactics he
Link: https://pybit.es/articles/jim-hodapp-on-coaching-software-engineers-and-the-power-of-rust/
Watch here:
Or listen here:
This week we have Jim Hodapp on our podcast.
We talk about his career journey going from software engineer + manager to full-time developer coach, some of the tactics he
PyBites
Jim Hodapp On Coaching Software Engineers And The Power Of Rust - PyBites
We talk about his career journey going from software engineer + manager to full-time developer coach, some of the tactics he uses with his clients,
Pythonicity: Decorator overuse
Link: https://coady.github.io/posts/decorator-overuse.html
Decorators versus blocks and partial functions.
Decorators are a beloved feature of Python, but like any good thing can be overused. The key is acknowledging that decorators are just functions.
A fun
Link: https://coady.github.io/posts/decorator-overuse.html
Decorators versus blocks and partial functions.
Decorators are a beloved feature of Python, but like any good thing can be overused. The key is acknowledging that decorators are just functions.
A fun
coady.github.io
Pythonicity - Decorator overuse
Matt Layman: Inventory Management / Custom 404 page / Go gqlgen - Building SaaS #154
Link: https://www.mattlayman.com/blog/2023/inventory-management-custom-404-page-go-gqlgen-building-saas-with-python-and-django-154/
In this episode, I did another Exercism problem in Python which focused on working with dictionaries. Once the exercise was complete, we worked on the homeschool app and created a custom 404 page so t
Link: https://www.mattlayman.com/blog/2023/inventory-management-custom-404-page-go-gqlgen-building-saas-with-python-and-django-154/
In this episode, I did another Exercism problem in Python which focused on working with dictionaries. Once the exercise was complete, we worked on the homeschool app and created a custom 404 page so t
Matt Layman
Inventory Management / Custom 404 page / Go gqlgen - Building SaaS #154
In this episode, I did another Exercism problem in Python which focused on working with dictionaries. Once the exercise was complete, we worked on the homeschool app and created a custom 404 page so that Django would render something beyond a plain page.…
Brian Okken: Test & Code Returns
Link: https://pythontest.com/test-and-code-returns/
Did I get the title right?
I’m not sure. Maybe I should have replaced “returns” with reimagined, revisited, continued, expanded, focused, or something even more descriptive that could help me with dir
Link: https://pythontest.com/test-and-code-returns/
Did I get the title right?
I’m not sure. Maybe I should have replaced “returns” with reimagined, revisited, continued, expanded, focused, or something even more descriptive that could help me with dir
Pythontest
Test & Code Returns
Did I get the title right?
I’m not sure. Maybe I should have replaced “returns” with reimagined, revisited, continued, expanded, focused, or something even more descriptive that could help me with direction as I keep producing more episodes of this thing.…
I’m not sure. Maybe I should have replaced “returns” with reimagined, revisited, continued, expanded, focused, or something even more descriptive that could help me with direction as I keep producing more episodes of this thing.…
Test and Code: 194: Test & Code Returns
Link: https://testandcode.com/194
A brief discussion of why Test & Code has been off the air for a bit, and what to expect in upcoming episodes.Links:Python Testing with pytest, 2nd EditionGetting started with pytest Online CourseSoft
Link: https://testandcode.com/194
A brief discussion of why Test & Code has been off the air for a bit, and what to expect in upcoming episodes.Links:Python Testing with pytest, 2nd EditionGetting started with pytest Online CourseSoft
Test & Code in Python
Test & Code in Python 194: Test & Code Returns
A brief discussion of why Test & Code has been off the air for a bit, and what to expect in upcoming episodes.
Codementor: Make your own Library in C Programming Language
Link: https://www.codementor.io/nimeshneema/make-your-own-library-in-c-programming-language-22lwcuma1w
Fundamentals of C Programming language continued...
Link: https://www.codementor.io/nimeshneema/make-your-own-library-in-c-programming-language-22lwcuma1w
Fundamentals of C Programming language continued...
www.codementor.io
Make your own Library in C Programming Language | Codementor
Fundamentals of C Programming language continued...
Python GUIs: Working With Classes in Python and PyQt
Link: https://www.pythonguis.com/tutorials/python-classes/
Python supports object-oriented programming (OOP) through classes, which allow you to bundle data and behavior in a single entity. Python classes allow you to quickly model concepts by creating repres
Link: https://www.pythonguis.com/tutorials/python-classes/
Python supports object-oriented programming (OOP) through classes, which allow you to bundle data and behavior in a single entity. Python classes allow you to quickly model concepts by creating repres
Python GUIs
Working With Classes in Python and PyQt
Python classes allow you to quickly model concepts by creating representations of real objects that you can use to organize your code. Python supports <a href=
Mike Driscoll: PyDev of the Week: Janos Gabler
Link: https://www.blog.pythonlibrary.org/2023/03/06/pydev-of-the-week-janos-gabler/
This week we welcome Janos Gabler (@JanosGabler) as our PyDev of the Week! Janos is the creator of estimagic, a Python package for nonlinear optimization. You can catch up with Janos on his website or
Link: https://www.blog.pythonlibrary.org/2023/03/06/pydev-of-the-week-janos-gabler/
This week we welcome Janos Gabler (@JanosGabler) as our PyDev of the Week! Janos is the creator of estimagic, a Python package for nonlinear optimization. You can catch up with Janos on his website or
Mouse Vs Python
PyDev of the Week: Janos Gabler - Mouse Vs Python
This week we welcome Janos Gabler (@JanosGabler) as our PyDev of the Week! Janos is the creator of estimagic, a Python package for nonlinear optimization.
Real Python: What's a Python Namespace Package, and What's It For?
Link: https://realpython.com/python-namespace-package/
Python namespace packages are an advanced Python feature. You may have heard them mentioned in relation to the __init__.py file. Specifically, if you don’t include at least an empty __init__.py file i
Link: https://realpython.com/python-namespace-package/
Python namespace packages are an advanced Python feature. You may have heard them mentioned in relation to the __init__.py file. Specifically, if you don’t include at least an empty __init__.py file i
Realpython
What's a Python Namespace Package, and What's It For? – Real Python
In this tutorial, you'll be exploring Python namespace packages: what they are, what they're for, and how you can use them in your package systems. Along the way, you'll create your own set of namespace packages and explore how you might be able to use them…
Python Does What?!: Annotation Inheritance
Link: https://www.pythondoeswhat.com/2023/03/annotation-inheritance.html
Let's talk about annotations. Type annotations in Python are mostly a static declaration to a type-checker like mypy or pyrightabout the expected types. However, they are also a dynamic data struct
Link: https://www.pythondoeswhat.com/2023/03/annotation-inheritance.html
Let's talk about annotations. Type annotations in Python are mostly a static declaration to a type-checker like mypy or pyrightabout the expected types. However, they are also a dynamic data struct
Pythondoeswhat
Annotation Inheritance
Let's talk about annotations . Type annotations in Python are mostly a static declaration to a type-checker like mypy or pyright about ...
Python for Beginners: Pandas Insert Columns into a DataFrame in Python
Link: https://www.pythonforbeginners.com/basics/pandas-insert-columns-into-a-dataframe-in-python
We use a pandas dataframe to store and manipulate tabular data in python. In this article, we will discuss how to insert a new column into the pandas dataframe using the insert() method.
Table of Cont
Link: https://www.pythonforbeginners.com/basics/pandas-insert-columns-into-a-dataframe-in-python
We use a pandas dataframe to store and manipulate tabular data in python. In this article, we will discuss how to insert a new column into the pandas dataframe using the insert() method.
Table of Cont
PythonForBeginners.com
Pandas Insert Columns into a DataFrame in Python - PythonForBeginners.com
Pandas Insert Columns into a DataFrame in Python will help you improve your python skills with easy to follow examples and tutorials.
Stack Abuse: Guide to Tuples in Python
Link: https://stackabuse.com/guide-to-tuples-in-python/
Introduction
Welcome to the world of Python tuples, where parentheses are the key to unlocking the power of data organization and manipulation! As a Python programmer, you might already be familiar wi
Link: https://stackabuse.com/guide-to-tuples-in-python/
Introduction
Welcome to the world of Python tuples, where parentheses are the key to unlocking the power of data organization and manipulation! As a Python programmer, you might already be familiar wi
Stack Abuse
Guide to Tuples in Python
Welcome to the world of Python tuples, where parentheses are the key to unlocking the power of data organization and manipulation! As a Python programmer, you...
Robin Wilson: Travel times, over time
Link: https://blog.rtwilson.com/travel-times-over-time/
A fun analysis I did a while back was using the Google Maps API to look at travel times between certain locations over time. I originally got interested in this because I found that travelling from my
Link: https://blog.rtwilson.com/travel-times-over-time/
A fun analysis I did a while back was using the Google Maps API to look at travel times between certain locations over time. I originally got interested in this because I found that travelling from my
PyCon: PyCon US 2023 Call for Volunteers
Link: https://pycon.blogspot.com/2023/03/pycon-us-2023-call-for-volunteers.html
Looking to make a meaningful contribution to the Python community? Look no further than PyCon US 2023! Whether you're a seasoned Python pro or a newcomer to the community and looking to get involved,
Link: https://pycon.blogspot.com/2023/03/pycon-us-2023-call-for-volunteers.html
Looking to make a meaningful contribution to the Python community? Look no further than PyCon US 2023! Whether you're a seasoned Python pro or a newcomer to the community and looking to get involved,
Blogspot
PyCon US 2023 Call for Volunteers
Looking to make a meaningful contribution to the Python community? Look no further than PyCon US 2023! Whether you're a seasoned Python pro ...
PyBites: Learning to code is a lot like learning a language
Link: https://pybit.es/articles/learning-to-code-is-a-lot-like-learning-a-language/
This content was first sent as part of our friends email list, you can subscribe here to get this type of content early and fresh every week …
Let me tell you the story of how I effectively learned fo
Link: https://pybit.es/articles/learning-to-code-is-a-lot-like-learning-a-language/
This content was first sent as part of our friends email list, you can subscribe here to get this type of content early and fresh every week …
Let me tell you the story of how I effectively learned fo
PyBites
Learning To Code Is A Lot Like Learning A Language - PyBites
Let me tell you the story of how I effectively learned foreign languages (there are a lot of parallels with how I became a developer).