Quansight Labs Blog: Writing fast string ufuncs for NumPy 2.0
Link: https://labs.quansight.org/blog/numpy-string-ufuncs
The journey of writing string ufuncs and creating the np.strings namespace for NumPy 2.0
Link: https://labs.quansight.org/blog/numpy-string-ufuncs
The journey of writing string ufuncs and creating the np.strings namespace for NumPy 2.0
labs.quansight.org
Writing fast string ufuncs for NumPy 2.0
The journey of writing string ufuncs and creating the np.strings namespace for NumPy 2.0
Matt Layman: Export Journal Feature - Building SaaS with Python and Django #191
Link: https://www.mattlayman.com/blog/2024/export-journal-feature-building-saas-with-python-and-django-191/
In this episode, I started with cleaning up a few small items. After those warmups, we moved on to building an export feature that will allow users to take their journal entries if they want to leave
Link: https://www.mattlayman.com/blog/2024/export-journal-feature-building-saas-with-python-and-django-191/
In this episode, I started with cleaning up a few small items. After those warmups, we moved on to building an export feature that will allow users to take their journal entries if they want to leave
Matt Layman
Export Journal Feature - Building SaaS with Python and Django #191
In this episode, I started with cleaning up a few small items. After those warmups, we moved on to building an export feature that will allow users to take their journal entries if they want to leave the service.
Talk Python to Me: #463: Running on Rust: Granian Web Server
Link: https://talkpython.fm/episodes/show/463/running-on-rust-granian-web-server
So you've created a web app with Python using Flask, Django, FastAPI, or even Emmett. It works great on your machine. How do you get it out to the world? You'll need a production-ready web server. On
Link: https://talkpython.fm/episodes/show/463/running-on-rust-granian-web-server
So you've created a web app with Python using Flask, Django, FastAPI, or even Emmett. It works great on your machine. How do you get it out to the world? You'll need a production-ready web server. On
talkpython.fm
Running on Rust: Granian Web Server
So you've created a web app with Python using Flask, Django, FastAPI, or even Emmett. It works great on your machine. How do you get it out to the world? You'll need a production-ready web server. On this episode, we have Giovanni Barillari to tell us about…
Zato Blog: Web scraping as an API service
Link: https://zato.io/en/blog/web-scraping-api-integrations.html
Web scraping as an API service
2024-05-27, by Dariusz Suchojad
Overview
In systems-to-systems integrations, there comes an inevitable time when we have to employ some kind of a web scraping too
Link: https://zato.io/en/blog/web-scraping-api-integrations.html
Web scraping as an API service
2024-05-27, by Dariusz Suchojad
Overview
In systems-to-systems integrations, there comes an inevitable time when we have to employ some kind of a web scraping too
Real Python: How to Create Pivot Tables With pandas
Link: https://realpython.com/how-to-pandas-pivot-table/
A pivot table is a data analysis tool that allows you to take columns of raw data from a pandas DataFrame, summarize them, and then analyze the summary data to reveal its insights.
Pivot tables allow
Link: https://realpython.com/how-to-pandas-pivot-table/
A pivot table is a data analysis tool that allows you to take columns of raw data from a pandas DataFrame, summarize them, and then analyze the summary data to reveal its insights.
Pivot tables allow
Realpython
How to Create Pivot Tables With pandas – Real Python
In this tutorial, you'll learn how to create pivot tables using pandas. You'll explore the key features of DataFrame's pivot_table() method and practice using them to aggregate your data in different ways.
Python Bytes: #385 RESTing on Postgres
Link: https://pythonbytes.fm/episodes/show/385/resting-on-postgres
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://github.com/PostgREST/postgrest">PostgresREST</a></li>
<li><a href="https://jacobpadilla.com/articles/recreating-asyncio
Link: https://pythonbytes.fm/episodes/show/385/resting-on-postgres
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://github.com/PostgREST/postgrest">PostgresREST</a></li>
<li><a href="https://jacobpadilla.com/articles/recreating-asyncio
pythonbytes.fm
RESTing on Postgres
News and announcements from the Python community for the week of May 27th, 2024
Robin Wilson: How to install the Python triangle package on an Apple Silicon Mac
Link: https://blog.rtwilson.com/how-to-install-the-python-triangle-package-on-an-apple-silicon-mac/
I was recently trying to set up RasterVision on my Apple Silicon Mac (specifically a M1 MacBook Pro, but I’m pretty sure this applies to any Apple Silicon Mac). It all went fine until it came time to
Link: https://blog.rtwilson.com/how-to-install-the-python-triangle-package-on-an-apple-silicon-mac/
I was recently trying to set up RasterVision on my Apple Silicon Mac (specifically a M1 MacBook Pro, but I’m pretty sure this applies to any Apple Silicon Mac). It all went fine until it came time to
Quansight Labs Blog: Dataframe interoperability - what has been achieved, and what comes next?
Link: https://labs.quansight.org/blog/dataframe-interop-pycon-lit-2024
An overview of the dataframe landscape, and solution to the "we only support pandas" problem
Link: https://labs.quansight.org/blog/dataframe-interop-pycon-lit-2024
An overview of the dataframe landscape, and solution to the "we only support pandas" problem
labs.quansight.org
Dataframe interoperability - what has been achieved, and what comes next?
An overview of the dataframe landscape, and solution to the "we only support pandas" problem
Python Software Foundation: Thinking about running for the Python Software Foundation Board of Directors? Let’s talk!
Link: https://pyfound.blogspot.com/2024/05/blog-post.html
PSF Board elections are a chance for the community to choose representatives to help the PSF create a vision for and build the future of the Python community. This year there are 3 seats open on the P
Link: https://pyfound.blogspot.com/2024/05/blog-post.html
PSF Board elections are a chance for the community to choose representatives to help the PSF create a vision for and build the future of the Python community. This year there are 3 seats open on the P
Python Software Foundation Blog
Thinking about running for the Python Software Foundation Board of Directors? Let’s talk!
PSF Board elections are a chance for the community to choose representatives to help the PSF create a vision for and build the future of the...
Real Python: Efficient Iterations With Python Iterators and Iterables
Link: https://realpython.com/courses/efficient-iterations-iterators-iterables/
Python’s iterators and iterables are two different but related tools that come in handy when you need to iterate over a data stream or container. Iterators power and control the iteration process, whi
Link: https://realpython.com/courses/efficient-iterations-iterators-iterables/
Python’s iterators and iterables are two different but related tools that come in handy when you need to iterate over a data stream or container. Iterators power and control the iteration process, whi
Realpython
Efficient Iterations With Python Iterators and Iterables – Real Python
In this video course, you'll learn what iterators and iterables are in Python. You'll learn how they differ and when to use them in your code. You'll also learn how to create your own iterators and iterables to make data processing more efficient.
Go Deh: Recreating the CVM algorithm for estimating distinct elements gives problems
Link: http://paddy3118.blogspot.com/2024/05/recreating-cvm-algorithm-for-estimating.html
Someone at work posted a link to this Quanta Magazine article. It describes a novel, and seemingly straight-forward way to estimate the number of distinct elements in a datastream. Quanta describes
Link: http://paddy3118.blogspot.com/2024/05/recreating-cvm-algorithm-for-estimating.html
Someone at work posted a link to this Quanta Magazine article. It describes a novel, and seemingly straight-forward way to estimate the number of distinct elements in a datastream. Quanta describes
Blogspot
Recreating the CVM algorithm for estimating distinct elements gives problems
Someone at work posted a link to this Quanta Magazine article . It describes a novel, and seemingly straight-forward way to estimate the ...
Ned Batchelder: One way to fix Python circular imports
Link: https://nedbatchelder.com/blog/202405/one_way_to_fix_python_circular_imports.html
In Python, a circular import is when two files each try to import the other,
causing a failure when a module isn’t fully initialized. The best way to fix
this situation is to organize your code in la
Link: https://nedbatchelder.com/blog/202405/one_way_to_fix_python_circular_imports.html
In Python, a circular import is when two files each try to import the other,
causing a failure when a module isn’t fully initialized. The best way to fix
this situation is to organize your code in la
Nedbatchelder
One way to fix Python circular imports
Python circular imports can be confusing. Simply using a different form of import can sometimes fix the problem.
PyCoder’s Weekly: Issue #631 (May 28, 2024)
Link: https://pycoders.com/issues/631
#631 – MAY 28, 2024 View in Browser » Building a Python GUI Application With Tkinter In this video course, you’ll learn the basics of GUI programming with Tkinter, the de facto Python GUI framew
Link: https://pycoders.com/issues/631
#631 – MAY 28, 2024 View in Browser » Building a Python GUI Application With Tkinter In this video course, you’ll learn the basics of GUI programming with Tkinter, the de facto Python GUI framew
Pycoders
PyCoder’s Weekly | Issue #631
Issue #631 of the PyCoder’s Weekly newsletter, published May 28, 2024.
Trey Hunner: PyCon 2024 Reflection
Link: https://treyhunner.com/2024/05/pycon-2024-reflection/
I traveled back home from PyCon US 2024 last week.
This is my reflection on my time at PyCon.
Attempting to eat vegan
Since 2020, I’ve been gradually eating more plant-based and a few months ago I dec
Link: https://treyhunner.com/2024/05/pycon-2024-reflection/
I traveled back home from PyCon US 2024 last week.
This is my reflection on my time at PyCon.
Attempting to eat vegan
Since 2020, I’ve been gradually eating more plant-based and a few months ago I dec
Treyhunner
PyCon 2024 Reflection
I traveled back home from PyCon US 2024 last week.
This is my reflection on my time at PyCon. Attempting to eat vegan Since 2020, I’ve been …
This is my reflection on my time at PyCon. Attempting to eat vegan Since 2020, I’ve been …
Python Morsels: Equality versus identity in Python
Link: https://www.pythonmorsels.com/equality-vs-identity/
Equality checks whether two objects represent the same value. Identity checks whether two variables point to the same object.
Table of contents
The equality operator in Python
The is operator in
Link: https://www.pythonmorsels.com/equality-vs-identity/
Equality checks whether two objects represent the same value. Identity checks whether two variables point to the same object.
Table of contents
The equality operator in Python
The is operator in
Pythonmorsels
Equality versus identity in Python
Equality checks whether two objects represent the same value. Identity checks whether two variables point to the same object.
Talk Python to Me: #464: Seeing code flows and generating tests with Kolo
Link: https://talkpython.fm/episodes/show/464/seeing-code-flows-and-generating-tests-with-kolo
Do you want to look inside your Django request? How about all of your requests in development and see where they overlap? If that sounds useful, you should check out Kolo. It's a pretty incredible ext
Link: https://talkpython.fm/episodes/show/464/seeing-code-flows-and-generating-tests-with-kolo
Do you want to look inside your Django request? How about all of your requests in development and see where they overlap? If that sounds useful, you should check out Kolo. It's a pretty incredible ext
talkpython.fm
Seeing code flows and generating tests with Kolo
Do you want to look inside your Django request? How about all of your requests in development and see where they overlap? If that sounds useful, you should check out Kolo. It's a pretty incredible extension for your editor (VS Code at the moment, more editors…
Real Python: What Are CRUD Operations?
Link: https://realpython.com/crud-operations/
CRUD operations are at the heart of nearly every application you interact with. As a developer, you usually want to create data, read or retrieve data, update data, and delete data. Whether you access
Link: https://realpython.com/crud-operations/
CRUD operations are at the heart of nearly every application you interact with. As a developer, you usually want to create data, read or retrieve data, update data, and delete data. Whether you access
Realpython
What Are CRUD Operations? – Real Python
CRUD operations are the cornerstone of application functionality. Whether you access a database or interact with a REST API, you usually want to create, retrieve, update, and delete data. In this tutorial, you'll explore how CRUD operations work in practice.
The Python Show: 42 - Harlequin - The SQL IDE for Your Terminal
Link: https://www.pythonshow.com/p/42-harlequin-the-sql-ide-for-your
This episode focuses on the Harlequin application, a Python SQL IDE for your terminal written using the amazing Textual package.I was honored to have Ted Conbeer, the creator of Harlequin, on the show
Link: https://www.pythonshow.com/p/42-harlequin-the-sql-ide-for-your
This episode focuses on the Harlequin application, a Python SQL IDE for your terminal written using the amazing Textual package.I was honored to have Ted Conbeer, the creator of Harlequin, on the show
Pythonshow
42 - Harlequin - The SQL IDE for Your Terminal
Special Guest: Ted Conbeer
Django Weblog: Django Enhancement Proposal 14: Background Workers
Link: https://www.djangoproject.com/weblog/2024/may/29/django-enhancement-proposal-14-background-workers/
As of today, DEP-14 has been approved 🛫
The DEP was written and stewarded by Jake Howard. A very enthusiastic community has been active with feedback and encouragement, while the Django Steering Counc
Link: https://www.djangoproject.com/weblog/2024/may/29/django-enhancement-proposal-14-background-workers/
As of today, DEP-14 has been approved 🛫
The DEP was written and stewarded by Jake Howard. A very enthusiastic community has been active with feedback and encouragement, while the Django Steering Counc
Django Project
Django Enhancement Proposal 14: Background Workers
Posted by Benjamin Balder Bach, Cory Zue, Carlton Gibson on May 29, 2024
PyCharm: PyCharm 2024.1.2: What’s New!
Link: https://blog.jetbrains.com/pycharm/2024/05/pycharm-2024-1-2/
PyCharm 2024.1.2 is here with features designed to enhance your productivity and streamline your development workflow. This update includes support for DRF viewsets and routers in the Endpoints tool w
Link: https://blog.jetbrains.com/pycharm/2024/05/pycharm-2024-1-2/
PyCharm 2024.1.2 is here with features designed to enhance your productivity and streamline your development workflow. This update includes support for DRF viewsets and routers in the Endpoints tool w
The JetBrains Blog
PyCharm 2024.1.2: What’s New! | The PyCharm Blog
PyCharm 2024.1.2 is here with support for DRF viewsets and routers in the Endpoints tool window, code assistance for TypedDict and Unpack, and improved debugger performance when handling large collections.