mirror of
https://github.com/peter-tanner/Blackboard-marks.git
synced 2024-11-30 11:40:16 +08:00
12 lines
292 B
Python
Executable File
12 lines
292 B
Python
Executable File
import os
|
|
from pathlib import Path
|
|
|
|
BASE_URL = "https://lms.uwa.edu.au" # Include protocol.
|
|
|
|
DL_DIR = os.getcwd() + os.path.sep + "tmp" + os.path.sep
|
|
Path(DL_DIR).mkdir(parents=True, exist_ok=True)
|
|
|
|
SAVE_DIR = "grades_2024-07-23_B"
|
|
|
|
URL_LIST = SAVE_DIR + os.path.sep + "URLS.txt"
|