DALLE2-pytorch
Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in PyTorch.
https://github.com/lucidrains/DALLE2-pytorch
Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in PyTorch.
https://github.com/lucidrains/DALLE2-pytorch
GitHub
GitHub - lucidrains/DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch
Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch - lucidrains/DALLE2-pytorch
Python 3.11.0b1 is out! Python 3.11 is now in feature freeze mode!
https://www.reddit.com/r/Python/comments/uktt1w/python_3110b1_is_out_python_311_is_now_in_feature/
https://www.reddit.com/r/Python/comments/uktt1w/python_3110b1_is_out_python_311_is_now_in_feature/
reddit
Python 3.11.0b1 is out! Python 3.11 is now in feature freeze mode!
Posted in r/Python by u/ExoticMandibles • 330 points and 39 comments
Introducing Woodwork
Woodwork is a Python library that provides robust methods for managing and communicating data typing information. Woodwork can be used as a part of your existing workflow to properly type your data and communicate your data types to downstream processes.
https://innovation.alteryx.com/introducing-woodwork-an-open-source-python-library-for-rich-semantic-data-typing/
Woodwork is a Python library that provides robust methods for managing and communicating data typing information. Woodwork can be used as a part of your existing workflow to properly type your data and communicate your data types to downstream processes.
https://innovation.alteryx.com/introducing-woodwork-an-open-source-python-library-for-rich-semantic-data-typing/
Alteryx | Innovation
Introducing Woodwork - An Open Source Python Library for Rich Semantic Data Typing
At Alteryx, we aim to create tools for advancing machine learning capabilities.
To help everyone solve impactful problems, we're building innovative open source
tools for each step of the machine learning pipeline, automating all parts of
the machine learning…
To help everyone solve impactful problems, we're building innovative open source
tools for each step of the machine learning pipeline, automating all parts of
the machine learning…
CaskDB
CaskDB is a disk-based, embedded, persistent, key-value store based on the Riak's bitcask paper, written in Python.
https://github.com/avinassh/py-caskdb
CaskDB is a disk-based, embedded, persistent, key-value store based on the Riak's bitcask paper, written in Python.
https://github.com/avinassh/py-caskdb
GitHub
GitHub - avinassh/py-caskdb: (educational) build your own disk based KV store
(educational) build your own disk based KV store. Contribute to avinassh/py-caskdb development by creating an account on GitHub.
A Simple & Effective Way To Improve Python Class Performance
There's a very simple way to improve Python performance of your code. And you know what's so nice about this performance improvement? It also nudges you to use good Python software design practices - it's a win-win!
https://www.youtube.com/watch?v=Fot3_9eDmOs
There's a very simple way to improve Python performance of your code. And you know what's so nice about this performance improvement? It also nudges you to use good Python software design practices - it's a win-win!
https://www.youtube.com/watch?v=Fot3_9eDmOs
YouTube
A Simple & Effective Way To Improve Python Class Performance
💡 Learn how to design great software in 7 steps: https://arjan.codes/designguide.
There's a very simple way to improve Python performance of your code. And you know what's so nice about this performance improvement? It also nudges you to use good Python…
There's a very simple way to improve Python performance of your code. And you know what's so nice about this performance improvement? It also nudges you to use good Python…
Managing Python Versions with Pyenv
https://thepythoncorner.com/posts/2022-05-06-managing-python-versions-with-pyenv/
https://thepythoncorner.com/posts/2022-05-06-managing-python-versions-with-pyenv/
Thepythoncorner
Managing Python versions with pyenv
Today’s article is about one of the most impressive pieces of software Python-related I have ever seen: pyenv. pyenv is the most clever way of installing Python on your system and allows you to install and manage several different versions of Python specifying…
How can I make 1.9999999999999999999 into 1?
https://www.reddit.com/r/learnpython/comments/uoq7ra/how_can_i_make_19999999999999999999_into_1/
https://www.reddit.com/r/learnpython/comments/uoq7ra/how_can_i_make_19999999999999999999_into_1/
reddit
How can I make 1.9999999999999999999 into 1?
Both int(1.9999999999999999999) and math.floor(1.9999999999999999999) return 2. I'm trying to figure out how to just chop off the decimal part no...
Python Language Summit: Python Without the GIL
https://pyfound.blogspot.com/2022/05/the-2022-python-language-summit-python_11.html
https://pyfound.blogspot.com/2022/05/the-2022-python-language-summit-python_11.html
Blogspot
The 2022 Python Language Summit: Python without the GIL
If you peruse the archives of language-summit blogs, you’ll find that one theme comes up again and again : the dream of Python without the...
Freshenv
A cli to provision and manage local developer environments.
https://github.com/raiyanyahya/freshenv
A cli to provision and manage local developer environments.
https://github.com/raiyanyahya/freshenv
GitHub
GitHub - raiyanyahya/freshenv: 🥗 Provision, share, manage local and cloud developer environments.
🥗 Provision, share, manage local and cloud developer environments. - raiyanyahya/freshenv
What's the oldest Python version my package should support?
https://www.reddit.com/r/Python/comments/unhz5b/whats_the_oldest_python_version_my_package_should/
https://www.reddit.com/r/Python/comments/unhz5b/whats_the_oldest_python_version_my_package_should/
reddit
What's the oldest Python version my package should support?
I maintain a library called PyAutoGUI which currently supports Python 2. It's a bit of a pain. Is there any reason I shouldn't drop...
Web Scraping with Python: Everything you need to know
https://www.scrapingbee.com/blog/web-scraping-101-with-python/
https://www.scrapingbee.com/blog/web-scraping-101-with-python/
Scrapingbee
Python Web Scraping: Full Tutorial With Examples (2025) | ScrapingBee
Learn about web scraping in Python with this step-by-step tutorial. We will cover almost all of the tools Python offers to scrape the web. From Requests to BeautifulSoup, Scrapy, Selenium and more.
Deploying Django To App Engine With Github Actions
https://cjoshmartin.com/blog/deploying-django-to-app-engine-with-github-actions/
https://cjoshmartin.com/blog/deploying-django-to-app-engine-with-github-actions/
Cjoshmartin
Deploying Django to App Engine with Github Actions
Deploying to Google Cloud Platform (GCP) on Github actions has not been a straight forward process. The blog posts online are incomplete and hard to follow. So, hopefully I can help a little bit with what I found to make it easy to deploy this...
Python in Visual Studio Code – May 2022 Release
With this release we’re introducing three new extensions: Black, isort, and Jupyter Powertoys.
https://devblogs.microsoft.com/python/python-in-visual-studio-code-may-2022-release/
With this release we’re introducing three new extensions: Black, isort, and Jupyter Powertoys.
https://devblogs.microsoft.com/python/python-in-visual-studio-code-may-2022-release/
Microsoft News
Python in Visual Studio Code – May 2022 Release
We’re excited to announce that the May 2022 release of the Python and Jupyter Extensions for Visual Studio Code are now available! With this release we’re introducing three new extensions: Black, isort, and Jupyter Powertoys. If you’re interested, you can…
Python decorator patterns
This post shows you toy implementations of Python decorator patterns such as @measure, @repeat, @trace, @count, @singleton, and @app.route (made famous by Flask).
https://bytepawn.com/python-decorator-patterns.html
This post shows you toy implementations of Python decorator patterns such as @measure, @repeat, @trace, @count, @singleton, and @app.route (made famous by Flask).
https://bytepawn.com/python-decorator-patterns.html
Bytepawn - Marton Trencseni
Python decorator patterns
I show toy implementations of Python decorator patterns such as @measure, @repeat, @trace, @count, @singleton, and @app.route (made famous by Flask).
Boring Python: dependency management
This is the first in hopefully a series of posts I intend to write about how to ...
https://www.b-list.org/weblog/2022/may/13/boring-python-dependencies/
This is the first in hopefully a series of posts I intend to write about how to ...
https://www.b-list.org/weblog/2022/may/13/boring-python-dependencies/
James Bennett
Boring Python: dependency management
This is the first in hopefully a series of posts I intend to write about how to build/manage/deploy/etc. Python applications …
Django Friday Tips: Less known builtin commands
Django management commands can be very helpful while developing your application or website, we are very used to runserver, makemigrations, migrate, shell and others. Third party packages often provide extra commands and you can easily add new commands to your own apps. Lets take a look at some less known and yet very useful commands that Django provides out of the box.
https://blog.ovalerio.net/archives/2420
Django management commands can be very helpful while developing your application or website, we are very used to runserver, makemigrations, migrate, shell and others. Third party packages often provide extra commands and you can easily add new commands to your own apps. Lets take a look at some less known and yet very useful commands that Django provides out of the box.
https://blog.ovalerio.net/archives/2420
Slik: A data processing and modelling Python library
https://slik-wrangler.medium.com/introducing-slik-a-data-processing-and-modelling-python-library-5cfd837ce01b
https://slik-wrangler.medium.com/introducing-slik-a-data-processing-and-modelling-python-library-5cfd837ce01b
Medium
Introducing Slik: A data processing and modelling python library…
One thing I have realised about the Data Science and Machine learning (ML) world is that there is a lot of buzz/noise around model building…
I used a new dataframe library (polars) to wrangle 300M prices and discover some of the most expensive hospitals in America. Code/notebook in article
https://www.reddit.com/r/Python/comments/ululk1/i_used_a_new_dataframe_library_polars_to_wrangle/
https://www.reddit.com/r/Python/comments/ululk1/i_used_a_new_dataframe_library_polars_to_wrangle/
reddit
I used a new dataframe library (polars) to wrangle 300M prices and...
Posted in r/Python by u/alecs-dolt • 458 points and 67 comments
My First Impression Trying Python on Browser
The only missing piece to make Python a universal programming language is hereContinue reading on ...
https://towardsdatascience.com/pyscript-tutorial-a8fba77abd1b
The only missing piece to make Python a universal programming language is hereContinue reading on ...
https://towardsdatascience.com/pyscript-tutorial-a8fba77abd1b