Explore >> Select a destination


You are here

blog.randombits.host
| | blog.meain.io
6.9 parsecs away

Travel
| | How to publish a console application to pypi
| | yasoob.me
9.6 parsecs away

Travel
| | Hi there fellow coders. This post will go over the basics of packaging and deploying your python libraries. So without wasting a minute lets get started.. Folder structure So first thing first. What should be your folder structure? At minimum you can have only two files. The first one should be the setup.py file and the second one should be your module file. But today I am not going to talk about the very basics.
| | wittchen.io
6.2 parsecs away

Travel
| | Introduction I have my own tiny Python project called spotify-cli-linux, which is (surprise!) command line interface for Spotify desktop app on Linux. Python is not my primary programming language and I work more with Java. Nevertheless, I find this language enjoyable and useful in many cases, so I try to learn something new about it from time to time. In the beginning, I've provided instructions how to install my Python script in the system via curl and wget, which is fine, but it's not recommended and ...
| | janakiev.com
59.4 parsecs away

Travel
| Python's built-in venv module makes it easy to create virtual environments for your Python projects. Virtual environments are isolated spaces where your Python packages and their dependencies live. This means that each project can have its own dependencies, regardless of what other projects are doing.