Modern Python Projects Transcripts
Chapter: Let's build a package
Lecture: Let's build a Python package
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
Now that we build a CLI tool to check the status of websites, we are going to turn it into a Python package and distributed to the pypi
0:10
server. We could do this with poetry and be done in a few seconds simply by running poetry build and poetry published.
0:18
But I want to take a different approach, this time since not everyone wants to use
0:22
a tool like poetry. This time we will rebuild our project from scratch without poetry
0:27
Ofcourse, I will copy most of the code test and the documentation, so you don't have to see me typing the same stuff again.
0:35
But the way we create and manage our project will be different.