Glyph Lefkowitz: Post-PyCon-US 2023 Notes
Link: https://blog.glyph.im/2023/04/post-pycon-us-2023-notes.html
PyCon 2023 was last week, and I wanted to write some notes on it while the
memory is fresh. Much of this was jotted down on the plane ride home and
edited a few days later.
Health & Safety
Even given
Link: https://blog.glyph.im/2023/04/post-pycon-us-2023-notes.html
PyCon 2023 was last week, and I wanted to write some notes on it while the
memory is fresh. Much of this was jotted down on the plane ride home and
edited a few days later.
Health & Safety
Even given
blog.glyph.im
Post-PyCon-US 2023 Notes
Some stream of consciousness post-conference notes.
ListenData: 13 Open Source ChatGPT Models: Complete Guide
Link: https://www.listendata.com/2023/03/open-source-chatgpt-models-step-by-step.html
In this article we will explain how Open Source ChatGPT Models work and how you can run them. We will cover thirteen different open source models, namely LLaMA, Alpaca, GPT4All, GPT4All-J, Dolly 2, Ce
Link: https://www.listendata.com/2023/03/open-source-chatgpt-models-step-by-step.html
In this article we will explain how Open Source ChatGPT Models work and how you can run them. We will cover thirteen different open source models, namely LLaMA, Alpaca, GPT4All, GPT4All-J, Dolly 2, Ce
ListenData
15 Free Open Source ChatGPT Alternatives (with Code)
Learn how Open Source ChatGPT alternatives work. It includes a step by step guide to run these models with Python.
Mike Driscoll: PyDev of the Week: Steven Diamond
Link: https://www.blog.pythonlibrary.org/2023/05/01/pydev-of-the-week-steven-diamond/
This week we welcome Steven Diamond as our PyDev of the Week! Steven is a core developer of CVXPY, a convex optimization package for Python. Steven has also been an instructor at Stanford. You can see
Link: https://www.blog.pythonlibrary.org/2023/05/01/pydev-of-the-week-steven-diamond/
This week we welcome Steven Diamond as our PyDev of the Week! Steven is a core developer of CVXPY, a convex optimization package for Python. Steven has also been an instructor at Stanford. You can see
Mouse Vs Python
PyDev of the Week: Steven Diamond - Mouse Vs Python
This week we welcome Steven Diamond as our PyDev of the Week! Steven is a core developer of CVXPY, a convex optimization package for Python. Steven has
Real Python: SOLID Principles: Improve Object-Oriented Design in Python
Link: https://realpython.com/solid-principles-python/
When you build a Python project using object-oriented programming (OOP), planning how the different classes and objects will interact to solve your specific problems is an important part of the job. T
Link: https://realpython.com/solid-principles-python/
When you build a Python project using object-oriented programming (OOP), planning how the different classes and objects will interact to solve your specific problems is an important part of the job. T
Realpython
SOLID Principles: Improve Object-Oriented Design in Python – Real Python
In this tutorial, you'll learn about the SOLID principles, which are five well-established standards for improving your object-oriented design in Python. By applying these principles, you can create object-oriented code that is more maintainable, extensible…
Python Morsels: How to assign a variable in Python
Link: https://www.pythonmorsels.com/assign-a-variable/
You can set the value of a variable in Python by using the equals sign (=) to make an assignment statement.
Table of contents
An equals sign assigns in Python
We don't have declarations or initial
Link: https://www.pythonmorsels.com/assign-a-variable/
You can set the value of a variable in Python by using the equals sign (=) to make an assignment statement.
Table of contents
An equals sign assigns in Python
We don't have declarations or initial
Pythonmorsels
How to assign a variable in Python
You can set the value of a variable in Python by using the equals sign (=) to make an assignment statement.
Python⇒Speed: Goodbye to Flake8 and PyLint: faster linting with Ruff
Link: https://pythonspeed.com/articles/pylint-flake8-ruff/
Flake8 and PyLint are commonly used, and very useful, linting tools: they can help you find potential bugs and other problems with your code, aka “lints”.
But they can also be slow.
And even if they’r
Link: https://pythonspeed.com/articles/pylint-flake8-ruff/
Flake8 and PyLint are commonly used, and very useful, linting tools: they can help you find potential bugs and other problems with your code, aka “lints”.
But they can also be slow.
And even if they’r
Python⇒Speed
Goodbye to Flake8 and PyLint: faster linting with Ruff
Ruff is a new linter that is vastly faster than PyLint and flake8—with many of the same checks.
Tryton News: Tryton Release 6.8
Link: https://discuss.tryton.org/t/tryton-release-6-8/5993
Authors: @dave @pokoli @udono
We are very proud to announce the 6.8 release of Tryton.
In this release there are many bug fixes, behaviour and performance improvements and plenty of other small enh
Link: https://discuss.tryton.org/t/tryton-release-6-8/5993
Authors: @dave @pokoli @udono
We are very proud to announce the 6.8 release of Tryton.
In this release there are many bug fixes, behaviour and performance improvements and plenty of other small enh
Tryton Discussion
Tryton Release 6.8
Authors: @dave @pokoli @udono We are very proud to announce the 6.8 release of Tryton. In this release there are many bug fixes, behaviour and performance improvements and plenty of other small enhancements. There are also three new modules. You can…
Programiz: Python List
Link: https://www.programiz.com/python-programming/list
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items and other list operations) with the help of examples.
Link: https://www.programiz.com/python-programming/list
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items and other list operations) with the help of examples.
Programiz
Python List (With Examples)
Python lists store multiple data together in a single variable. In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
Real Python: Publishing Python Packages to PyPI
Link: https://realpython.com/courses/pypi-publish-python-package/
PyPI is the public hosting service where open-source Python packages live.
When you pip install a package, that’s where it fetches it from. In this course,
you’ll learn all about the structures of a p
Link: https://realpython.com/courses/pypi-publish-python-package/
PyPI is the public hosting service where open-source Python packages live.
When you pip install a package, that’s where it fetches it from. In this course,
you’ll learn all about the structures of a p
Realpython
Publishing Python Packages to PyPI – Real Python
In this video course, you’ll learn how to create a Python package for your project and how to publish it to PyPI, the Python Package Index. Quickly get up to speed on everything from naming your package to configuring it using setup.cfg.
Python for Beginners: Python Finally Keyword and Uses
Link: https://www.pythonforbeginners.com/basics/python-finally-keyword-and-uses
We use try-except blocks to perform exception handling in Python. This article discusses how you can use the Python finally block along with try-except statements for resource handling and better exec
Link: https://www.pythonforbeginners.com/basics/python-finally-keyword-and-uses
We use try-except blocks to perform exception handling in Python. This article discusses how you can use the Python finally block along with try-except statements for resource handling and better exec
PythonForBeginners.com
Python Finally Keyword and Uses - PythonForBeginners.com
Python Finally Keyword and Uses will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
PyCoder’s Weekly: Issue #575 (May 2, 2023)
Link: https://pycoders.com/issues/575
#575 – MAY 2, 2023 View in Browser » Python Classes: The Power of Object-Oriented Programming In this tutorial, you’ll learn how to create and use full-featured classes in your Python code. Clas
Link: https://pycoders.com/issues/575
#575 – MAY 2, 2023 View in Browser » Python Classes: The Power of Object-Oriented Programming In this tutorial, you’ll learn how to create and use full-featured classes in your Python code. Clas
Pycoders
PyCoder’s Weekly | Issue #575
Issue #575 of the PyCoder’s Weekly newsletter, published May 2, 2023.
Lucas Cimon: Pylint strict base configuration
Link: https://chezsoi.org/lucas/blog/pylint-strict-base-configuration.html
Pylint is a great static code analyser for Python code.
I have been using it for several years, in various projects, and it's simple to use yet very powerful.
I even contributed to Pylint by submitti
Link: https://chezsoi.org/lucas/blog/pylint-strict-base-configuration.html
Pylint is a great static code analyser for Python code.
I have been using it for several years, in various projects, and it's simple to use yet very powerful.
I even contributed to Pylint by submitti
Ludochaordic
Pylint strict base configuration
Pylint is a great static code analyser for Python code. I have been using it for several years, in various projects, and it's simple to use yet very powerful. I even contributed to Pylint by submitting a new rule a few years ago : implicit-str-concat. For…
Django Weblog: Django security releases issued: 4.2.1, 4.1.9, and 3.2.19
Link: https://www.djangoproject.com/weblog/2023/may/03/security-releases/
In accordance with our security release policy, the Django team
is issuing
Django 4.2.1,
Django 4.1.9, and
Django 3.2.19.
These releases addresses the security issue detailed below. We encourage all
u
Link: https://www.djangoproject.com/weblog/2023/may/03/security-releases/
In accordance with our security release policy, the Django team
is issuing
Django 4.2.1,
Django 4.1.9, and
Django 3.2.19.
These releases addresses the security issue detailed below. We encourage all
u
Django Project
Django security releases issued: 4.2.1, 4.1.9, and 3.2.19
Posted by Mariusz Felisiak on May 3, 2023
Real Python: Efficient String Concatenation in Python
Link: https://realpython.com/python-string-concatenation/
String concatenation is a common operation in programming. It involves joining two or more strings to create a single new string. You’ll find several tools and techniques for concatenating strings in
Link: https://realpython.com/python-string-concatenation/
String concatenation is a common operation in programming. It involves joining two or more strings to create a single new string. You’ll find several tools and techniques for concatenating strings in
Realpython
Efficient String Concatenation in Python – Real Python
In this tutorial, you'll learn how to concatenate strings in Python. You'll use different tools and techniques for string concatenation, including the concatenation operators and the .join() method. You'll also explore other tools that can also be handy for…
Ned Batchelder: PyCon 2023 keynote
Link: https://nedbatchelder.com/blog/202305/pycon_2023_keynote.html
A few weeks ago, I had the pleasure of delivering the opening keynote at
PyCon 2023. I’ve put up a text-and-slides version of the presentation:
People: The API User’s Guide. The video is not yet ava
Link: https://nedbatchelder.com/blog/202305/pycon_2023_keynote.html
A few weeks ago, I had the pleasure of delivering the opening keynote at
PyCon 2023. I’ve put up a text-and-slides version of the presentation:
People: The API User’s Guide. The video is not yet ava
Nedbatchelder
PyCon 2023 keynote
I gave a keynote at PyCon 2023!
Python GUIs: PyQt6 Book: 파이썬과 Qt6로 GUI 애플리케이션 만들기
Link: https://www.pythonguis.com/blog/pyqt6-book-translated-korean/
I am very happy to announce that my Python GUI programming book
Create GUI Applications with Python & Qt6 / PyQt6 Edition is now available
in Korean from Acorn Publishing
It's more than a little mind-
Link: https://www.pythonguis.com/blog/pyqt6-book-translated-korean/
I am very happy to announce that my Python GUI programming book
Create GUI Applications with Python & Qt6 / PyQt6 Edition is now available
in Korean from Acorn Publishing
It's more than a little mind-
Python GUIs
PyQt6 Book: 파이썬과 Qt6로 GUI 애플리케이션 만들기
The hands-on guide to creating GUI applications with Python gets a new translation. I am very happy to announce that my Python GUI programming book Create GUI Applications with Python & Qt6 / PyQt6 Edition is now available in Korean from <a href=
CodersLegacy: TQDM: Tracking the Progress of your Python Program
Link: https://coderslegacy.com/tqdm-tracking-the-progress-of-your-python-program/
TQDM is a Python library that stands for “progress” in Arabic. As the name implies, it is an excellent tool for tracking the progress of long-running loops and code execution, giving you insights into
Link: https://coderslegacy.com/tqdm-tracking-the-progress-of-your-python-program/
TQDM is a Python library that stands for “progress” in Arabic. As the name implies, it is an excellent tool for tracking the progress of long-running loops and code execution, giving you insights into
CodersLegacy
TQDM: Tracking the Progress of your Python Program
In this Python tutorial, we will explore the use of TQDM, how to use it, and the extra configuration options that are available.
Python Engineering at Microsoft: Python in Visual Studio Code – May 2023 Release
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-may-2023-release/
We’re excited to announce that the May 2023 release of the Python and Jupyter extensions for Visual Studio Code are now available!
This release includes the following announcements:
Jupyter extension
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-may-2023-release/
We’re excited to announce that the May 2023 release of the Python and Jupyter extensions for Visual Studio Code are now available!
This release includes the following announcements:
Jupyter extension
Microsoft News
Python in Visual Studio Code – May 2023 Release
The May 2023 release of the Python and Jupyter extensions for Visual Studio Code are now available. In this release, Jupyter is no longer installed alongside the Python extension, microvenv support was added for the Create Environment command, new automatic…
Test and Code: 199: Is Azure Right for a Side Project?
Link: https://testandcode.com/199
For a web side project to go from "working on desktop" to "live in the cloud", one decision that needs to be made is where to host everything. One option is Microsoft Azure. Lots of corporate sites us
Link: https://testandcode.com/199
For a web side project to go from "working on desktop" to "live in the cloud", one decision that needs to be made is where to host everything. One option is Microsoft Azure. Lots of corporate sites us
Test & Code
Test & Code 199: Is Azure Right for a Side Project?
For a web side project to go from "working on desktop" to "live in the cloud", one decision that needs to be made is where to host everything. One option is Microsoft Azure. Lots of corporate sites use it. Is it right for side projects?
John Ludhi/nbshare.io: How to Generate Embeddings from a Server and Index Them Using FAISS with API
Link: https://www.nbshare.io/notebook/384206537/How-to-Generate-Embeddings-from-a-Server-and-Index-Them-Using-FAISS-with-API/
How to Generate Embeddings from a Server and Index Them Using FAISS, with API
IntroductionIn this blog post, we will demonstrate how to set up a simple server for generating embeddings
Link: https://www.nbshare.io/notebook/384206537/How-to-Generate-Embeddings-from-a-Server-and-Index-Them-Using-FAISS-with-API/
How to Generate Embeddings from a Server and Index Them Using FAISS, with API
IntroductionIn this blog post, we will demonstrate how to set up a simple server for generating embeddings