Tutorials

Tutorials

61 bookmarks
Custom sorting
Creating Web APIs with Python and Flask
Creating Web APIs with Python and Flask
Learn how to set up a basic Application Programming Interface (API) to make your data more accessible to users. This lesson also discusses principles of API design and the benefits of APIs for d...
·programminghistorian.org·
Creating Web APIs with Python and Flask
Download Youtube video to mp3 with Python
Download Youtube video to mp3 with Python
I often need to download videos from Youtube in mp3 format. There are many websites where you can co...
·dev.to·
Download Youtube video to mp3 with Python
ml-tooling/opyrator
ml-tooling/opyrator
🪄 Turns your machine learning code into microservices with web API, interactive GUI, and more. - ml-tooling/opyrator
·github.com·
ml-tooling/opyrator
Beautiful Soup: Build a Web Scraper With Python – Real Python
Beautiful Soup: Build a Web Scraper With Python – Real Python
In this tutorial, you'll walk through the main steps of the web scraping process. You'll learn how to write a script that uses Python's requests library to scrape data from a website. You'll also use Beautiful Soup to extract the specific pieces of information that you're interested in.
·realpython.com·
Beautiful Soup: Build a Web Scraper With Python – Real Python
How to create a Python package in 2022
How to create a Python package in 2022
How do you create a Python package? How do you set up automated testing and code coverage? How do you publish the package? That's what this article...
·mathspp.com·
How to create a Python package in 2022
WebAssembly with Python
WebAssembly with Python
Python language is one of the most accessible programming languages available as it has simplified...
·wasm.builders·
WebAssembly with Python
Björn Ricks
Björn Ricks
Context Manager Tutorials
·bjoernricks.github.io·
Björn Ricks
How to Catch Multiple Exceptions in Python – Real Python
How to Catch Multiple Exceptions in Python – Real Python
In this how-to tutorial, you'll learn different ways of catching multiple Python exceptions. You'll review the standard way of using a tuple in the except clause, but also expand your knowledge by exploring some other techniques, such as suppressing exceptions and using exception groups.
·realpython.com·
How to Catch Multiple Exceptions in Python – Real Python
Chat with your databases using LangChain
Chat with your databases using LangChain
The rise of Large Language Models (LLMs) has brought about a significant shift in technology, empowering developers to create applications…
·coinsbench.com·
Chat with your databases using LangChain
Merge multiple dictionaries and add items to a dictionary in Python | note.nkmk.me
Merge multiple dictionaries and add items to a dictionary in Python | note.nkmk.me
This article explains how to add a new item to a dictionary (dict) or update the value of an existing item in Python. It is also possible to merge multiple dictionaries.Add or update an item in the dictionary by specifying a key Merge multiple dictionaries: update(), {}, dict(), |, |= Add or update ...
·note.nkmk.me·
Merge multiple dictionaries and add items to a dictionary in Python | note.nkmk.me
Iterators and Iterables in Python: Run Efficient Iterations – Real Python
Iterators and Iterables in Python: Run Efficient Iterations – Real Python
In this tutorial, 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.
·realpython.com·
Iterators and Iterables in Python: Run Efficient Iterations – Real Python
Data Classes in Python 3.7+ (Guide) – Real Python
Data Classes in Python 3.7+ (Guide) – Real Python
Data classes are one of the new features of Python 3.7. With data classes you do not have to write boilerplate code to get proper initialization, representation and comparisons for your objects.
·realpython.com·
Data Classes in Python 3.7+ (Guide) – Real Python
How to Split a Python List or Iterable Into Chunks – Real Python
How to Split a Python List or Iterable Into Chunks – Real Python
This tutorial provides an overview of how to split a Python list into chunks. You'll learn several ways of breaking a list into smaller pieces using the standard library, third-party libraries, and custom code. You'll also split multidimensional data to synthesize an image with parallel processing.
·realpython.com·
How to Split a Python List or Iterable Into Chunks – Real Python
Introduction to Python’s logging library
Introduction to Python’s logging library
Logging is one of the best ways to keep track of what is going on inside your code while it is running. Python comes with a very powerful logging library but with great power… things start to get a bit complicated.
·rmcomplexity.com·
Introduction to Python’s logging library
Primer on Python Decorators – Real Python
Primer on Python Decorators – Real Python
In this introductory tutorial, we'll look at what Python decorators are and how to create and use them.
·realpython.com·
Primer on Python Decorators – Real Python
Pytest for Beginners
Pytest for Beginners
This article looks at the very basics of using pytest for testing Python code.
·testdriven.io·
Pytest for Beginners