1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-11 15:49:01 +00:00
bramw_baserow/backend/font_test.py
Tsering Paljor b84a34906f WIP
2025-02-04 12:42:35 +04:00

12 lines
No EOL
228 B
Python

import requests
# resp len 1927
# in bytes: 490965
# url = "https://api.fontsource.org/v1/fonts"
# resp len 1809
# in bytes: 461842
url = "https://api.fontsource.org/v1/fonts?type=google"
resp = requests.get(url)
breakpoint()