DEV Community

Kelvin Wangonya
Kelvin Wangonya

Posted on • Originally published at wangonya.com

Setting up your development environment

In this post, we'll cover the very basics of working with Python and Click to create a CLI app. We'll install Python 3, set up our development environment, install Click, and create a hello-world app.

Python 3.x

Getting started with Python is easy. Most *nix systems come with Python pre-installed. We'll be using Python 3. To check which version of Python you have, open up your terminal and run python -V. You should get an output similar to this:

Python 2.7.10
Enter fullscreen mode Exit fullscreen mode

This means the default Python version installed on my computer is 2.7.10. Most Macs ship with Python 2 by default. If you got a 3.x.x, then you're good to go. After installing Python 3, running python3 -V outputs:

Python 3.7.3
Enter fullscreen mode Exit fullscreen mode

If you don't have Python installed, you can head over to python.org, download the appropriate installer for your system, and run it. This step is necessary if you're on Windows.

pip

pip is a package manager for Python. It allows us to install libraries and dependencies that we'll need to use for our project. It comes pre-installed with Python. To check if you have it, you can run pip -V or pip3 -V. You should see something like:

pip 19.0.3 from /usr/local/lib/python3.7/site-packages/pip (python 3.7)
Enter fullscreen mode Exit fullscreen mode

Virtualenv

When working on your Python projects, it's always a good idea to create isolated environments to work in. This is because different projects will require different dependencies or different versions of those dependencies. Installing these globally will be hard to manage and will just mess up your system. Installing them in a project's environment keeps things clean. There's a couple of options to deal with environments in Python but we'll focus on virtualenv.

We're going to create a new directory and create a virtual environment in it. On your terminal, run:

$ mkdir hello-world-cli && cd hello-world-cli
Enter fullscreen mode Exit fullscreen mode

The command above creates a new directory called hello-world-cli and enters that directory.

Next, we'll install virtualenv using pip and create our virtual environment.

$ pip3 install virtualenv
Enter fullscreen mode Exit fullscreen mode
$ virtualenv venv
Enter fullscreen mode Exit fullscreen mode

We now have a Python virtual environment in our directory. To use it, we need to activate it by running:

$ source venv/bin/activate
(venv) $
Enter fullscreen mode Exit fullscreen mode

You'll notice the change in your terminal prompt when the environment is activated. The environment name is prefixed at the prompt. That's how you know you're working in the environment.

Click

Now that we have our environment ready, we can start working on our project. Python provides a number of packages to help in creating CLI apps. We'll be using Click, so we need to install it to get started.

(venv) $ pip install Click
Enter fullscreen mode Exit fullscreen mode

That's all we need to get started.

Hello World!

As usual, we'll start off with a "Hello World!" program.

Still in the hello-world-cli directory, create a file called hello-world.py:

(venv) $ touch hello-world.py
Enter fullscreen mode Exit fullscreen mode

Open the file in your preferred text editor and add this code:

import click

@click.command()
def hello():
    click.echo('Hello World!')

if __name__ == '__main__':
    hello()
Enter fullscreen mode Exit fullscreen mode

Let's examine what's happening at each line.

import click
Enter fullscreen mode Exit fullscreen mode

Here, we import click so we can use it to create our commands.

@click.command()
Enter fullscreen mode Exit fullscreen mode

Whenever you see something on top of a function with an @ symbol in Python, that's a decorator. Without going into a lot of details on decorators, it's enough to understand (for now) that they simply modify the behavior of the functions they "decorate". Click uses the concept of decorators to convert Python functions into commands that can be directly executed through the terminal. The decorator here converts hello() into a command. We'll learn more about commands later.

def hello():
Enter fullscreen mode Exit fullscreen mode

This is how we define functions in Python.

    click.echo('Hello World')
Enter fullscreen mode Exit fullscreen mode

Calling hello() will run click.echo('Hello World') which displays the text "Hello World!" on the terminal.

if __name__ == '__main__':
Enter fullscreen mode Exit fullscreen mode

This is the main entry point of our script.

Despite commonly using this myself, I needed some help getting to know exactly what it did. Explanations online were overly complicated so I asked for some help from the awesome Dev community. You can follow the discussion in this post:

    hello()
Enter fullscreen mode Exit fullscreen mode

This invokes our function/command.

Ok, time to see the results. Save the file, go back to the terminal, and run the program:

(venv) $ python hello-world.py
Hello World!
Enter fullscreen mode Exit fullscreen mode

Congratulations on making it this far 🎉

We'll be doing more cool stuff in the next posts.

Practice exercise

I've edited the code a bit so that we're now passing the word "World!" to our hello() function in order to display "Hello World!" in full. Problem: The code is incomplete. See if you can complete it successfully.

import click

@click.command()
def hello():
    click.echo('Hello {}')

if __name__ == '__main__':
    hello("World!")
Enter fullscreen mode Exit fullscreen mode

Hint

Top comments (0)