This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
""" | |
Find GLS Packages if you only have a rough range/idea of the tracking ID | |
""" | |
import requests | |
import datetime | |
import json | |
from time import sleep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import requests | |
import sys | |
import xml.etree.ElementTree as ET | |
import datetime | |
# ICECAST RELATED CONSTANTS | |
STATS_URL = "http://<URL>" | |
ICECAST_USER = "<USER>" |