death and gravity: Dataclasses without type annotations
Link: https://death.andgravity.com/dataclasses
The dataclasses standard library module
reduces the boilerplate of writing classes
by generating special methods like __init__ and __repr__.
I've noticed a small (but vocal) minority of people that:
Link: https://death.andgravity.com/dataclasses
The dataclasses standard library module
reduces the boilerplate of writing classes
by generating special methods like __init__ and __repr__.
I've noticed a small (but vocal) minority of people that:
death and gravity
Dataclasses without type annotations
... in which we talk about the many ways of using Python dataclasses without type annotations (or even variable annotations!), and what this says about Python.
Python⇒Speed: The worst so-called "best practice" for Docker
Link: https://pythonspeed.com/articles/security-updates-in-docker/
Somebody is always wrong on the Internet, and bad Docker packaging advice is quite common.
But one particular piece of advice keeps coming up, and it’s dangerous enough to merit its own article.
In a
Link: https://pythonspeed.com/articles/security-updates-in-docker/
Somebody is always wrong on the Internet, and bad Docker packaging advice is quite common.
But one particular piece of advice keeps coming up, and it’s dangerous enough to merit its own article.
In a
Python⇒Speed
The worst so-called “best practice” for Docker
Many people (although fewer than in the past) will tell you not to install security updates in your Docker image. This is terrible advice.
Reuven Lerner: One year of “Python for non-programmers”
Link: https://lerner.co.il/2021/03/23/one-year-of-python-for-non-programmers/
In the spring of last year, as the coronavirus pandemic began, it was pretty clear that this would be the major event of our lives, and that a lot of people were going to be affected in big, terrible
Link: https://lerner.co.il/2021/03/23/one-year-of-python-for-non-programmers/
In the spring of last year, as the coronavirus pandemic began, it was pretty clear that this would be the major event of our lives, and that a lot of people were going to be affected in big, terrible
Reuven Lerner
One year of "Python for non-programmers"
In the spring of last year, as the coronavirus pandemic began, it was pretty clear that this would be the major event of our lives, and that a lot of people were going to be
PyCharm: Python Web Conference. Day 1 Recap
Link: http://feedproxy.google.com/~r/Pycharm/~3/U6X20FMCFMA/
Today was the first Python Web Conference day, the tutorial day, with 5 simultaneous presentations. Thanks to the event platform (Loudswarm) and the organizers, we are able to watch recordings almost
Link: http://feedproxy.google.com/~r/Pycharm/~3/U6X20FMCFMA/
Today was the first Python Web Conference day, the tutorial day, with 5 simultaneous presentations. Thanks to the event platform (Loudswarm) and the organizers, we are able to watch recordings almost
JetBrains Blog
Python Web Conference. Day 1 Recap | The PyCharm Blog
Today was the first Python Web Conference day, the tutorial day, with 5 simultaneous presentations. Thanks to the event platform (Loudswarm) and the organizers, we are able to watch recordings almost
PyCoder’s Weekly: Issue #465 (March 23, 2021)
Link: https://pycoders.com/issues/465
#465 – MARCH 23, 2021 View in Browser » Python Testing Style Guide Need a quick yet thorough guide to testing? This excellent resource is for you. STARGIRL FLOWERS A 5-Point Framework For Pyt
Link: https://pycoders.com/issues/465
#465 – MARCH 23, 2021 View in Browser » Python Testing Style Guide Need a quick yet thorough guide to testing? This excellent resource is for you. STARGIRL FLOWERS A 5-Point Framework For Pyt
Pycoders
PyCoder’s Weekly | Issue #465
Issue #465 of the PyCoder’s Weekly newsletter, published March 23, 2021.
TestDriven.io: Effectively Using Django REST Framework Serializers
Link: https://testdriven.io/blog/drf-serializers/
This article looks at how to use Django REST Framework (DRF) serializers more efficiently and effectively.
Link: https://testdriven.io/blog/drf-serializers/
This article looks at how to use Django REST Framework (DRF) serializers more efficiently and effectively.
testdriven.io
Effectively Using Django REST Framework Serializers
This article looks at how to use Django REST Framework (DRF) serializers more efficiently and effectively.
Stack Abuse: Parse Datetime Strings with parsedatetime in Python
Link: https://stackabuse.com/parse-datetime-strings-with-parsedatetime-in-python/
Introduction
In this tutorial, we'll take a look at how to parse Datetime with parsedatetime in Python.
To use the parsedatetime package we first need to install it using pip:
$ pip install parsedatet
Link: https://stackabuse.com/parse-datetime-strings-with-parsedatetime-in-python/
Introduction
In this tutorial, we'll take a look at how to parse Datetime with parsedatetime in Python.
To use the parsedatetime package we first need to install it using pip:
$ pip install parsedatet
Stack Abuse
Parse Datetime Strings with parsedatetime in Python
Introduction
In this tutorial, we'll take a look at how to parse Datetime with parsedatetime
in Python.
To use the parsedatetime package we first need to install it using pip:
$ pip install parsedatetime
Should pip install parsedatetime fail, the package…
In this tutorial, we'll take a look at how to parse Datetime with parsedatetime
in Python.
To use the parsedatetime package we first need to install it using pip:
$ pip install parsedatetime
Should pip install parsedatetime fail, the package…
Real Python: Python Community Interview With Dane Hillard
Link: https://realpython.com/interview-dane-hillard/
Today I’m joined by Dane Hillard, lead web application developer at ITHAKA and author of Practices of the Python Pro. Dane is also a Real Python tutorial author.
In this interview, we discuss a variet
Link: https://realpython.com/interview-dane-hillard/
Today I’m joined by Dane Hillard, lead web application developer at ITHAKA and author of Practices of the Python Pro. Dane is also a Real Python tutorial author.
In this interview, we discuss a variet
Realpython
Python Community Interview With Dane Hillard – Real Python
Dane Hillard is a Real Python contributor and author of the book Practices of the Python Pro. In this interview, we discuss a variety of topics, including code complexity, Python package maintenance, and popcorn.
PyCharm: Python Web Conference. Day 2 Recap
Link: http://feedproxy.google.com/~r/Pycharm/~3/u_l1gCRzLEk/
That was a lot of content! And networking!
The PyData track provided a nice example of a live coding session about Data Lakes and Streams from Justin Garrison, as well as a fascinating talk on Deplo
Link: http://feedproxy.google.com/~r/Pycharm/~3/u_l1gCRzLEk/
That was a lot of content! And networking!
The PyData track provided a nice example of a live coding session about Data Lakes and Streams from Justin Garrison, as well as a fascinating talk on Deplo
JetBrains Blog
Python Web Conference. Day 2 Recap | The PyCharm Blog
That was a lot of content! And networking!
The PyData track provided a nice example of a live coding session about Data Lakes and Streams from Justin Garrison, as well as a fascinating talk on Deplo
The PyData track provided a nice example of a live coding session about Data Lakes and Streams from Justin Garrison, as well as a fascinating talk on Deplo
Python for Beginners: When to Use try/catch Instead of if/else
Link: https://www.pythonforbeginners.com/control-flow-2/when-to-use-try-catch-instead-of-if-else
While programming, we have to deal with many constraints which are imposed on variables so that program can be executed in proper way. To enforce the constraints on the variables, we use if else bloc
Link: https://www.pythonforbeginners.com/control-flow-2/when-to-use-try-catch-instead-of-if-else
While programming, we have to deal with many constraints which are imposed on variables so that program can be executed in proper way. To enforce the constraints on the variables, we use if else bloc
PythonForBeginners.com
When to Use try/catch Instead of if/else - PythonForBeginners.com
When to Use try/catch Instead of if/else will help you improve your python skills with easy to follow examples and tutorials.Read more to understand.
Codementor: How to build Linkolearn.com - Part 4: CSS & Base Template
Link: https://www.codementor.io/abdurrahmaanj/how-to-build-linkolearn-com-part-4-css-base-template-1galf9drv4
In this part we are going to create a base template and set up the basic front page. Repo linkolearn04 (https://github.com/linkolearn/linkolearn04): Download, create venv, activate, install Shopyo...
Link: https://www.codementor.io/abdurrahmaanj/how-to-build-linkolearn-com-part-4-css-base-template-1galf9drv4
In this part we are going to create a base template and set up the basic front page. Repo linkolearn04 (https://github.com/linkolearn/linkolearn04): Download, create venv, activate, install Shopyo...
www.codementor.io
How to build Linkolearn.com - Part 4: CSS & Base Template | Codementor
In this part we are going to create a base template and set up the basic front page. Repo linkolearn04 (https://github.com/linkolearn/linkolearn04): Download, create venv, activate, install Shopyo...
Python Pool: 5 Techniques to Use List pop() Method in Python
Link: https://www.pythonpool.com/python-list-pop/?utm_source=rss&utm_medium=rss&utm_campaign=python-list-pop
Introduction
In Python, we have lists, which are used to store items of different data types in an ordered sequence. There are many ways to delete an element from the list such as pop, remove, etc. In
Link: https://www.pythonpool.com/python-list-pop/?utm_source=rss&utm_medium=rss&utm_campaign=python-list-pop
Introduction
In Python, we have lists, which are used to store items of different data types in an ordered sequence. There are many ways to delete an element from the list such as pop, remove, etc. In
Python Pool
5 Techniques to Use List pop() Method in Python - Python Pool
List pop() is the inbuilt function in python through which we can pop out the last element from the list if no parameter is passed
Python Bytes: #226 Teaching Python podcast on the podcast!
Link: https://pythonbytes.fm/episodes/show/226/teaching-python-podcast-on-the-podcast
<p>Special guests: </p>
<ul>
<li><a href="https://twitter.com/kellypared"><strong>Kelly Schuster-Pared</strong></a><a href="https://twitter.com/kellypared"><strong>es</strong></a></li>
<li><a href="h
Link: https://pythonbytes.fm/episodes/show/226/teaching-python-podcast-on-the-podcast
<p>Special guests: </p>
<ul>
<li><a href="https://twitter.com/kellypared"><strong>Kelly Schuster-Pared</strong></a><a href="https://twitter.com/kellypared"><strong>es</strong></a></li>
<li><a href="h
pythonbytes.fm
Teaching Python podcast on the podcast!
News and announcements from the Python community for the week of Mar 25th, 2021
Python Pool: 5 Techniques to Use List pop() Method in Python
Link: https://www.pythonpool.com/python-list-pop/?utm_source=rss&utm_medium=rss&utm_campaign=python-list-pop
Introduction
In Python, we have lists, which are used to store items of different data types in an ordered sequence. There are many ways to delete an element from the list such as pop, remove, etc. In
Link: https://www.pythonpool.com/python-list-pop/?utm_source=rss&utm_medium=rss&utm_campaign=python-list-pop
Introduction
In Python, we have lists, which are used to store items of different data types in an ordered sequence. There are many ways to delete an element from the list such as pop, remove, etc. In
Python Pool
5 Techniques to Use List pop() Method in Python - Python Pool
List pop() is the inbuilt function in python through which we can pop out the last element from the list if no parameter is passed
The Digital Cat: How to write a Pelican theme for your static website
Link: https://www.thedigitalcatonline.com/blog/2021/03/25/how-to-write-a-pelican-theme-for-your-static-website/
I run The Digital Cat using a static site generator called Pelican, created by my friend Justin Mayer and actively maintained by him and other developers. I also gave some minor contributions to the p
Link: https://www.thedigitalcatonline.com/blog/2021/03/25/how-to-write-a-pelican-theme-for-your-static-website/
I run The Digital Cat using a static site generator called Pelican, created by my friend Justin Mayer and actively maintained by him and other developers. I also gave some minor contributions to the p
Thedigitalcatonline
How to write a Pelican theme for your static website
A full-fledged tutorial that shows how to convert an HTML template into a Pelican theme
EuroPython: 20th Anniversary of EuroPython
Link: https://blog.europython.eu/20th-anniversary-of-europython/
This year's conference will mark the 20th edition of the EuroPython conference.Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the
Link: https://blog.europython.eu/20th-anniversary-of-europython/
This year's conference will mark the 20th edition of the EuroPython conference.Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the
EuroPython Blog
20th Anniversary of EuroPython
This year's conference will mark the 20th edition of the EuroPython conference. Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the initial 240 to around 1200-1400 attendees every year.…
EuroPython Society: 20th Anniversary of EuroPython
Link: https://www.europython-society.org/20th-anniversary-of-europython/
This year's conference will mark the 20th edition of the EuroPython conference:Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the
Link: https://www.europython-society.org/20th-anniversary-of-europython/
This year's conference will mark the 20th edition of the EuroPython conference:Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the
EuroPython Society
20th Anniversary of EuroPython
This year's conference will mark the 20th edition of the EuroPython conference: Since we started touring Europe in 2002 in Charleroi, Belgium, we have come a long way. The conference has grown from the initial 240 to around 1200-1400 attendees every year.…
Kushal Das: The correct spelling is Tor
Link: https://kushaldas.in/posts/the-correct-spelling-is-tor.html
The correct spelling is Tor, not TOR or any other variations.
Please use the correct spelling of the project.
Link: https://kushaldas.in/posts/the-correct-spelling-is-tor.html
The correct spelling is Tor, not TOR or any other variations.
Please use the correct spelling of the project.
Paolo Melchiorre: Python Web Conf 2021
Link: https://www.paulox.net/2021/03/25/python-web-conf-2021/
The Python Web Conf is the most in-depth Python conference for web developers
Link: https://www.paulox.net/2021/03/25/python-web-conf-2021/
The Python Web Conf is the most in-depth Python conference for web developers
Paolo Melchiorre
Paolo Melchiorre - Python Web Conf 2021
The Python Web Conf is the most in-depth Python conference for web developers.
Ben Cook: SageMaker Studio Quick Start
Link: https://jbencook.com/sagemaker-studio-quick-start/
A step-by-step quick start guide for SageMaker Studio. Start a Studio session, launch a notebook on a GPU instance and run object detection inference with a detectron2 pre-trained model.
Link: https://jbencook.com/sagemaker-studio-quick-start/
A step-by-step quick start guide for SageMaker Studio. Start a Studio session, launch a notebook on a GPU instance and run object detection inference with a detectron2 pre-trained model.
jbencook
SageMaker Studio Quick Start - jbencook
A step-by-step quick start guide for SageMaker Studio. Start a Studio session, launch a notebook on a GPU instance and run object detection inference with a detectron2 pre-trained model.