Skip to content

Commit e791887

Browse files
committed
wip to download OpenSans fonts - could cause big diff
1 parent c1341fa commit e791887

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.circleci/download_google_fonts.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,25 @@ def download(repo, family, types) :
1010
req = requests.get(url, allow_redirects=True)
1111
open(dirOut + name, 'wb').write(req.content)
1212

13+
"""
14+
download(
15+
'https://github.com/googlefonts/opensans/blob/main/fonts/ttf/',
16+
'OpenSans',
17+
[
18+
'Bold',
19+
'BoldItalic',
20+
'ExtraBold',
21+
'ExtraBoldItalic',
22+
'Italic',
23+
'Light',
24+
'LightItalic',
25+
'Regular',
26+
'Semibold',
27+
'SemiboldItalic',
28+
]
29+
)
30+
"""
31+
1332
download(
1433
'https://github.com/google/fonts/blob/main/ofl/ptsansnarrow/',
1534
'PT_Sans-Narrow-Web',

0 commit comments

Comments
 (0)