Explore >> Select a destination


You are here

blog.meain.io
| | yasha.solutions
8.8 parsecs away

Travel
| | Goal Setup a basic command line package in python. Package Git: https://github.com/pallets/click/ Doc: https://click.palletsprojects.com/ Let's get to it Create a virtual environnement. 1 2 python -m venv my_env . my_env/bin/activate Then the setup.py file: (require setuptools) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 from setuptools import setup setup( name='myapp', version='1.0', py_modules=['myapp'], install_requires=[ 'Click', ], entry_points=""" [console_scripts] myapp=myapp:cli """, ) and the myapp.
| | blog.randombits.host
6.9 parsecs away

Travel
| | PyPi - The Python Package IndexI love Python. It's easy to read, even easier to write, and best of all, the easiest language (I've used) to interact with other people's code. I spent too long being only on one end of that equation though, only consuming code other people have
| | dustingram.com
7.5 parsecs away

Travel
| | The best way to render your project's description as Markdown on PyPI
| | initialcommit.com
51.2 parsecs away

Travel
| Google is notorious for asking hard interview questions, their coding challenges, and solving problems on a whiteboard. Software Engineers from Google are often the most smartest Engineers in the world, able to solve the hardest interview questions for Software Engineering.