Skip to content

Latest commit

 

History

History

webconverter

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Unit Converter

T.B.D.

User Documentation

T.B.D.

Features

T.B.D.

User Interaction

T.B.D.

Installation

Make sure you have Python 3.12 or newer installed on your system. Please note that the commands in the next chapters use python but your system may require you to type python3 instead.

For Users

  • Choose your installation folder and open it in a terminal emulator (a.k.a. command line) running cmd, powershell, bash, zsh or other sh-like shell.
  • Clone the GitHub repository
    git clone https://github.com/slacker-by-design/python_etudes
    If you don't have git installed, go back to the python_etudes GitHub repository page and download it as a zip archive file. Then extract its contents to an installation folder of your choice.
  • T.B.D. (install...)
  • Run the converter
    python -m webconverter

For Developers

  • Choose your installation folder and clone the GitHub repository into it
  • Create a Python virtual environment
    cd webconverter
    python -m venv venv
  • Activate the virtual environment
    • Linux & macOS
      source venv/bin/activate    
    • Windows Powershell
      .\venv\Scripts\Activate.ps1
    • Windows CMD
      venv\scripts\activate.bat
  • Install the webconverter package as editable
    python -m pip install -e .

Running Tests

  • Make sure the pytest package is installed in your virtual environment The command
    python -m pip list
    should show a list of installed packages including webconverter and pytest. In case pytest is missing, install it by typing
    python -m pip install ".[test]"
  • Run the tests
    python -m pytest

Additional Information

Here's few more bits and pieces, which may be useful... T.B.D.

License

MIT License