Naveen Kumar Konamadaptivecoder.hashnode.dev·May 22, 2023Python Modules and PackagesEssentially, every Python file is a module that can be imported into other files or modules. Modules can contain definitions, statements, functions or classes. Modules allow code to be reused. In Python, Packages are a collection of modules and are u...74 readsProgramming With PythonPython
Nikhil Akkinikhilakki.in·Apr 29, 2023How to bundle your Python app as a pip package & upload to PyPi?In this post, we are going to look at the Python tool called Flit and we are going to publish our very own Daily Jokes generator CLI app. Jokes Daily is a simple app using native Python std library (and nothing else) to fetch jokes from jokeapi.dev. ...218 readsPython DevelopmentPython