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.
TechBeamers Python: Understanding LangChain: A Guide for Beginners
Link: https://www.techbeamers.com/langchain/
LangChain is a toolkit for building apps powered by large language models like GPT-3. Think of it as Legos for AI apps – it simplifies connecting these powerful models to build things like text genera
Link: https://www.techbeamers.com/langchain/
LangChain is a toolkit for building apps powered by large language models like GPT-3. Think of it as Legos for AI apps – it simplifies connecting these powerful models to build things like text genera
TechBeamers
Python LangChain: A Getting Started Guide
LangChain is a toolkit for building apps powered by large language models like GPT-3. Today, we’ll see how to create a simple LangChain program in Python. Think of LangChain as Legos for AI apps – it…
Ned Batchelder: Randomly sub-setting test suites
Link: https://nedbatchelder.com/blog/202401/randomly_subsetting_test_suites.html
I needed to run random subsets of my test suite to narrow down the cause of
some mysterious behavior. I didn’t find an existing tool that worked the way I
wanted to, so I cobbled something together.I
Link: https://nedbatchelder.com/blog/202401/randomly_subsetting_test_suites.html
I needed to run random subsets of my test suite to narrow down the cause of
some mysterious behavior. I didn’t find an existing tool that worked the way I
wanted to, so I cobbled something together.I
Nedbatchelder
Randomly sub-setting test suites
I needed to run random subsets of my test suite to narrow down the cause of some mysterious behavior. I didn’t find an existing tool that worked the way I wanted to, so I cobbled something together.
Chris Moffitt: Introduction to Polars
Link: https://pbpython.com/polars-intro.html
Introduction
It’s been a while since I’ve posted anything on the blog. One of the primary reasons for the
hiatus is that I have been using python and pandas but not to do anything very new or differe
Link: https://pbpython.com/polars-intro.html
Introduction
It’s been a while since I’ve posted anything on the blog. One of the primary reasons for the
hiatus is that I have been using python and pandas but not to do anything very new or differe
Pbpython
Introduction to Polars
Introduction to polars.
Python GUIs: Plotting With PyQtGraph — Create Custom Plots in PyQt with PyQtGraph
Link: https://www.pythonguis.com/tutorials/plotting-pyqtgraph/
One of the major fields where Python shines is in data science. For data exploration and cleaning, Python has many powerful tools, such as pandas and polar. For visualization, Python has Matplotlib.
W
Link: https://www.pythonguis.com/tutorials/plotting-pyqtgraph/
One of the major fields where Python shines is in data science. For data exploration and cleaning, Python has many powerful tools, such as pandas and polar. For visualization, Python has Matplotlib.
W
Python GUIs
Plotting in PyQt - Using PyQtGraph to create interactive plots in your GUI apps
Extend your PyQt5 GUIs with dynamic plotting using PyQtGraph. This tutorial teaches you how to create interactive and customizable plots, and enhance your applications with real-time data visualization. One of the major fields where Python shines is in data…
Zato Blog: Network packet brokers and automation in Python
Link: https://zato.io/en/blog/network-packet-broker-automation-python.html
Network packet brokers and automation in Python
2024-01-15, by Dariusz Suchojad
Packet brokers are crucial for network engineers, providing a clear, detailed view of network traffic,
aiding in
Link: https://zato.io/en/blog/network-packet-broker-automation-python.html
Network packet brokers and automation in Python
2024-01-15, by Dariusz Suchojad
Packet brokers are crucial for network engineers, providing a clear, detailed view of network traffic,
aiding in
PyCharm: Join the Livestream: “Python, Django, PyCharm, and More”
Link: https://blog.jetbrains.com/pycharm/2024/01/join-the-livestream-python-django-pycharm-and-more/
Join us for the new PyCharm Livestream episode to learn about everything new in the world of Python on January 25 at 4:00 pm UTC.
We will be chatting with Helen Scott, Jodie Burchell, Sarah Boyce, Mu
Link: https://blog.jetbrains.com/pycharm/2024/01/join-the-livestream-python-django-pycharm-and-more/
Join us for the new PyCharm Livestream episode to learn about everything new in the world of Python on January 25 at 4:00 pm UTC.
We will be chatting with Helen Scott, Jodie Burchell, Sarah Boyce, Mu
The JetBrains Blog
Join the Livestream: "Python, Django, PyCharm, and More" | The PyCharm Blog
Join us for the new PyCharm Livestream episode to learn about everything new in the world of Python on January 25 at 4:00 pm UTC.
PyPy: PyPy v7.3.15 release
Link: https://www.pypy.org/posts/2024/01/pypy-v7315-release.html
PyPy v7.3.15: release of python 2.7, 3.9, and 3.10
The PyPy team is proud to release version 7.3.15 of PyPy.
This is primarily a bug-fix release, and includes work done to migrate PyPy to
Git and Gith
Link: https://www.pypy.org/posts/2024/01/pypy-v7315-release.html
PyPy v7.3.15: release of python 2.7, 3.9, and 3.10
The PyPy team is proud to release version 7.3.15 of PyPy.
This is primarily a bug-fix release, and includes work done to migrate PyPy to
Git and Gith
PyPy
PyPy v7.3.15 release
PyPy v7.3.15: release of python 2.7, 3.9, and 3.10
The PyPy team is proud to release version 7.3.15 of PyPy.
This is primarily a bug-fix release, and includes work done to migrate PyPy to
Git and Gith
The PyPy team is proud to release version 7.3.15 of PyPy.
This is primarily a bug-fix release, and includes work done to migrate PyPy to
Git and Gith
PyCharm: How to Connect Django With MongoDB
Link:
One of the most popular web frameworks, Django, has adopted the “batteries included” philosophy. This means that you can build a production-ready application using only the vanilla Django with no exte
Link:
One of the most popular web frameworks, Django, has adopted the “batteries included” philosophy. This means that you can build a production-ready application using only the vanilla Django with no exte
Real Python: Inheritance and Composition: A Python OOP Guide
Link: https://realpython.com/inheritance-composition-python/
In this tutorial, you’ll explore inheritance and composition in Python. Inheritance and composition are two important concepts in object-oriented programming that model the relationship between two cl
Link: https://realpython.com/inheritance-composition-python/
In this tutorial, you’ll explore inheritance and composition in Python. Inheritance and composition are two important concepts in object-oriented programming that model the relationship between two cl
Realpython
Inheritance and Composition: A Python OOP Guide – Real Python
In this step-by-step tutorial, you'll learn about inheritance and composition in Python. You'll improve your object-oriented programming (OOP) skills by understanding how to use inheritance and composition and how to leverage them in their design.
Django Weblog: DjangoCon Europe 2025 Call for Proposals
Link: https://www.djangoproject.com/weblog/2024/jan/15/djangocon-europe-2025-call-for-proposals/
DjangoCon Europe 2024 will be held June 5th-9th in Vigo, Spain but we're already looking ahead to the 2025 conference. Could your town - or your football stadium, circus tent, private island or city h
Link: https://www.djangoproject.com/weblog/2024/jan/15/djangocon-europe-2025-call-for-proposals/
DjangoCon Europe 2024 will be held June 5th-9th in Vigo, Spain but we're already looking ahead to the 2025 conference. Could your town - or your football stadium, circus tent, private island or city h
Django Project
DjangoCon Europe 2025 Call for Proposals
Posted by Chaim Kirby on January 15, 2024
TechBeamers Python: Create a Full-fledged LangChain App – A ChatBot
Link: https://www.techbeamers.com/langchain-chatbot/
In this tutorial, we have provided the basic code to create the LangChain chatbot app. You’ll find a comprehensive example, instructions, and guidance to help you. Also Read: Introduction to LangChain
Link: https://www.techbeamers.com/langchain-chatbot/
In this tutorial, we have provided the basic code to create the LangChain chatbot app. You’ll find a comprehensive example, instructions, and guidance to help you. Also Read: Introduction to LangChain
TechBeamers
Create a Full-fledged LangChain App - A ChatBot
This tutorial helps you create a basic LangChain ChatBot, provides sample code that you can enhance further to make it more effective app.
Chris Warrick: Python Packaging, One Year Later: A Look Back at 2023 in Python Packaging
Link: https://chriswarrick.com/blog/2024/01/15/python-packaging-one-year-later/
A year ago, I wrote about the sad state of Python packaging. The large number of tools in the space, the emphasis on writing vague standards instead of rallying around the One True Tool, and the compl
Link: https://chriswarrick.com/blog/2024/01/15/python-packaging-one-year-later/
A year ago, I wrote about the sad state of Python packaging. The large number of tools in the space, the emphasis on writing vague standards instead of rallying around the One True Tool, and the compl
Chris Warrick
Python Packaging, One Year Later: A Look Back at 2023 in Python Packag
Are there still fourteen tools, or are there even more? Has Python packaging improved in a year?
Seth Michael Larson: urllib3 is fundraising for HTTP/2 support
Link: http://sethmlarson.dev/urllib3-is-fundraising-for-http2-support?date=2024-01-16
urllib3 is fundraising for HTTP/2 support
Link: http://sethmlarson.dev/urllib3-is-fundraising-for-http2-support?date=2024-01-16
urllib3 is fundraising for HTTP/2 support
Seth Michael Larson
urllib3 is fundraising for HTTP/2 support
TLDR: urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support for 2023.
What is urllib3...
What is urllib3...
Python People: Pamela Fox - Teaching Python, Accessibility, and Tools
Link: https://pythonpeople.fm/episodes/pamela-fox
Pamela Fox is a Python Cloud Developer Advocate at Microsoft. Topics include:Girl Develop ItDjango GirlsGirls Who CodeTeaching a language vs teaching a toolWhat a dev advocate doesAccessibility (A11y)
Link: https://pythonpeople.fm/episodes/pamela-fox
Pamela Fox is a Python Cloud Developer Advocate at Microsoft. Topics include:Girl Develop ItDjango GirlsGirls Who CodeTeaching a language vs teaching a toolWhat a dev advocate doesAccessibility (A11y)
Python People
Python People | Pamela Fox - Teaching Python, Accessibility, and Tools
The Python community is awesome because of the people. Python People is a weekly podcast about getting to know the people who help make the Python community great.
It's less about the tech, and more about the people.
It's less about the tech, and more about the people.
Real Python: Create a Tic-Tac-Toe Python Game Engine With an AI Player
Link: https://realpython.com/courses/python-tic-tac-toe-ai/
A classic childhood game is tic-tac-toe, also known as naughts and crosses. It’s simple and enjoyable, and coding a version of it with Python is an exciting project for a budding programmer. Now, addi
Link: https://realpython.com/courses/python-tic-tac-toe-ai/
A classic childhood game is tic-tac-toe, also known as naughts and crosses. It’s simple and enjoyable, and coding a version of it with Python is an exciting project for a budding programmer. Now, addi
Realpython
Create a Tic-Tac-Toe Python Game Engine With an AI Player – Real Python
In this video course, you'll create a universal game engine in Python for tic-tac-toe with two computer players, one of which will be an AI player using the powerful minimax algorithm. You'll give your game library a text-based graphical interface and explore…
PyCoder’s Weekly: Issue #612 (Jan. 16, 2024)
Link: https://pycoders.com/issues/612
#612 – JANUARY 16, 2024 View in Browser » Exploring Python in Excel Are you interested in using your Python skills within Excel? Would you like to share a data science project or visualization a
Link: https://pycoders.com/issues/612
#612 – JANUARY 16, 2024 View in Browser » Exploring Python in Excel Are you interested in using your Python skills within Excel? Would you like to share a data science project or visualization a
Pycoders
PyCoder’s Weekly | Issue #612
Issue #612 of the PyCoder’s Weekly newsletter, published Jan. 16, 2024.
Python Engineering at Microsoft: Join us for AI Chat App Hack from Jan. 29 – Feb.12
Link: https://devblogs.microsoft.com/python/ai-chat-app-hack/
Over the past six months, we’ve met hundreds of developers that are using Python to build AI chat apps for their own knowledge domains, using the RAG (Retrieval Augmented Generation) approach to send
Link: https://devblogs.microsoft.com/python/ai-chat-app-hack/
Over the past six months, we’ve met hundreds of developers that are using Python to build AI chat apps for their own knowledge domains, using the RAG (Retrieval Augmented Generation) approach to send
Microsoft News
Join us for AI Chat App Hack from Jan. 29 – Feb.12
Join us for two weeks of live streams with Microsoft experts, and learn to build AI RAG chat apps to ask questions on your own data.
Python Bytes: #367 A New Cloud Computing Paradigm at Python Bytes
Link: https://pythonbytes.fm/episodes/show/367/a-new-cloud-computing-paradigm-at-python-bytes
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://world.hey.com/dhh/we-have-left-the-cloud-251760fb"><strong>Leaving the cloud</strong></a></li>
<li><a href="https://pep
Link: https://pythonbytes.fm/episodes/show/367/a-new-cloud-computing-paradigm-at-python-bytes
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://world.hey.com/dhh/we-have-left-the-cloud-251760fb"><strong>Leaving the cloud</strong></a></li>
<li><a href="https://pep
pythonbytes.fm
A New Cloud Computing Paradigm at Python Bytes
News and announcements from the Python community for the week of Jan 16th, 2024
Seth Michael Larson: Defending against the PyTorch supply chain attack PoC
Link: http://sethmlarson.dev/security-developer-in-residence-weekly-report-25?date=2024-01-17
Defending against the PyTorch supply chain attack PoC
Link: http://sethmlarson.dev/security-developer-in-residence-weekly-report-25?date=2024-01-17
Defending against the PyTorch supply chain attack PoC
Seth Michael Larson
Defending against the PyTorch supply chain attack PoC
This critical role would not be possible without funding from the OpenSSF Alpha-Omega project. Massive thank-you to Alpha-Omega for investing in the security of the Python ecosystem!
Last week...
Last week...