TypeThePipe: Mastering Python Polars json manipulation. Do it in an easy and robust way!
Link: https://typethepipe.com/vizs-and-tips/python-polars-json-manipulation/
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.source
Link: https://typethepipe.com/vizs-and-tips/python-polars-json-manipulation/
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.source
TypeThePipe
Mastering Python Polars json manipulation. Do it in an easy and robust way! | TypeThePipe
Unlock the Full Potential of Polars for Seamless JSON Data Handling.
PyCharm: 2023 and Beyond: The Future of Data Science Told By 79,306 People
Link: https://blog.jetbrains.com/pycharm/2023/10/future-of-data-science/
Data science has been the hottest thing for a while now, but it still continues to be a major talking point even today. In fact, according to the U.S. Bureau of Labor Statistics, it’s estimated that a
Link: https://blog.jetbrains.com/pycharm/2023/10/future-of-data-science/
Data science has been the hottest thing for a while now, but it still continues to be a major talking point even today. In fact, according to the U.S. Bureau of Labor Statistics, it’s estimated that a
The JetBrains Blog
2023 and Beyond: The Future of Data Science Told By 79,306 People | The PyCharm Blog
Data science has been the hottest thing for a while now, but it still continues to be a major talking point even today. In fact, according to the U.S. Bureau of Labor Statistics, it’s estimated that a
Real Python: How to Sort Unicode Strings Alphabetically in Python
Link: https://realpython.com/python-sort-unicode-strings/
Sorting strings in Python is something that you can almost take for granted if you do it all the time. Yet, it can become surprisingly tricky considering all the edge cases lurking in the vast Unicode
Link: https://realpython.com/python-sort-unicode-strings/
Sorting strings in Python is something that you can almost take for granted if you do it all the time. Yet, it can become surprisingly tricky considering all the edge cases lurking in the vast Unicode
Realpython
How to Sort Unicode Strings Alphabetically in Python – Real Python
In this tutorial, you'll learn how to correctly sort Unicode strings in Python while avoiding common pitfalls. You'll explore powerful third-party libraries implementing the complete Unicode Collation Algorithm (UCA), as well as standard library modules and…
Python Anywhere: Outage report 9 October 2023
Link: https://blog.pythonanywhere.com/209/
tl;dr
On 2023-10-09 we had an unplanned outage. While we were preparing our systems for a scheduled system update the
following morning, we faced some issues. These in themselves would not have caused
Link: https://blog.pythonanywhere.com/209/
tl;dr
On 2023-10-09 we had an unplanned outage. While we were preparing our systems for a scheduled system update the
following morning, we faced some issues. These in themselves would not have caused
John Cook: Python code for means
Link: https://www.johndcook.com/blog/2023/10/11/python-agm/
The last couple article have looked at various kinds of mean. The Python code for four of these means is trivial:
gm = lambda a, b: (a*b)**0.5
am = lambda a, b: (a + b)/2
hm = lambda a, b: 2*a*b/(a
Link: https://www.johndcook.com/blog/2023/10/11/python-agm/
The last couple article have looked at various kinds of mean. The Python code for four of these means is trivial:
gm = lambda a, b: (a*b)**0.5
am = lambda a, b: (a + b)/2
hm = lambda a, b: 2*a*b/(a
John D. Cook | Applied Mathematics Consulting
Python code for arithmetic-geometric mean AGM
How to compute various means in Python, in particular the AGM (arithmetic-geometric mean).
PyBites: What The Heck Is Yield For?
Link: https://pybit.es/articles/what-the-heck-is-yield-for/
A question came up recently about the purpose of the Python yield expression and when you should use it.
Consider this silly function that computes a list of integers from 0 to 99 raised to the given
Link: https://pybit.es/articles/what-the-heck-is-yield-for/
A question came up recently about the purpose of the Python yield expression and when you should use it.
Consider this silly function that computes a list of integers from 0 to 99 raised to the given
Pybites
What The Heck Is Yield For? - Pybites
A question came up recently about the purpose of the Python yield expression and when you should use it.
PyCharm: PyCharm 2023.3 EAP 3 Is Out!
Link: https://blog.jetbrains.com/pycharm/2023/10/2023-3-eap-3/
This build brings enhancements to the new type parameter syntax and code assistance for REST_FRAMEWORKS parameters in settings.py.
The Toolbox App is the easiest way to get the EAP builds and keep bot
Link: https://blog.jetbrains.com/pycharm/2023/10/2023-3-eap-3/
This build brings enhancements to the new type parameter syntax and code assistance for REST_FRAMEWORKS parameters in settings.py.
The Toolbox App is the easiest way to get the EAP builds and keep bot
The JetBrains Blog
PyCharm 2023.3 EAP 3 Is Out! | The PyCharm Blog
This build brings enhancements to the new type parameter syntax and code assistance for REST_FRAMEWORKS parameters in settings.py. The Toolbox App is the easiest way to get the EAP builds
ListenData: How to Install PyTorch on Windows
Link: https://www.listendata.com/2023/10/how-to-install-pytorch-on-windows.html
This tutorial explains the steps to install PyTorch on Windows.
PyTorch is a free and open source machine learning library developed by Facebook's AI Research lab. It is built on the Torch library and
Link: https://www.listendata.com/2023/10/how-to-install-pytorch-on-windows.html
This tutorial explains the steps to install PyTorch on Windows.
PyTorch is a free and open source machine learning library developed by Facebook's AI Research lab. It is built on the Torch library and
ListenData
How to Install PyTorch on Windows
This tutorial explains the steps to install PyTorch on Windows.
Python Insider: Python 3.13.0 alpha 1 is now available
Link: https://pythoninsider.blogspot.com/2023/10/python-3130-alpha-1-is-now-available.html
It’s not a very exciting release (yet), but it’s time for the first alpha of Python 3.13 anyway!https://www.python.org/downloads/release/python-3130a1/This is an early developer preview of Python 3.1
Link: https://pythoninsider.blogspot.com/2023/10/python-3130-alpha-1-is-now-available.html
It’s not a very exciting release (yet), but it’s time for the first alpha of Python 3.13 anyway!https://www.python.org/downloads/release/python-3130a1/This is an early developer preview of Python 3.1
Blogspot
Python Insider: Python 3.13.0 alpha 1 is now available
Real Python: The Real Python Podcast – Episode #176: Building Python Best Practices and Fundamental Skills
Link: https://realpython.com/podcasts/rpp/176/
What fundamental developer skills are new Python users missing? What best practices might developers without a computer science background be lacking? Christopher Trudeau is back on the show this week
Link: https://realpython.com/podcasts/rpp/176/
What fundamental developer skills are new Python users missing? What best practices might developers without a computer science background be lacking? Christopher Trudeau is back on the show this week
Realpython
Episode #176: Building Python Best Practices and Fundamental Skills – The Real Python Podcast
What fundamental developer skills are new Python users missing? What best practices might developers without a computer science background be lacking? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and…
Django Weblog: Announcing DSF Working Groups
Link: https://www.djangoproject.com/weblog/2023/oct/13/announcing-dsf-working-groups/
Today we’re announcing some changes to how the DSF gets work done. We
want to make it easier for people to contribute meaningfully to the
DSF’s mission. Previously, you more or less needed to be a boa
Link: https://www.djangoproject.com/weblog/2023/oct/13/announcing-dsf-working-groups/
Today we’re announcing some changes to how the DSF gets work done. We
want to make it easier for people to contribute meaningfully to the
DSF’s mission. Previously, you more or less needed to be a boa
Django Project
Announcing DSF Working Groups
Posted by Jacob Kaplan-Moss on October 13, 2023
Django Weblog: 2024 DSF Board Nominations
Link: https://www.djangoproject.com/weblog/2023/oct/13/2024-dsf-board-nominations/
Nominations are open for the 2024 Django Software Foundation Board of Directors.
In 2023 we introduced a staggered term for directors, which means at this time there are three positions currently open
Link: https://www.djangoproject.com/weblog/2023/oct/13/2024-dsf-board-nominations/
Nominations are open for the 2024 Django Software Foundation Board of Directors.
In 2023 we introduced a staggered term for directors, which means at this time there are three positions currently open
Django Project
2024 DSF Board Nominations
Posted by Katie McLaughlin on October 13, 2023
PyCharm: PyCharm 2023.2.3 Is Out!
Link: https://blog.jetbrains.com/pycharm/2023/10/2023-2-3/
You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are an Ubuntu user. You can also download it from our website.
Download PyCharm 2023.2.3
PEP 701: Forma
Link: https://blog.jetbrains.com/pycharm/2023/10/2023-2-3/
You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are an Ubuntu user. You can also download it from our website.
Download PyCharm 2023.2.3
PEP 701: Forma
The JetBrains Blog
PyCharm 2023.2.3 Is Out! | The PyCharm Blog
You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are an Ubuntu user. You can also download it from our website. Download PyCharm 2023.2.3
Matt Layman: Practical AI: HuggingFace Transformers and Diffusers for Beginners
Link: https://www.mattlayman.com/blog/2023/practical-ai-huggingface-transformers-and-diffusers-for-beginners/
This presentation provides a straightforward overview of the HuggingFace Transformers and Diffusers libraries. Aimed at those without a deep understanding of AI or ML, we’ll focus on practical, hands-
Link: https://www.mattlayman.com/blog/2023/practical-ai-huggingface-transformers-and-diffusers-for-beginners/
This presentation provides a straightforward overview of the HuggingFace Transformers and Diffusers libraries. Aimed at those without a deep understanding of AI or ML, we’ll focus on practical, hands-
Matt Layman
Practical AI: HuggingFace Transformers and Diffusers for Beginners
This presentation provides a straightforward overview of the HuggingFace Transformers and Diffusers libraries. Aimed at those without a deep understanding of AI or ML, we’ll focus on practical, hands-on applications. We conclude by setting up a Flask app…
Django Weblog: Announcing DjangoCon Europe 2024 in Vigo, Spain!
Link: https://www.djangoproject.com/weblog/2023/oct/14/djangocon-europe-2024/
We're thrilled to announce the much-anticipated return of DjangoCon Europe, set to take place in the vibrant city of Vigo, Spain, in 2024!
DjangoCon Europe has been a cornerstone of the Django communi
Link: https://www.djangoproject.com/weblog/2023/oct/14/djangocon-europe-2024/
We're thrilled to announce the much-anticipated return of DjangoCon Europe, set to take place in the vibrant city of Vigo, Spain, in 2024!
DjangoCon Europe has been a cornerstone of the Django communi
Django Project
Announcing DjangoCon Europe 2024 in Vigo, Spain!
Posted by The DjangoCon Europe 2024 Organizing Team on October 14, 2023
Armin Ronacher: EuroRust 2023 Reflections: What's a Conference For?
Link: http://lucumr.pocoo.org/2023/10/14/eurorust-whats-a-conference
I very rarely write recaps of conferences but this time around I could not
resist. This is for a lot of reasons. To kick things off, quite a bit of
what was on my mind relates quite directly to a per
Link: http://lucumr.pocoo.org/2023/10/14/eurorust-whats-a-conference
I very rarely write recaps of conferences but this time around I could not
resist. This is for a lot of reasons. To kick things off, quite a bit of
what was on my mind relates quite directly to a per
lucumr.pocoo.org
EuroRust 2023 Reflections: What's a Conference For?
A recap of EuroRust 2023 and thoughts on Rust
Talk Python to Me: #433: Litestar: Effortlessly Build Performant APIs
Link: https://talkpython.fm/episodes/show/433/litestar-effortlessly-build-performant-apis
We all know about Flask and Django. And of course FastAPI made a huge splash when it came on the scene a few years ago. But new web frameworks are being creating all the time. And they have these earl
Link: https://talkpython.fm/episodes/show/433/litestar-effortlessly-build-performant-apis
We all know about Flask and Django. And of course FastAPI made a huge splash when it came on the scene a few years ago. But new web frameworks are being creating all the time. And they have these earl
talkpython.fm
Litestar: Effortlessly Build Performant APIs
We all know about Flask and Django. And of course FastAPI made a huge splash when it came on the scene a few years ago. But new web frameworks are being created all the time. And they have these earlier frameworks to borrow from as well. On this episode we…
Real Python: Build a Blog From Scratch With Django
Link: https://realpython.com/build-a-blog-from-scratch-django/
There are plenty of blogging platforms out there that you can use out of the box. However, building your own blog from scratch with Django is a great way to keep control over your content. Even if you
Link: https://realpython.com/build-a-blog-from-scratch-django/
There are plenty of blogging platforms out there that you can use out of the box. However, building your own blog from scratch with Django is a great way to keep control over your content. Even if you
Realpython
Build a Blog From Scratch With Django – Real Python
In this Django beginner project, you'll build a blog from scratch with the Django web framework. You'll leverage the Django admin site and explore how to work with forms so your visitors can comment on your posts.
Python Bytes: #356 Ripping from PyPI
Link: https://pythonbytes.fm/episodes/show/356/ripping-from-pypi
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://www.psycopg.org/psycopg3/"><strong>Psycopg 3</strong></a></li>
<li><a href="https://github.com/konradhalas/dacite"><str
Link: https://pythonbytes.fm/episodes/show/356/ripping-from-pypi
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://www.psycopg.org/psycopg3/"><strong>Psycopg 3</strong></a></li>
<li><a href="https://github.com/konradhalas/dacite"><str
pythonbytes.fm
Ripping from PyPI
News and announcements from the Python community for the week of Oct 10th, 2023
Real Python: Python Basics Exercises: Object-Oriented Programming
Link: https://realpython.com/courses/object-oriented-programming-exercises/
In Python Basics: Object-Oriented Programming, you learned how OOP, or object-oriented programming, is a method of structuring a program by bundling related properties and behaviors into individual ob
Link: https://realpython.com/courses/object-oriented-programming-exercises/
In Python Basics: Object-Oriented Programming, you learned how OOP, or object-oriented programming, is a method of structuring a program by bundling related properties and behaviors into individual ob
Realpython
Python Basics Exercises: Object-Oriented Programming – Real Python
In this Python Basics Exercises course, you'll review OOP, or object-oriented programming. You'll practice creating classes, using classes to create new objects, and instantiating classes with attributes.