mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-11 15:49:01 +00:00
12 lines
No EOL
228 B
Python
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() |