Skip to content

Sebenta/python-shorts

Repository files navigation

Python Shorts

Table of Contents

About

Short code examples made in python

Getting Started and Execute

Prerequisites

Python

You need to have python installed.

To find out which version was used for each project, just consult the .tool-versions file.

I used the asdf version manager.
🚀 https://asdf-vm.com/
🚀 https://github.com/asdf-vm/asdf

Python plugin for asdf version manager.
🚀 https://github.com/danhper/asdf-python

(back to top)

Installing

Configure Python Virtual Environment:

Python Virtual Environments: A Primer

You must install the required libraries for each project, if necessary.

For that, just:

pip install -r requirements.txt

(back to top)