Skip to content

Jaha96/python_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Your Project Title

This is example README.md file for a typical Python project. It is a good idea to include the following sections in your README.md file. Put your project description here.

Requirements

  • Python 3.8+
  • pip 23.0+

Installation

To setup environment and install the project dependencies run:

  1. Create a virtual environment:

    python -m venv .venv
  2. Activate the virtual environment (Linux/Mac):

    source .venv/bin/activate

    On Windows:

    .\.venv\Scripts\activate
  3. Upgrade pip to the latest version:

    python -m pip install --upgrade pip
  4. Check the pip version:

    pip --version  # Example: pip 23.0.1
  5. Check the Python version:

    python --version  # Example: Python 3.8.3
  6. Install the required packages from requirements.txt:

    pip install -r requirements.txt

Usage

Run the script with the following command:

put your command here

Command line arguments

Below is the example of the command line arguments that can be used with the script.

  • --help
    • Type: boolean
    • Optional: True
    • Description: Show the help message and exit

Example usage

put your example commands here

Unit Test

To run unit tests, use the following command:

coverage run

Use coverage report to report on the results:

coverage report

For a nicer presentation, use coverage html to get annotated HTML listings detailing missed lines:

coverage html

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages