This repository contains a collection of mini tools built with Python.
A simple implementation of the cat command in Python.
- Name: Trifalic47
- GitHub Profile: github.com/Trifalic47
- Website: trifalic.github.io
You need to configure an venv(virtual enviornment) to run these python projects.So run this command to make an venv called venv.
python3 -m venv venvOn macOS and Linux:
source venv/bin/activateOn Windows:
.\\venv\\Scripts\\activateTo install the required dependencies, run the following command after activating the virtual environment:
pip install -r requirements.txt