File size: 1,434 Bytes
cb87cf5
 
 
 
 
726017c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cb87cf5
 
 
 
 
 
 
726017c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import datetime as DT
import pytz
import streamlit as st


FONTS = [
    # "Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900",
    # "Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900",
    # "Raleway:ital,wght@0,100..900;1,100..900",
    # "Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900",
    # "Nunito:ital,wght@0,200..1000;1,200..1000",
    # "Quicksand:[email protected]",
    "Montserrat:ital,wght@0,100..900;1,100..900",
    # "Edu+AU+VIC+WA+NT+Dots:[email protected]",
    "Whisper",
    # "Merienda:[email protected]",
    "Playwrite+DE+Grund:[email protected]",
    # "Roboto+Slab:[email protected]",
    # "Open+Sans:ital,wght@0,300..800;1,300..800",
    # "Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000",
    # "Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700",
]


def __nowInIST() -> DT.datetime:
    return DT.datetime.now(pytz.timezone("Asia/Kolkata"))


def pprint(log: str):
    now = __nowInIST()
    now = now.strftime("%Y-%m-%d %H:%M:%S")
    print(f"[{now}] [{st.session_state.ipAddress}] {log}")


def getFontsUrl():
    baseLink = "https://fonts.googleapis.com/css2"
    params = "&".join([f"family={font}" for font in FONTS])
    params = f"{params}&display=swap"
    fontsUrl = f"{baseLink}?{params}"
    # pprint(f"{fontsUrl=}")
    return fontsUrl