5:53
Building Python wheels to distribute your programs
The "wheel" format in Python lets you bundle up and redistribute a Python package you've created. Others can then use the "pip" ...
4:48
Distributed File System using python 'rpyc' module with Threading and logging
Hi Everyone! This is my first python video on one of the projects I completed based on the distributed file system architecture like ...
7:17
Pyproject.toml: The modern Python project definition file, explained
Modern Python projects use pyproject.toml files to describe a project's metadata, dependencies, and other valuable attributes.
4:02
Convert Your EXE File into a Distributable Package in Python
In this Python training course, I will explain how to convert an exe to a distributable package in this tutorial.
20:28
How to Package and Publish Python Code the Right Way
Review code better and faster with my 3-Factor Framework: https://arjan.codes/diagnosis. Do you want to know how to build a ...
19:32
The Anatomy of Python Packages and pyproject.toml
This videos uncovers the idea of modules and packages, differentiating between them and creating a package to distribute using ...
21:10
Wheel Files: Packaging Python Applications & Modules
Today we learn about Python wheel files, which are the packaging format for Python applications and modules.
4:14
Create a One-File Executable in PySide6 Without Console: Distribute Your Python App Easily!
Want to distribute your PySide6 app as a single executable file without the annoying console window? In this tutorial, we'll walk ...
12:10
How to Create Setup File of Python Project | Python Tutorial | #video 51
Welcome to our comprehensive tutorial on creating a setup file for your Python project! If you've ever wondered how to package ...
6:56
Create and Distribute Excel Files using Python and Outlook | Automate Excel with Python
Explore All My Excel Solutions: https://pythonandvba.com/solutions DESCRIPTION ...
4:18
Using python sdist to create a package that includes generated files in the build directory
Download this code from https://codegive.com Creating a Python package with sdist (source distribution) is a common way to ...
9:56
Importing Your Own Python Modules Properly
Today we learn how to properly import your own Python modules and also what the __init__.py file is about.
11:38
How to Publish a Python Package to PyPI (pip)
Learn how to publish your own custom Python package to PyPI. This tutorial covers setting up the project, configuring the setup.py ...
38:01
Distributed file-systems made easy with Python's fsspec
Recorded at PyCon DE & PyData 2025, April 24, 2025 https://2025.pycon.de/program/DEHZHK/ Python's fsspec library ...
1:39
Distributed File Service using python
This consists of a server process and one or more clients. Each client will connect to the server over a socket. The server is able to ...
12:46
What does '__init__.py' do in Python?
Join my Free Newsletter: https://techwithtim.net/newsletter Get private mentorship from me: https://training.techwithtim.net If ...
2:13
How Packaging Works in Python?
In this video, we'll understand how Python decides whether a package should be a namespace or a regular package. Skip to the ...
2:10
How to turn your Python file (.py) into an .exe (Tutorial 2021)
Hey guys! How's it going? In this video I'll be showing you how to create a .exe in Pycharm using Python. Cool right? Let me know ...
4:25
What does the structure of a modern Python project look like?
Python projects that use modern tooling and standards work best when the files in the project repository follow a certain layout.
2:25
Python Distributing a file module into another package with setuptools
Download this code from https://codegive.com Setuptools is a widely used Python library for packaging and distribution.