Python 3.11 Performance Benchmarks Are Looking Fantastic
https://www.phoronix.com/scan.php?page=article&item=python-311-benchmarks
https://www.phoronix.com/scan.php?page=article&item=python-311-benchmarks
Phoronix
Python 3.11 Performance Benchmarks Are Looking Fantastic
Last month Python 3.11 Beta 1 was released as their first preview of this major update to the Python programming language.
CustomTkinter
A modern and customizable python UI-library based on Tkinter.
https://github.com/TomSchimansky/CustomTkinter
A modern and customizable python UI-library based on Tkinter.
https://github.com/TomSchimansky/CustomTkinter
GitHub
GitHub - TomSchimansky/CustomTkinter: A modern and customizable python UI-library based on Tkinter
A modern and customizable python UI-library based on Tkinter - TomSchimansky/CustomTkinter
Python Asynchronous Programming Fundamentals
Python introduced asynchronous programming capabilities in version 3.4 in 2014, with further notable improvements in almost every minor version since. However, to many Python programmers, this area of the language remains esoteric, misunderstood, and underutilized. This article aims to elucidate the fundamental concepts of asynchronous programming as part of the first step towards mastery.
https://jwodder.github.io/kbits/posts/pyasync-fundam/
Python introduced asynchronous programming capabilities in version 3.4 in 2014, with further notable improvements in almost every minor version since. However, to many Python programmers, this area of the language remains esoteric, misunderstood, and underutilized. This article aims to elucidate the fundamental concepts of asynchronous programming as part of the first step towards mastery.
https://jwodder.github.io/kbits/posts/pyasync-fundam/
jwodder.github.io
Knowledge Bits — Python Asynchronous Programming Fundamentals
Python introduced asynchronous programming capabilities in version 3.4 in 2014, with further notable improvements in almost every minor version since. However, to many Python programmers, this area of the language remains esoteric, misunderstood, and underutilized.…
Peeking and backtracking Python generators
Python generators are mighty, but they lack a couple of useful features. One of them is peeking at the next item without consuming the generator. Even better, what if we could peek any number of items? Another feature lacking from generators is rewinding/backtracking. We will implement both of those features in a couple of different ways.
https://ricardoanderegg.com/posts/peeking-backtracking-python-generator/
Python generators are mighty, but they lack a couple of useful features. One of them is peeking at the next item without consuming the generator. Even better, what if we could peek any number of items? Another feature lacking from generators is rewinding/backtracking. We will implement both of those features in a couple of different ways.
https://ricardoanderegg.com/posts/peeking-backtracking-python-generator/
Ricardoanderegg
Peeking and backtracking Python generators
Python generators are mighty, but they lack a couple of useful features. One of them is peeking the next item without consuming the generator. Even better, what if we could peek any number of items? Another feature lacking from generators is rewinding/backtracking.…
Convolutional Neural Networks
Convolutional Neural Networks can be used to train computers to recognize objects in images. This allows us to recognize objects or people in images or video. It is helps automate the process of finding cancerous tumors. It is also used to implement driverless car technology and more.
https://www.youtube.com/watch?v=ad-Qc42Kbx8
Convolutional Neural Networks can be used to train computers to recognize objects in images. This allows us to recognize objects or people in images or video. It is helps automate the process of finding cancerous tumors. It is also used to implement driverless car technology and more.
https://www.youtube.com/watch?v=ad-Qc42Kbx8
YouTube
Convolutional Neural Networks : TensorFlow 2022
I livestream code and explain everything you could want to know about Convolutional Neural Networks using TensorFlow.
Convolutional Neural Networks can be used to train computers to recognize objects in images. This allows us to recognize objects or people…
Convolutional Neural Networks can be used to train computers to recognize objects in images. This allows us to recognize objects or people…
No-op statements syntactically valid only since Python X.Y
https://github.com/jwilk/python-syntax-errors
https://github.com/jwilk/python-syntax-errors
GitHub
GitHub - jwilk/python-syntax-errors: no-op statements syntactically valid only since Python X.Y
no-op statements syntactically valid only since Python X.Y - jwilk/python-syntax-errors
Crash course in Web3 Application Development with Python
Learn how to send your first transaction on the Ethereum blockchain using Python and the Web3 package
https://blog.doppler.com/crash-course-in-web3-application-development-with-python
Learn how to send your first transaction on the Ethereum blockchain using Python and the Web3 package
https://blog.doppler.com/crash-course-in-web3-application-development-with-python
Doppler
Crash course in Web3 Application Development with Python
Learn how to send your first transaction on the Ethereum blockchain using Python and the Web3 package
BrainIDE
Brainfk IDE using python, bundled with it's own compiler.
https://github.com/LovetheFrogs/BrainIDE
Brainfk IDE using python, bundled with it's own compiler.
https://github.com/LovetheFrogs/BrainIDE
GitHub
GitHub - LovetheFrogs/BrainIDE: Brainfuck IDE using python, bundled with it's own compiler
Brainfuck IDE using python, bundled with it's own compiler - GitHub - LovetheFrogs/BrainIDE: Brainfuck IDE using python, bundled with it's own compiler
Django: How to send email without Celery
Lightweight emails without Celery. And without a request-response cycle.
https://nemecek.be/blog/158/django-how-to-send-email-without-celery
Lightweight emails without Celery. And without a request-response cycle.
https://nemecek.be/blog/158/django-how-to-send-email-without-celery
nemecek.be
Django: How to send email without Celery
Lightweight emails without Celery. And without a request-response cycle.
Compiling Black with mypyc, Pt. 1 - Initial Steps
I spent a COVID summer (and then some) integrating mypyc into Black to double performance. How was it?
https://ichard26.github.io/blog/2022/05/31/compiling-black-with-mypyc-part-1/
I spent a COVID summer (and then some) integrating mypyc into Black to double performance. How was it?
https://ichard26.github.io/blog/2022/05/31/compiling-black-with-mypyc-part-1/
ichard26.github.io
Compiling Black with mypyc, Pt. 1 - Initial Steps
I spent a COVID summer (and then some) integrating mypyc into Black to double performance. How was it?
Run Your Python App Anywhere With Dynamic Settings
Parameterize your application with a config file and read using ConfigParserContinue reading on ...
https://towardsdatascience.com/run-your-python-app-anywhere-with-dynamic-settings-aafd27e04b8e
Parameterize your application with a config file and read using ConfigParserContinue reading on ...
https://towardsdatascience.com/run-your-python-app-anywhere-with-dynamic-settings-aafd27e04b8e
Dates And Times And Types
Get a TypeError when using a datetime when you wanted a date.
https://glyph.twistedmatrix.com/2022/06/dates-and-times-and-types.html
Get a TypeError when using a datetime when you wanted a date.
https://glyph.twistedmatrix.com/2022/06/dates-and-times-and-types.html
Twistedmatrix
Dates And Times And Types
Get a TypeError when using a datetime when you wanted a date.
I Forked “Asyncpg” — And It Parses Database Records to Numpy 20x Faster
Presenting the fork of asyncpg — asynchronous PostgreSQL client for Python — based on NumPy structured arrays.
https://t.co/rViV6pSeDQ
Presenting the fork of asyncpg — asynchronous PostgreSQL client for Python — based on NumPy structured arrays.
https://t.co/rViV6pSeDQ
Medium
I Forked “Asyncpg” — And It Parses Database Records to Numpy 20x Faster
Presenting the fork of asyncpg — asynchronous PostgreSQL client for Python — based on NumPy structured arrays
Python 3.10.5 is available
The latest bugfix drop for Python 3.10 is here: Python 3.10.5. This release packs more than 230 bugfixes and docs changes.
https://pythoninsider.blogspot.com/2022/06/python-3105-is-available_6.html
The latest bugfix drop for Python 3.10 is here: Python 3.10.5. This release packs more than 230 bugfixes and docs changes.
https://pythoninsider.blogspot.com/2022/06/python-3105-is-available_6.html
Blogspot
Python Insider: Python 3.10.5 is available
Serving machine learning models with FastAPI: It’s not all about speed
Deploying models is a tricky topic. In this posts, we describe 4 key reasons why we've chosen FastAPI to deploy out Machine Learning models.
https://blog.amplemarket.com/serving-machine-learning-models-with-fastapi/
Deploying models is a tricky topic. In this posts, we describe 4 key reasons why we've chosen FastAPI to deploy out Machine Learning models.
https://blog.amplemarket.com/serving-machine-learning-models-with-fastapi/
Amplemarket Blog | Sales Tips, Email Resources, Marketing Content
How Amplemarket deploys Machine Learning models with FastAPI
Deploying models is a tricky topic. In this posts, we describe 4 key reasons why we've chosen FastAPI to deploy out Machine Learning models.
An Intro to Python Web Frameworks (Video)
Learn about some of the many Python web frameworks that are available to you in this video.
Web ...
https://www.blog.pythonlibrary.org/2022/06/09/an-intro-to-python-web-frameworks-video/
Learn about some of the many Python web frameworks that are available to you in this video.
Web ...
https://www.blog.pythonlibrary.org/2022/06/09/an-intro-to-python-web-frameworks-video/
Mouse Vs Python
An Intro to Python Web Frameworks (Video) - Mouse Vs Python
Learn about some of the many Python web frameworks that are available to you in this video. Web frameworks mentioned in this video Django -