Metadata-Version: 2.1
Name: Blackboard-LMS-CLI
Version: 0.0.2
Summary: A command-line tool suite for communicating with the Blackboard Learn Managment System
Home-page: https://gitlab.stud.idi.ntnu.no/mattiaae/idatt2900-072
Author: Hans William Forebrigd, Mattias Aggentoft Eggen, Magnus Bredeli
Author-email: hansw0701@gmail.com, mattias.a.eggen@gmail.com, magnus.bredeli@hotmail.com
License: Willyeh Wonkmeh 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: Click
Requires-Dist: anytree
Requires-Dist: beautifulsoup4
Requires-Dist: colorama
Requires-Dist: html2text
Requires-Dist: lxml (>=4.8.0)
Requires-Dist: python-dateutil
Requires-Dist: python-dotenv
Requires-Dist: python-magic
Requires-Dist: requests

# IDATT2900-072

to run the tests:
`python -m pytest tests`

## To download the project and install all the requirements
### 1. git clone project:

**With SSH:**

`git clone git@gitlab.stud.idi.ntnu.no:mattiaae/idatt2900-072.git`

`cd idatt2900-072`


**With HTTPS:**

`git clone https://gitlab.stud.idi.ntnu.no/mattiaae/idatt2900-072.git`

`cd idatt2900-072`


### 2. Install the virtual environement inside the project folder
`python -m venv ./venv` **OR** `python3 -m venv ./venv`

`source ./venv/bin/activate`


### 3. Install all the requirements
`python -m pip install -r requirements.txt`

### 4. To chech that it is successfully installed, check the version 
`python -m bbcli --version`

### 5. Run the tests
`python -m pytest test`

### 6. Setup the bbcli script inside the root of the project
`pip install --editable .` **OR** `pip3 install --editable .`



