This is an iOS scriptable widget which shows the mobile data usage.
- show percentage and actual usage
- show a status bar with an extrapolated bar to see how much you could use to have the remaining days in month each day the same data available
from jinja2 import Environment, compiler, nodes | |
from jinja2.compiler import Frame | |
import re | |
env = Environment() | |
class Template: | |
def __init__(self, template_str: str) -> None: | |
# escape block statements |