/python-template-2023

python template project

Primary LanguagePython


Python Template 2023

The purpose of this project is to use to play around. It uses pipenv and has its own requirements.txt

Clone this repo

  • with an empty folder
  • open terminal
  • please install git before you continue
  • write: git clone https://github.com/baylagas/python-template-2023.git then press enter

Install pipenv

pip install pipenv --user

Create a new virtual environment

pipenv shell

Install requirements

pipenv install -r requirements.txt

Usage: play around with your code

message = "hello world"
print(message)