Python Software Foundation: The 2021 Python Language Summit: What Should I Work on as a Core Dev?
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/ntiuibWUuVc/the-2021-python-language-summit-what.html
At the 2021 Python Language Summit, Eric Snow gave a presentation about how core developers can receive guidance to help them work on improvements to the language that will bring the most benefit to t
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/ntiuibWUuVc/the-2021-python-language-summit-what.html
At the 2021 Python Language Summit, Eric Snow gave a presentation about how core developers can receive guidance to help them work on improvements to the language that will bring the most benefit to t
Blogspot
The 2021 Python Language Summit: What Should I Work on as a Core Dev?
At the 2021 Python Language Summit , Eric Snow gave a presentation about how core developers can receive guidance to help them work on impr...
Python Software Foundation: The 2021 Python Language Summit
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/_-8J6H4Mr-o/the-2021-python-language-summit.html
Every year, a small group of core developers from Python implementations such as CPython, PyPy, Jython, and more come together to share information, discuss problems, and seek consensus in order to he
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/_-8J6H4Mr-o/the-2021-python-language-summit.html
Every year, a small group of core developers from Python implementations such as CPython, PyPy, Jython, and more come together to share information, discuss problems, and seek consensus in order to he
Blogspot
The 2021 Python Language Summit
Every year, a small group of core developers from Python implementations such as CPython, PyPy, Jython, and more come together to share info...
Lucas Cimon: Live demo for Hesperides!
Link: https://chezsoi.org/lucas/blog/live-demo-for-hesperides.html
Today I finally took the time to put up a live demo website for Hesperides!
https://hesperides.herokuapp.com
Hesperides is an open source tool dedicated to configuration management:
it stores applica
Link: https://chezsoi.org/lucas/blog/live-demo-for-hesperides.html
Today I finally took the time to put up a live demo website for Hesperides!
https://hesperides.herokuapp.com
Hesperides is an open source tool dedicated to configuration management:
it stores applica
Ludochaordic
Live demo for hesperides!
Today I finally took the time to put up a live demo website for Hesperides! https://hesperides.herokuapp.com Hesperides is an open source tool dedicated to configuration management: it stores applications properties and mustache templates for configurations…
"Morphex's Blogologue": A python script to calculate placement of poles for a roof
Link: http://blogologue.com/blog_entry?id=1623597272X77
I've been working on the cabin, lately clearing out a tree behind the cabin that was a threat to the roof.Some blog posts about some of the work on the cabin here: http://blogologue.com/search?categor
Link: http://blogologue.com/blog_entry?id=1623597272X77
I've been working on the cabin, lately clearing out a tree behind the cabin that was a threat to the roof.Some blog posts about some of the work on the cabin here: http://blogologue.com/search?categor
Matthew Wright: Indexing time series data in pandas
Link: https://www.wrighters.io/indexing-time-series-data-in-pandas/
Indexing time series data in pandas is similar to other types, but there are a number of convenient functions unique to time series.The post Indexing time series data in pandas appeared first on wrigh
Link: https://www.wrighters.io/indexing-time-series-data-in-pandas/
Indexing time series data in pandas is similar to other types, but there are a number of convenient functions unique to time series.The post Indexing time series data in pandas appeared first on wrigh
wrighters.io
Indexing time series data in pandas - wrighters.io
Indexing time series data in pandas is similar to indexing with other types, but with a number of convenient functions unique to time series.
Mike Driscoll: PyDev of the Week: Raghav Bali
Link: https://www.blog.pythonlibrary.org/2021/06/14/pydev-of-the-week-raghav-bali/
This week we welcome Raghav Bali (@Rghv_Bali) as our PyDev of the Week. Raghav is the co-author of Generative AI with Python and TensorFlow 2, a book that teaches you how to create images, text, and m
Link: https://www.blog.pythonlibrary.org/2021/06/14/pydev-of-the-week-raghav-bali/
This week we welcome Raghav Bali (@Rghv_Bali) as our PyDev of the Week. Raghav is the co-author of Generative AI with Python and TensorFlow 2, a book that teaches you how to create images, text, and m
Mouse Vs Python
PyDev of the Week: Raghav Bali - Mouse Vs Python
Gain practical, real-world Python skills with our resources and pathway
Real Python: Python Practice Problems: Parsing CSV Files
Link: https://realpython.com/python-interview-problem-parsing-csv-files/
Are you a developer looking for some practice with comma-separated values (CSV) files before an upcoming interview? This tutorial will lead you through a series of Python CSV practice problems to help
Link: https://realpython.com/python-interview-problem-parsing-csv-files/
Are you a developer looking for some practice with comma-separated values (CSV) files before an upcoming interview? This tutorial will lead you through a series of Python CSV practice problems to help
Realpython
Python Practice Problems: Parsing CSV Files – Real Python
In this tutorial, you'll prepare for future interviews by working through a set of Python practice problems that involve CSV files. You'll work through the problems yourself and then compare your results with solutions developed by the Real Python team.
Python Morsels: How to make a decorator
Link: https://www.pythonmorsels.com/topics/make-decorator/
Transcript
Let's make a decorator.
We're going to make a function decorator: that is a decorator meant for decorating a function (not for decorating a class).
What the decorator syntax does
We have
Link: https://www.pythonmorsels.com/topics/make-decorator/
Transcript
Let's make a decorator.
We're going to make a function decorator: that is a decorator meant for decorating a function (not for decorating a class).
What the decorator syntax does
We have
Pythonmorsels
How to make a decorator
A decorator is a function that accepts a function and returns a function. That's true for function decorators at least.
Tryton News: Tryton's IRC channels are moving to libera.chat
Link: https://discuss.tryton.org/t/trytons-irc-channels-are-moving-to-libera-chat/4322
In what looks like a never ending saga the freenode admins have decided to switch to a new IRC daemon thus effectively removing all the registered nicknames and channels. This move has effectively rem
Link: https://discuss.tryton.org/t/trytons-irc-channels-are-moving-to-libera-chat/4322
In what looks like a never ending saga the freenode admins have decided to switch to a new IRC daemon thus effectively removing all the registered nicknames and channels. This move has effectively rem
Tryton Discussion
Tryton's IRC channels are moving to libera.chat
In what looks like a never ending saga the freenode admins have decided to switch to a new IRC daemon thus effectively removing all the registered nicknames and channels. This move has effectively removed all the remaining reasons that were left to stay on…
Stack Abuse: Counting Sort in Python
Link: https://stackabuse.com/counting-sort-in-python
Introduction
Counting sort is a sorting algorithm used to sort elements of an array in linear time. We usually use Counting Sort to sort integer arrays.
Counting Sort a stable, non-comparative algori
Link: https://stackabuse.com/counting-sort-in-python
Introduction
Counting sort is a sorting algorithm used to sort elements of an array in linear time. We usually use Counting Sort to sort integer arrays.
Counting Sort a stable, non-comparative algori
Stack Abuse
Counting Sort in Python
In this guide, we'll take a look at the theory behind Counting Sort and implement it in Python, as well as analyze its time and space complexity.
Python for Beginners: The Fastest Way to Split a Text File Using Python
Link: https://www.pythonforbeginners.com/files/the-fastest-way-to-split-a-text-file-using-python
Python is one of the most popular programming languages in the world. One reason for its popularity is that Python makes it easy to work with data.Reading data from a text file is a routine task in P
Link: https://www.pythonforbeginners.com/files/the-fastest-way-to-split-a-text-file-using-python
Python is one of the most popular programming languages in the world. One reason for its popularity is that Python makes it easy to work with data.Reading data from a text file is a routine task in P
PythonForBeginners.com
The Fastest Way to Split a Text File Using Python - PythonForBeginners.com
The Fastest Way to Split a Text File Using Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: Using Pandas to Make a Gradebook in Python
Link: https://realpython.com/courses/gradebook-using-pandas-python/
One of the jobs that all teachers have in common is evaluating students. Whether you use exams, homework assignments, quizzes, or projects, you usually have to turn students’ scores into a letter grad
Link: https://realpython.com/courses/gradebook-using-pandas-python/
One of the jobs that all teachers have in common is evaluating students. Whether you use exams, homework assignments, quizzes, or projects, you usually have to turn students’ scores into a letter grad
Realpython
Using pandas to Make a Gradebook in Python – Real Python
With this course and Python project, you'll build a script to calculate grades for a class using pandas. The script will quickly and accurately calculate grades from a variety of data sources. You'll see examples of loading, merging, and saving data with…
Robin Wilson: Py6S v1.9.0 released – plus code cleanup and how I got M1 support for the underlying 6S model
Link: http://blog.rtwilson.com/py6s-v1-9-0-released-plus-code-cleanup-and-how-i-got-m1-support-for-the-underlying-6s-model/
Last week I released version 1.9.0 of Py6S – my Python interface to the 6S radiative transfer model.
It’s been the first non-bugfix release for quite a while (mainly because I’ve been busy with paid w
Link: http://blog.rtwilson.com/py6s-v1-9-0-released-plus-code-cleanup-and-how-i-got-m1-support-for-the-underlying-6s-model/
Last week I released version 1.9.0 of Py6S – my Python interface to the 6S radiative transfer model.
It’s been the first non-bugfix release for quite a while (mainly because I’ve been busy with paid w
Python Engineering at Microsoft: Jupyter in Visual Studio Code – June 2021 Release
Link: https://devblogs.microsoft.com/python/jupyter-in-visual-studio-code-june-2021-release/
We are pleased to announce that the June 2021 release of the Jupyter Extension for Visual Studio Code is now available. If you are working with Python, we recommend downloading the Python extension fr
Link: https://devblogs.microsoft.com/python/jupyter-in-visual-studio-code-june-2021-release/
We are pleased to announce that the June 2021 release of the Jupyter Extension for Visual Studio Code is now available. If you are working with Python, we recommend downloading the Python extension fr
PyCoder’s Weekly: Issue #477 (June 15, 2021)
Link: https://pycoders.com/issues/477
#477 – JUNE 15, 2021 View in Browser » Excel, Python, and the Future of Data Science What’s the most widely used tool in data science? Is it pandas or NumPy? Is it the Python language itself? No
Link: https://pycoders.com/issues/477
#477 – JUNE 15, 2021 View in Browser » Excel, Python, and the Future of Data Science What’s the most widely used tool in data science? Is it pandas or NumPy? Is it the Python language itself? No
Pycoders
PyCoder’s Weekly | Issue #477
Issue #477 of the PyCoder’s Weekly newsletter, published June 15, 2021.
Python Bytes: #238 A cloud-based file system for Python and a new GUI!
Link: https://pythonbytes.fm/episodes/show/238/a-cloud-based-file-system-for-python-and-a-new-gui
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=0dk7ZhZwcrM' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/238/a-cloud-based-file-system-for-python-and-a-new-gui
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=0dk7ZhZwcrM' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
A cloud-based file system for Python and a new GUI!
News and announcements from the Python community for the week of Jun 15th, 2021
Podcast.__init__: Traversing The Challenges And Promise Of Graph Machine Learning
Link: https://www.pythonpodcast.com/graph-machine-learning-episode-319/
The foundation of every ML model is the data that it is trained on. In many cases you will be working with tabular or unstructured information, but there is a growing trend toward networked, or graph
Link: https://www.pythonpodcast.com/graph-machine-learning-episode-319/
The foundation of every ML model is the data that it is trained on. In many cases you will be working with tabular or unstructured information, but there is a growing trend toward networked, or graph
The Python Podcast.__init__
The Python Podcast.__init__: Traversing The Challenges And Promise Of Graph Machine Learning
An interview with Benedek Rozemberczki about his open source contributions and research in graph machine learning problems.
Will McGugan: Introducing Textual
Link: https://www.willmcgugan.com/blog/tech/post/textual-progress/
I've started work on a new project called Textual.
Textual is (or will be) a TUI framework using Rich as a renderer. It's still very early days, but ultimately the goal is to have something which you
Link: https://www.willmcgugan.com/blog/tech/post/textual-progress/
I've started work on a new project called Textual.
Textual is (or will be) a TUI framework using Rich as a renderer. It's still very early days, but ultimately the goal is to have something which you
Will McGugan Tech
Introducing Textual
I've started work on a new project called Textual. Textual is (or will be) a TUI framework using Rich as a renderer. It's still very early days, but ultimately the goal is to have something which you can uses to build a Text User Interface with little to…
Ned Batchelder: Math factoid of the day: 59 icosahedra
Link: https://nedbatchelder.com/blog/202106/math_factoid_of_the_day_59_icosahedra.html
Today’s math factoid of the day: there are 59 icosahedra.I’ve long been fascinated by
stellation, the process
of extending a polyhedron’s faces to form new structures. The word stellation
is from the
Link: https://nedbatchelder.com/blog/202106/math_factoid_of_the_day_59_icosahedra.html
Today’s math factoid of the day: there are 59 icosahedra.I’ve long been fascinated by
stellation, the process
of extending a polyhedron’s faces to form new structures. The word stellation
is from the
Nedbatchelder
Math factoid of the day: 59 icosahedra
Today’s math factoid of the day: there are 59 icosahedra.
PyCharm: Join us for some Fun with PyCharm and Postgres
Link: http://feedproxy.google.com/~r/Pycharm/~3/dMGtgejZ0WA/
In this webinar, we are going to talk about databases, particularly PostgreSQL, a powerful, open-source object-relational database system. Our guest speaker, Craig Kerstiens, will be sharing his exten
Link: http://feedproxy.google.com/~r/Pycharm/~3/dMGtgejZ0WA/
In this webinar, we are going to talk about databases, particularly PostgreSQL, a powerful, open-source object-relational database system. Our guest speaker, Craig Kerstiens, will be sharing his exten
JetBrains Blog
Join us for some Fun with PyCharm and Postgres | The PyCharm Blog
In this webinar, we are going to talk about databases, particularly PostgreSQL, a powerful, open-source object-relational database system. Our guest speaker, Craig Kerstiens, will be sharing his exten