start new:
tmux
start new with session name:
tmux new -s myname
#!/usr/bin/env python3 | |
import urllib.parse | |
from enum import Enum | |
from typing import List | |
import requests | |
BASE_URL = "https://loadshedding.eskom.co.za/LoadShedding/" | |
USER_AGENT = "ZA_LOADSHEDDING/1.0 (github.com/rany2)" |