27 lines
409 B
Markdown
27 lines
409 B
Markdown
![]() |
# Moodle Scraper
|
||
|
## Installation
|
||
|
|
||
|
### Windows
|
||
|
```bash
|
||
|
python -m venv .venv
|
||
|
.venv\Scripts\activate
|
||
|
```
|
||
|
|
||
|
### MacOS/Linux
|
||
|
```bash
|
||
|
python -m venv .venv
|
||
|
source .venv/bin/activate
|
||
|
```
|
||
|
|
||
|
```bash
|
||
|
pip install -r requirements.txt
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
1. Make a .env file in which you specify the path to save the files and the username and password for your moodle account.
|
||
|
|
||
|
2. Run the program with:
|
||
|
```bash
|
||
|
python main.py
|
||
|
```
|