Django Weblog: 2022 DSF Board Nominations
Link: https://www.djangoproject.com/weblog/2021/nov/16/2022-dsf-board-nominations/
It is that time again to begin to elect next year’s Django Software Foundation’s Board of Directors!
As you know, the Board guides the direction of the marketing, governance, and outreach activities o
Link: https://www.djangoproject.com/weblog/2021/nov/16/2022-dsf-board-nominations/
It is that time again to begin to elect next year’s Django Software Foundation’s Board of Directors!
As you know, the Board guides the direction of the marketing, governance, and outreach activities o
ItsMyCode: UnicodeDecodeError: ‘utf8’ codec can’t decode byte 0xa5 in position 0: invalid start byte
Link: https://itsmycode.com/unicodedecodeerror-utf8-codec-cant-decode-byte-0xa5-in-position-0-invalid-start-byte/
ItsMyCode |
The UnicodeDecodeError occurs mainly while importing and reading the csv or json files in your Python code. If the provided file has some special characters, Python will throw an UnicodeDe
Link: https://itsmycode.com/unicodedecodeerror-utf8-codec-cant-decode-byte-0xa5-in-position-0-invalid-start-byte/
ItsMyCode |
The UnicodeDecodeError occurs mainly while importing and reading the csv or json files in your Python code. If the provided file has some special characters, Python will throw an UnicodeDe
ItsMyCode
UnicodeDecodeError: 'utf8' codec can't decode byte 0xa5 in position 0: invalid start byte - ItsMyCode
Python will throw an UnicodeDecodeError: ‘utf8’ codec can’t decode byte 0xa5 in position 0: invalid start byte if you decode non-ascii characters
Quansight Labs Blog: A vision for extensibility to GPU & distributed support for SciPy, scikit-learn, scikit-image and beyond
Link: https://labs.quansight.org/blog/2021/11/pydata-extensibility-vision/
Over the years, array computing in Python has evolved to support distributed
arrays, GPU arrays, and other various kinds of arrays that work with specialized
hardware, or carry additional metadata, o
Link: https://labs.quansight.org/blog/2021/11/pydata-extensibility-vision/
Over the years, array computing in Python has evolved to support distributed
arrays, GPU arrays, and other various kinds of arrays that work with specialized
hardware, or carry additional metadata, o
Quansight Labs
A vision for extensibility to GPU & distributed support for SciPy, sci
Over the years, array computing in Python has evolved to support distributed
arrays, GPU arrays, and other various kinds of arrays that work with specialized
hardware, or carry additional metadata, or
arrays, GPU arrays, and other various kinds of arrays that work with specialized
hardware, or carry additional metadata, or
Stack Abuse: Keras Callbacks: Save and Visualize Prediction on Each Training Epoch
Link: https://stackabuse.com/custom-keras-callback-for-saving-prediction-on-each-epoch-with-visualizations/
Introduction
Keras is a high-level API, typically used with the Tensorflow library, and has lowered the barrier to entry for many and democratized the creation of Deep Learning models and systems.
Whe
Link: https://stackabuse.com/custom-keras-callback-for-saving-prediction-on-each-epoch-with-visualizations/
Introduction
Keras is a high-level API, typically used with the Tensorflow library, and has lowered the barrier to entry for many and democratized the creation of Deep Learning models and systems.
Whe
Stack Abuse
Keras Callbacks: Save and Visualize Prediction on Each Training Epoch
In this guide, learn how to save the prediction of your deep learning models during training, on each epoch, with a custom Keras Callback in Python, and visualize/animate the predictions.
Python⇒Speed: Speed up your Conda installs with Mamba
Link: https://pythonspeed.com/articles/faster-conda-install/
Conda installs can be very very very slow.
Every time you run conda install:
It has to collect the package metadata.
It has to solve the environment.
… maybe you can take a coffee break here, or go w
Link: https://pythonspeed.com/articles/faster-conda-install/
Conda installs can be very very very slow.
Every time you run conda install:
It has to collect the package metadata.
It has to solve the environment.
… maybe you can take a coffee break here, or go w
Python⇒Speed
Speed up your Conda installs with Mamba
Conda installs are very slow, but you can speed them with a much-faster Conda reimplementation called Mamba.
eGenix.com: PyDDF Python Herbst Sprint 2021 (Online)
Link: https://www.egenix.com/company/news/PyDDF-Herbst-Sprint-2021
The following text is in German, since we're announcing a Python sprint in Düsseldorf, Germany.
Ankündigung
PyDDF Python Herbst Online Sprint 2021
Samstag, 20.11.2021, 10:00-18:00 Uhr
Sonntag, 21.1
Link: https://www.egenix.com/company/news/PyDDF-Herbst-Sprint-2021
The following text is in German, since we're announcing a Python sprint in Düsseldorf, Germany.
Ankündigung
PyDDF Python Herbst Online Sprint 2021
Samstag, 20.11.2021, 10:00-18:00 Uhr
Sonntag, 21.1
eGenix.com
eGenix.com: PyDDF Python Herbst Sprint 2021 (Online)
The Python Meeting Düsseldorf team is organizing a Python sprint on November 20./21. in Düsseldorf, Germany.
Real Python: Python News: What's New From October 2021?
Link: https://realpython.com/python-news-october-2021/
A culmination of great work done by volunteers worldwide, the release of Python 3.10 dominated the Python community’s news cycle in October 2021. At the same time that this release was making new feat
Link: https://realpython.com/python-news-october-2021/
A culmination of great work done by volunteers worldwide, the release of Python 3.10 dominated the Python community’s news cycle in October 2021. At the same time that this release was making new feat
Realpython
Python News: What's New From October 2021 – Real Python
The Python community gave a warm welcome to Python 3.10 in October 2021. In this article, you'll catch up on some big events that happened this past month, including Python being named TIOBE's most popular programming language.
Python for Beginners: Dataclass in Python
Link: https://www.pythonforbeginners.com/basics/dataclass-in-python
While programming in python, you might have used classes to create different objects. Classes in python are very helpful in depicting real world objects in our programs. In this article, we will discu
Link: https://www.pythonforbeginners.com/basics/dataclass-in-python
While programming in python, you might have used classes to create different objects. Classes in python are very helpful in depicting real world objects in our programs. In this article, we will discu
PythonForBeginners.com
Dataclass in Python - PythonForBeginners.com
Dataclass in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Trey Hunner: How to sort a dictionary in Python
Link: https://treyhunner.com/2021/11/how-to-sort-a-dictionary-in-python/
Dictionaries are best used for key-value lookups: we provide a key and the dictionary very quickly returns the corresponding value.
But what if you need both key-value lookups and iteration?
It is pos
Link: https://treyhunner.com/2021/11/how-to-sort-a-dictionary-in-python/
Dictionaries are best used for key-value lookups: we provide a key and the dictionary very quickly returns the corresponding value.
But what if you need both key-value lookups and iteration?
It is pos
Treyhunner
How to sort a dictionary in Python
Dictionaries are best used for key-value lookups: we provide a key and the dictionary very quickly returns the corresponding value. But what if you …
Talk Python to Me: #341: 25 Pandas Functions You Didn’t Know Existed
Link: https://talkpython.fm/episodes/show/341/25-pandas-functions-you-didn-t-know-existed
Do you do anything with Jupyter notebooks? If you do, there is a very good chance you're working with the pandas library. This is one of THE primary tools of anyone doing computational work or data ex
Link: https://talkpython.fm/episodes/show/341/25-pandas-functions-you-didn-t-know-existed
Do you do anything with Jupyter notebooks? If you do, there is a very good chance you're working with the pandas library. This is one of THE primary tools of anyone doing computational work or data ex
talkpython.fm
25 Pandas Functions You Didn’t Know Existed
Do you do anything with Jupyter notebooks? If you do, there is a very good chance you're working with the pandas library. This is one of THE primary tools of anyone doing computational work or data exploration with Python. Yet, this library is massive and…
Python Bytes: #259 That argument is a little late-bound
Link: https://pythonbytes.fm/episodes/show/259/that-argument-is-a-little-late-bound
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=IB4RBvz8sXU' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/259/that-argument-is-a-little-late-bound
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=IB4RBvz8sXU' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
That argument is a little late-bound
News and announcements from the Python community for the week of Nov 17th, 2021
Codementor: How to Send MMS in Python Using Plivo's Messaging API
Link: https://www.codementor.io/plivocommunity/how-to-send-mms-in-python-using-plivo-s-messaging-api-1nrv5nll4y
How to Send MMS in Python Using Plivo's Messaging API
Link: https://www.codementor.io/plivocommunity/how-to-send-mms-in-python-using-plivo-s-messaging-api-1nrv5nll4y
How to Send MMS in Python Using Plivo's Messaging API
www.codementor.io
How to Send MMS in Python Using Plivo's Messaging API | Codementor
Test and Code: 170: pytest for Data Science and Machine Learning - Prayson Daniel
Link: https://testandcode.com/170
Prayson Daniel, a principle data scientist, discusses testing machine learning pipelines with pytest.
Prayson is using pytest for some pretty cool stuff, including:
unit tests, of course
testing pipe
Link: https://testandcode.com/170
Prayson Daniel, a principle data scientist, discusses testing machine learning pipelines with pytest.
Prayson is using pytest for some pretty cool stuff, including:
unit tests, of course
testing pipe
Test & Code in Python
Test & Code in Python 170: pytest for Data Science and Machine Learning - Prayson Daniel
Prayson Daniel, a principle data scientist, discusses testing machine learning pipelines with pytest
PyCharm: PyCharm 2021.3 Release Candidate Is Out
Link: https://blog.jetbrains.com/pycharm/2021/11/2021-3-rc/
PyCharm’s 2021.3 major release is right around the corner, and now the PyCharm team is fine-tuning the new features and fixing important bugs.
As we approach the end of our EAP – Early Access Program,
Link: https://blog.jetbrains.com/pycharm/2021/11/2021-3-rc/
PyCharm’s 2021.3 major release is right around the corner, and now the PyCharm team is fine-tuning the new features and fixing important bugs.
As we approach the end of our EAP – Early Access Program,
JetBrains Blog
PyCharm 2021.3 Release Candidate Is Out | The PyCharm Blog
PyCharm’s 2021.3 major release is right around the corner, and now the PyCharm team is fine-tuning the new features and fixing important bugs.
As we approach the end of our EAP - Early Access Program
As we approach the end of our EAP - Early Access Program
Evennia: The Evennia blog has moved to evennia.com!
Link: http://evennia.blogspot.com/2021/11/the-evennia-blog-has-moved-to-evenniacom.html
This dev blog has moved! All past and future posts will now be found here instead on evennia.com. The linked post discusses the move in more detail, including the little custom blog platform I wrote f
Link: http://evennia.blogspot.com/2021/11/the-evennia-blog-has-moved-to-evenniacom.html
This dev blog has moved! All past and future posts will now be found here instead on evennia.com. The linked post discusses the move in more detail, including the little custom blog platform I wrote f
Blogspot
The Evennia blog has moved to evennia.com!
This dev blog has moved! All past and future posts will now be found here instead on evennia.com. The linked post discusses the move in mor...
"Mathspp Pydon'ts": String formatting comparison | Pydon't 🐍
Link: https://mathspp.com/blog/pydonts/string-formatting-comparison
This article compares the three main string formatting methods in Python and suggests which methods to use in each situation.
(If you are new here and have no idea what a Pydon't is, you may want to
Link: https://mathspp.com/blog/pydonts/string-formatting-comparison
This article compares the three main string formatting methods in Python and suggests which methods to use in each situation.
(If you are new here and have no idea what a Pydon't is, you may want to
Mathspp
String formatting comparison | Pydon't 🐍
This article compares the three main string formatting methods in Python and suggests which methods to use in each situation.
Real Python: The Real Python Podcast – Episode #87: Building a Content Aggregator and Working With RSS in Python
Link: https://realpython.com/podcasts/rpp/87/
Have you wanted to work with RSS feeds in Python? Maybe you're looking for a new project to build for your portfolio that uses Django, unit tests, and custom commands. This week on the show, we have R
Link: https://realpython.com/podcasts/rpp/87/
Have you wanted to work with RSS feeds in Python? Maybe you're looking for a new project to build for your portfolio that uses Django, unit tests, and custom commands. This week on the show, we have R
Realpython
Episode #87: Building a Content Aggregator and Working With RSS in Python – The Real Python Podcast
Have you wanted to work with RSS feeds in Python? Maybe you're looking for a new project to build for your portfolio that uses Django, unit tests, and custom commands. This week on the show, we have Real Python author Ricky White to talk about his recent…
Lucas Cimon: Hacktoberfest on fpdf2 & v2.4.6
Link: https://chezsoi.org/lucas/blog/hacktoberfest-on-fpdf2.html
Last month, I realized late that October was hacktoberfest month!
This online event is a month-long celebration (October 1-31) of open source software run in partnership with different software comp
Link: https://chezsoi.org/lucas/blog/hacktoberfest-on-fpdf2.html
Last month, I realized late that October was hacktoberfest month!
This online event is a month-long celebration (October 1-31) of open source software run in partnership with different software comp
Ludochaordic
Hacktoberfest on fpdf2 & v2.4.6
Last month, I realized late that October was hacktoberfest month! This online event is a month-long celebration (October 1-31) of open source software run in partnership with different software companies, with a focus on encouraging contributions to open…
Python for Beginners: Graph in Python
Link: https://www.pythonforbeginners.com/data-structures/graph-in-python
Graphs are one of the most important data structures. Graphs are used to represent telephone networks, maps, social network connections, etc. In this article we will discuss what a graph is and how we
Link: https://www.pythonforbeginners.com/data-structures/graph-in-python
Graphs are one of the most important data structures. Graphs are used to represent telephone networks, maps, social network connections, etc. In this article we will discuss what a graph is and how we
PythonForBeginners.com
Graph in Python - PythonForBeginners.com
Graph in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
ItsMyCode: ValueError: too many values to unpack (expected 2)
Link: https://itsmycode.com/valueerror-too-many-values-to-unpack-expected-2/
ItsMyCode |
If you get ValueError: too many values to unpack (expected 2), it means that you are trying to access too many values from an iterator. Value Error is a standard exception that can occur i
Link: https://itsmycode.com/valueerror-too-many-values-to-unpack-expected-2/
ItsMyCode |
If you get ValueError: too many values to unpack (expected 2), it means that you are trying to access too many values from an iterator. Value Error is a standard exception that can occur i
ItsMyCode
ValueError: too many values to unpack (expected 2) - ItsMyCode
If you get ValueError: too many values to unpack (expected 2), it means that you are trying to access too many values from an iterator.