content
stringlengths
1
103k
path
stringlengths
8
216
filename
stringlengths
2
179
language
stringclasses
15 values
size_bytes
int64
2
189k
quality_score
float64
0.5
0.95
complexity
float64
0
1
documentation_ratio
float64
0
1
repository
stringclasses
5 values
stars
int64
0
1k
created_date
stringdate
2023-07-10 19:21:08
2025-07-09 19:11:45
license
stringclasses
4 values
is_test
bool
2 classes
file_hash
stringlengths
32
32
import struct, warnings\n\ntry:\n import lz4\nexcept ImportError:\n lz4 = None\nelse:\n import lz4.block\n\n# old scheme for VERSION < 0.9 otherwise use lz4.block\n\n\ndef decompress(data):\n (compression,) = struct.unpack(">L", data[4:8])\n scheme = compression >> 27\n size = compression & 0x07FFFFFF...
.venv\Lib\site-packages\fontTools\ttLib\tables\grUtils.py
grUtils.py
Python
2,362
0.95
0.195652
0.013158
react-lib
817
2024-07-16T00:04:04.705687
GPL-3.0
false
e0dea9938b1a7b044abb45c9ebec4623
from ._g_v_a_r import table__g_v_a_r\n\n\nclass table_G_V_A_R_(table__g_v_a_r):\n gid_size = 3\n
.venv\Lib\site-packages\fontTools\ttLib\tables\G_V_A_R_.py
G_V_A_R_.py
Python
99
0.65
0.2
0
awesome-app
377
2024-05-15T09:30:24.366605
GPL-3.0
false
1d27684c7b1a9d43c4f358b492b93890
"""Methods for traversing trees of otData-driven OpenType tables."""\n\nfrom collections import deque\nfrom typing import Callable, Deque, Iterable, List, Optional, Tuple\nfrom .otBase import BaseTable\n\n\n__all__ = [\n "bfs_base_table",\n "dfs_base_table",\n "SubTablePath",\n]\n\n\nclass SubTablePath(Tuple[B...
.venv\Lib\site-packages\fontTools\ttLib\tables\otTraverse.py
otTraverse.py
Python
5,681
0.95
0.196319
0.022222
react-lib
908
2024-06-23T03:09:46.325068
MIT
false
344e3d9950400099f734b508a6edf438
This folder is a subpackage of ttLib. Each module here is a \nspecialized TT/OT table converter: they can convert raw data \nto Python objects and vice versa. Usually you don't need to \nuse the modules directly: they are imported and used \nautomatically when needed by ttLib.\n\nIf you are writing you own table conver...
.venv\Lib\site-packages\fontTools\ttLib\tables\table_API_readme.txt
table_API_readme.txt
Other
2,839
0.95
0.10989
0.2
awesome-app
502
2023-08-14T08:26:18.772815
Apache-2.0
false
84173ccc4db79684e24f82a4baefa482
"""ttLib.tables.ttProgram.py -- Assembler/disassembler for TrueType bytecode programs."""\n\nfrom __future__ import annotations\n\nfrom fontTools.misc.textTools import num2binary, binary2num, readHex, strjoin\nimport array\nfrom io import StringIO\nfrom typing import List\nimport re\nimport logging\n\n\nlog = logging.g...
.venv\Lib\site-packages\fontTools\ttLib\tables\ttProgram.py
ttProgram.py
Python
36,482
0.95
0.139731
0.033708
node-utils
831
2025-05-30T13:06:17.288314
BSD-3-Clause
false
d185e3eb66bc8eb9e2977b92d29cf81f
from . import asciiTable\n\n\nclass table_T_T_F_A_(asciiTable.asciiTable):\n """ttfautohint parameters table\n\n The ``TTFA`` table is used by the free-software `ttfautohint` program\n to record the parameters that `ttfautohint` was called with when it\n was used to auto-hint the font.\n\n See also http:...
.venv\Lib\site-packages\fontTools\ttLib\tables\T_T_F_A_.py
T_T_F_A_.py
Python
406
0.95
0.071429
0
react-lib
637
2024-10-18T03:02:53.200262
Apache-2.0
false
f0139b552fa820c3822cdb04d6235293
from .otBase import BaseTTXConverter\n\n\nclass table_V_A_R_C_(BaseTTXConverter):\n """Variable Components table\n\n The ``VARC`` table contains variation information for composite glyphs.\n\n See also https://github.com/harfbuzz/boring-expansion-spec/blob/main/VARC.md\n """\n\n pass\n
.venv\Lib\site-packages\fontTools\ttLib\tables\V_A_R_C_.py
V_A_R_C_.py
Python
301
0.95
0.166667
0
node-utils
590
2024-07-10T19:59:47.775136
BSD-3-Clause
false
0b567fa16ba28b0a75f55ffe3827fc80
from .otBase import BaseTTXConverter\n\n\nclass table__a_n_k_r(BaseTTXConverter):\n """Anchor Point table\n\n The anchor point table provides a way to define anchor points.\n These are points within the coordinate space of a given glyph,\n independent of the control points used to render the glyph.\n Anc...
.venv\Lib\site-packages\fontTools\ttLib\tables\_a_n_k_r.py
_a_n_k_r.py
Python
498
0.95
0.066667
0
node-utils
389
2024-08-08T04:12:44.950197
BSD-3-Clause
false
667042405e63f291a50d2b8e2e5ab3cb
from .otBase import BaseTTXConverter\n\n\n# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6bsln.html\nclass table__b_s_l_n(BaseTTXConverter):\n """Baseline table\n\n The AAT ``bsln`` table is similar in purpose to the OpenType ``BASE``\n table; it stores per-script baselines to support a...
.venv\Lib\site-packages\fontTools\ttLib\tables\_b_s_l_n.py
_b_s_l_n.py
Python
480
0.95
0.066667
0.1
react-lib
238
2024-11-27T15:12:20.114281
GPL-3.0
false
94ac3eecaeaa4369efc5a482367f4bbf
# coding: utf-8\nfrom .otBase import BaseTTXConverter\n\n\nclass table__c_i_d_g(BaseTTXConverter):\n """CID to Glyph ID table\n\n The AAT ``cidg`` table has almost the same structure as ``gidc``,\n just mapping CIDs to GlyphIDs instead of the reverse direction.\n\n It is useful for fonts that may be used by...
.venv\Lib\site-packages\fontTools\ttLib\tables\_c_i_d_g.py
_c_i_d_g.py
Python
937
0.95
0.166667
0.058824
react-lib
65
2024-04-11T04:48:21.590891
GPL-3.0
false
461c7dd28801c059d87872c859e89293
from .otBase import BaseTTXConverter\n\n\nclass table__f_e_a_t(BaseTTXConverter):\n """Feature name table\n\n The feature name table is an AAT (Apple Advanced Typography) table for\n storing font features, settings, and their human-readable names. It should\n not be confused with the ``Feat`` table or the O...
.venv\Lib\site-packages\fontTools\ttLib\tables\_f_e_a_t.py
_f_e_a_t.py
Python
484
0.95
0.133333
0
vue-tools
827
2024-06-11T23:22:23.282316
BSD-3-Clause
false
b4dd1939ec201518c666241cdfb62f4b
from .otBase import BaseTTXConverter\n\n\n# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6gcid.html\nclass table__g_c_i_d(BaseTTXConverter):\n """Glyph ID to CID table\n\n The AAT ``gcid`` table stores glyphID-to-CID mappings.\n\n See also https://developer.apple.com/fonts/TrueType-Refe...
.venv\Lib\site-packages\fontTools\ttLib\tables\_g_c_i_d.py
_g_c_i_d.py
Python
375
0.95
0.076923
0.125
python-kit
777
2024-05-29T01:36:44.470660
MIT
false
4079423d6496fb48f44ab67479280d82
from .otBase import BaseTTXConverter\n\n\nclass table__l_c_a_r(BaseTTXConverter):\n """Ligature Caret table\n\n The AAT ``lcar`` table stores division points within ligatures, which applications\n can use to position carets properly between the logical parts of the ligature.\n\n See also https://developer.a...
.venv\Lib\site-packages\fontTools\ttLib\tables\_l_c_a_r.py
_l_c_a_r.py
Python
403
0.95
0.076923
0
vue-tools
389
2023-08-12T06:08:50.660823
BSD-3-Clause
false
598bd6eec0ba65b1523d711032d69f76
from .otBase import BaseTTXConverter\n\n\n# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6mort.html\nclass table__m_o_r_t(BaseTTXConverter):\n """The AAT ``mort`` table contains glyph transformations used for script shaping and\n for various other optional smart features.\n\n Note: ``mo...
.venv\Lib\site-packages\fontTools\ttLib\tables\_m_o_r_t.py
_m_o_r_t.py
Python
501
0.95
0.214286
0.111111
awesome-app
872
2024-05-17T13:46:12.242249
GPL-3.0
false
7c66c1b79c1d71edcf59cf55a9059f3e
from .otBase import BaseTTXConverter\n\n\n# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6morx.html\nclass table__m_o_r_x(BaseTTXConverter):\n """The AAT ``morx`` table contains glyph transformations used for script shaping and\n for various other optional smart features, akin to ``GSUB`` ...
.venv\Lib\site-packages\fontTools\ttLib\tables\_m_o_r_x.py
_m_o_r_x.py
Python
563
0.95
0.266667
0.1
react-lib
250
2025-04-01T18:59:50.040141
BSD-3-Clause
false
0452324f8c24f24a70c15700422d7b87
from .otBase import BaseTTXConverter\n\n\n# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6opbd.html\nclass table__o_p_b_d(BaseTTXConverter):\n """Optical Bounds table\n\n The AAT ``opbd`` table contains optical boundary points for glyphs, which\n applications can use for the visual alig...
.venv\Lib\site-packages\fontTools\ttLib\tables\_o_p_b_d.py
_o_p_b_d.py
Python
462
0.95
0.214286
0.111111
python-kit
643
2024-11-26T17:08:22.933105
BSD-3-Clause
false
b5b3c301b6f51c3fa5e583170f311d9d
from .otBase import BaseTTXConverter\n\n\n# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6prop.html\nclass table__p_r_o_p(BaseTTXConverter):\n """The AAT ``prop`` table can store a variety of per-glyph properties, such as\n Unicode directionality or whether glyphs are non-spacing marks....
.venv\Lib\site-packages\fontTools\ttLib\tables\_p_r_o_p.py
_p_r_o_p.py
Python
439
0.95
0.083333
0.125
react-lib
464
2025-01-13T15:53:19.604554
BSD-3-Clause
false
61e47540e35d4260a29cef46ea390c7f
# DON'T EDIT! This file is generated by MetaTools/buildTableList.py.\ndef _moduleFinderHint():\n """Dummy function to let modulefinder know what tables may be\n dynamically imported. Generated by MetaTools/buildTableList.py.\n\n >>> _moduleFinderHint()\n """\n from . import B_A_S_E_\n from . impor...
.venv\Lib\site-packages\fontTools\ttLib\tables\__init__.py
__init__.py
Python
2,749
0.95
0.030612
0.010638
vue-tools
433
2023-12-22T13:41:56.686911
GPL-3.0
false
8cfc76232d0f0802cab79de69f9e3929
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\asciiTable.cpython-313.pyc
asciiTable.cpython-313.pyc
Other
1,573
0.8
0
0
python-kit
665
2024-09-02T19:37:00.460212
GPL-3.0
false
da28ae9f0a2efd469cfaf5cf8fb85276
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\BitmapGlyphMetrics.cpython-313.pyc
BitmapGlyphMetrics.cpython-313.pyc
Other
2,964
0.8
0
0
vue-tools
213
2023-10-31T14:57:18.666177
MIT
false
0de97a38a9c8246ebcbe16bb7ba41c22
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\B_A_S_E_.cpython-313.pyc
B_A_S_E_.cpython-313.pyc
Other
760
0.8
0
0
react-lib
474
2023-08-13T09:36:56.513790
Apache-2.0
false
57d8bca9dfb0859d685e622dc7b81b2d
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\C_B_D_T_.cpython-313.pyc
C_B_D_T_.cpython-313.pyc
Other
5,812
0.8
0.026316
0
python-kit
566
2024-08-16T13:35:58.517048
BSD-3-Clause
false
c2e3f4bfaad9d1855f01b0f4ed03e50a
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\C_B_L_C_.cpython-313.pyc
C_B_L_C_.cpython-313.pyc
Other
873
0.8
0.083333
0
node-utils
576
2023-07-15T14:40:48.701140
Apache-2.0
false
d54923ac1806e3771e0865e0bafa023d
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\C_F_F_.cpython-313.pyc
C_F_F_.cpython-313.pyc
Other
3,692
0.8
0
0
vue-tools
521
2024-08-08T16:46:10.086553
MIT
false
e865e0a9ff9d0dc8cb1262e7b90d08c8
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\C_F_F__2.cpython-313.pyc
C_F_F__2.cpython-313.pyc
Other
1,612
0.8
0.0625
0
python-kit
280
2024-03-03T05:52:26.687634
Apache-2.0
false
759bb34bbbc68d5aa39814dd19e3a2a6
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\C_O_L_R_.cpython-313.pyc
C_O_L_R_.cpython-313.pyc
Other
8,552
0.8
0.021978
0.012821
vue-tools
728
2024-01-27T01:23:50.531234
BSD-3-Clause
false
b189b0f12b830143351320950271e3f3
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\C_P_A_L_.cpython-313.pyc
C_P_A_L_.cpython-313.pyc
Other
16,605
0.8
0
0.032
react-lib
830
2024-03-14T19:02:36.765561
BSD-3-Clause
false
fd69cccb01fd6ebe8979426e47d885da
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\DefaultTable.cpython-313.pyc
DefaultTable.cpython-313.pyc
Other
3,171
0.8
0
0
vue-tools
472
2023-12-25T16:38:39.191614
MIT
false
23cfe22db8107a09f820a7c0df7bec4c
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\D_S_I_G_.cpython-313.pyc
D_S_I_G_.cpython-313.pyc
Other
7,823
0.8
0.014706
0
react-lib
872
2023-09-09T11:28:28.291242
BSD-3-Clause
false
2881c98c8260fce8112ab173ec105db4
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\D__e_b_g.cpython-313.pyc
D__e_b_g.cpython-313.pyc
Other
2,637
0.8
0
0
vue-tools
996
2025-03-03T08:05:14.718975
GPL-3.0
false
4ec488fab749abaa4abcccf90886bec5
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\E_B_D_T_.cpython-313.pyc
E_B_D_T_.cpython-313.pyc
Other
36,698
0.8
0.003861
0.004
vue-tools
337
2024-02-06T15:57:09.061320
GPL-3.0
false
63e51043ee92f0dd2ed1e2dc61273c31
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\E_B_L_C_.cpython-313.pyc
E_B_L_C_.cpython-313.pyc
Other
34,453
0.8
0.003676
0
awesome-app
221
2024-12-23T18:36:42.926171
BSD-3-Clause
false
fef7f6e5c9fb6e0282c03bc313c3766a
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\F_F_T_M_.cpython-313.pyc
F_F_T_M_.cpython-313.pyc
Other
2,679
0.8
0.066667
0
python-kit
620
2025-02-16T07:13:06.152435
MIT
false
e17ee4c2fb49baa238fce99ff547d2cb
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\F__e_a_t.cpython-313.pyc
F__e_a_t.cpython-313.pyc
Other
8,517
0.8
0
0
python-kit
187
2025-05-13T11:18:47.237858
Apache-2.0
false
e0a6b05b223925c3745751c44dce54e4
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\grUtils.cpython-313.pyc
grUtils.cpython-313.pyc
Other
4,278
0.8
0
0
vue-tools
766
2025-06-16T08:52:56.036339
MIT
false
d5c4cdf219e3478513f77455d2857448
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\G_D_E_F_.cpython-313.pyc
G_D_E_F_.cpython-313.pyc
Other
694
0.8
0
0
node-utils
421
2024-07-19T12:29:25.075326
BSD-3-Clause
false
3e7f19fde340398bc01187889ad4b80e
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\G_M_A_P_.cpython-313.pyc
G_M_A_P_.cpython-313.pyc
Other
7,414
0.8
0
0
react-lib
771
2025-04-06T18:12:14.904243
GPL-3.0
false
0713383a498743d34c66c19cfa57fa38
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\G_P_K_G_.cpython-313.pyc
G_P_K_G_.cpython-313.pyc
Other
6,836
0.8
0
0
vue-tools
478
2024-03-08T07:00:21.384995
BSD-3-Clause
false
53fd40dfdea79936d9f0f7b6e0454d41
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\G_P_O_S_.cpython-313.pyc
G_P_O_S_.cpython-313.pyc
Other
791
0.8
0
0
awesome-app
569
2024-05-04T11:23:25.387240
MIT
false
c42294e672089c6235a5878d9c9629ec
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\G_S_U_B_.cpython-313.pyc
G_S_U_B_.cpython-313.pyc
Other
689
0.8
0
0
react-lib
951
2024-01-20T07:43:59.333606
Apache-2.0
false
691f664e2c929a0e421d65f6a00a7ad6
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\G_V_A_R_.cpython-313.pyc
G_V_A_R_.cpython-313.pyc
Other
509
0.7
0
0
node-utils
4
2024-04-08T11:10:27.413646
BSD-3-Clause
false
bfba5a16ce29edeff3b9241bc3558005
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\G__l_a_t.cpython-313.pyc
G__l_a_t.cpython-313.pyc
Other
12,925
0.8
0
0
python-kit
571
2024-12-07T13:23:24.211795
MIT
false
44bd7c810296e5a389ec60e65853fb8b
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\G__l_o_c.cpython-313.pyc
G__l_o_c.cpython-313.pyc
Other
5,131
0.8
0
0.02381
python-kit
360
2024-05-20T04:13:35.306139
BSD-3-Clause
false
2a808877673685ca95868f80d400938e
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\H_V_A_R_.cpython-313.pyc
H_V_A_R_.cpython-313.pyc
Other
708
0.8
0
0
python-kit
895
2024-01-24T03:45:28.687929
BSD-3-Clause
false
1ae6ae9f7bb737e3cd2cc70f5b6bde83
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\J_S_T_F_.cpython-313.pyc
J_S_T_F_.cpython-313.pyc
Other
710
0.8
0
0
vue-tools
492
2024-12-31T17:55:58.582571
BSD-3-Clause
false
8d228e2c99f81bab2d23933c4dc218d4
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\L_T_S_H_.cpython-313.pyc
L_T_S_H_.cpython-313.pyc
Other
3,255
0.8
0
0
python-kit
301
2023-07-28T03:50:48.154241
BSD-3-Clause
false
19ee6cf52010757eafa5c4f4f260897a
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\M_A_T_H_.cpython-313.pyc
M_A_T_H_.cpython-313.pyc
Other
737
0.8
0
0
vue-tools
365
2025-04-16T13:22:53.901925
MIT
false
34dcfbf466a8c5f184c6f070f8ec322c
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\M_E_T_A_.cpython-313.pyc
M_E_T_A_.cpython-313.pyc
Other
14,267
0.8
0.014815
0.015748
vue-tools
167
2023-11-10T19:00:49.595830
GPL-3.0
false
6d676e49aa525dc542565ad1d527886b
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\M_V_A_R_.cpython-313.pyc
M_V_A_R_.cpython-313.pyc
Other
703
0.8
0.111111
0
react-lib
284
2023-10-08T12:07:55.177217
Apache-2.0
false
20d922ffac13d94062c95931151a0cc4
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\otBase.cpython-313.pyc
otBase.cpython-313.pyc
Other
64,451
0.75
0.034014
0.00495
react-lib
525
2024-02-28T02:27:12.566147
Apache-2.0
false
7cbd2218a91fec3d89b766af3e374a49
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\otConverters.cpython-313.pyc
otConverters.cpython-313.pyc
Other
103,524
0.75
0.007813
0.00271
awesome-app
126
2023-08-17T12:54:56.148285
GPL-3.0
false
dc593919da351fbe6467b36b956ee50d
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\otData.cpython-313.pyc
otData.cpython-313.pyc
Other
84,484
0.75
0.17758
0
python-kit
417
2023-12-19T10:05:36.898219
BSD-3-Clause
false
3058a970c71795639d5773e88f0fea30
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\otTraverse.cpython-313.pyc
otTraverse.cpython-313.pyc
Other
6,500
0.95
0.154639
0
vue-tools
408
2023-07-17T18:33:26.980972
GPL-3.0
false
33aec5517f4b1fc2bb07d1d8a7fdf008
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\O_S_2f_2.cpython-313.pyc
O_S_2f_2.cpython-313.pyc
Other
31,074
0.95
0.02518
0
react-lib
326
2025-03-04T22:38:54.924936
GPL-3.0
false
e9642e23294d92888c46efefc5223910
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\sbixGlyph.cpython-313.pyc
sbixGlyph.cpython-313.pyc
Other
6,576
0.8
0.019608
0.12
react-lib
795
2024-12-11T07:53:15.086501
Apache-2.0
false
21f1e4383c09e819fc3bb5d2dfb9febb
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\sbixStrike.cpython-313.pyc
sbixStrike.cpython-313.pyc
Other
7,037
0.8
0.037037
0.051282
python-kit
781
2023-10-29T02:27:05.232296
MIT
false
bf0aa09bce0d6cc67296822ef068c51a
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\S_I_N_G_.cpython-313.pyc
S_I_N_G_.cpython-313.pyc
Other
5,171
0.8
0
0
python-kit
399
2025-06-24T09:55:30.869997
BSD-3-Clause
false
8c08b0b08eab583297e486c9231a7b0f
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\S_T_A_T_.cpython-313.pyc
S_T_A_T_.cpython-313.pyc
Other
888
0.8
0
0
node-utils
182
2024-07-06T23:47:16.217536
Apache-2.0
false
d4a3af0ec793b472d6fb4b3e8dc67cb3
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\S_V_G_.cpython-313.pyc
S_V_G_.cpython-313.pyc
Other
9,499
0.8
0.009259
0
vue-tools
885
2024-07-03T00:42:14.170420
BSD-3-Clause
false
228c23cee69d97c12c776824db6f4745
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\S__i_l_f.cpython-313.pyc
S__i_l_f.cpython-313.pyc
Other
51,362
0.8
0
0.01083
vue-tools
883
2024-08-24T02:06:22.114682
Apache-2.0
false
9bbc7b340c1135fd9d19015ea40387f2
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\S__i_l_l.cpython-313.pyc
S__i_l_l.cpython-313.pyc
Other
5,586
0.8
0
0
python-kit
211
2024-05-27T04:19:17.326768
BSD-3-Clause
false
34bd6a7eca31b4984c9350d17a82a96d
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\ttProgram.cpython-313.pyc
ttProgram.cpython-313.pyc
Other
24,254
0.8
0.004739
0
react-lib
141
2024-01-28T06:22:45.946325
MIT
false
4851f2f66e3e88fa773083274c40a961
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\TupleVariation.cpython-313.pyc
TupleVariation.cpython-313.pyc
Other
34,918
0.95
0.023529
0
node-utils
965
2023-08-31T19:36:04.697896
GPL-3.0
false
778e097d678fbdb4178ba496d4f6c193
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I_B_.cpython-313.pyc
T_S_I_B_.cpython-313.pyc
Other
756
0.8
0.083333
0
python-kit
213
2024-01-21T20:44:26.998666
BSD-3-Clause
false
b681d4d9119399dbf61b22139bdab675
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I_C_.cpython-313.pyc
T_S_I_C_.cpython-313.pyc
Other
798
0.8
0.133333
0
node-utils
49
2025-05-27T18:14:57.849634
BSD-3-Clause
false
e78770221812b8525c6b760b389b1bfb
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I_D_.cpython-313.pyc
T_S_I_D_.cpython-313.pyc
Other
756
0.8
0.083333
0
python-kit
125
2024-02-09T11:16:38.744845
GPL-3.0
false
673e243d08017a5fe7b354ea1478328c
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I_J_.cpython-313.pyc
T_S_I_J_.cpython-313.pyc
Other
756
0.8
0.083333
0
python-kit
941
2024-11-26T10:13:58.765015
Apache-2.0
false
6268d6bc8d4536bf2c2aedbc29e12896
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I_P_.cpython-313.pyc
T_S_I_P_.cpython-313.pyc
Other
756
0.8
0.083333
0
node-utils
888
2024-01-18T06:54:54.315879
MIT
false
f1b58bd514e4aa7f55bfcdb2a397111f
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I_S_.cpython-313.pyc
T_S_I_S_.cpython-313.pyc
Other
756
0.8
0.083333
0
vue-tools
225
2023-12-15T23:14:45.831461
BSD-3-Clause
false
f4f3444cd9176d729dc6b2825afdff6a
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I_V_.cpython-313.pyc
T_S_I_V_.cpython-313.pyc
Other
1,859
0.8
0
0
awesome-app
555
2025-01-19T07:37:49.753641
BSD-3-Clause
false
fcd752e2b8f119fb07d298f421816666
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I__0.cpython-313.pyc
T_S_I__0.cpython-313.pyc
Other
3,637
0.8
0.020833
0
react-lib
175
2024-02-14T21:21:15.686051
MIT
false
bf0b4daa1acbe266b1b52dc058ee062a
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I__1.cpython-313.pyc
T_S_I__1.cpython-313.pyc
Other
6,646
0.8
0
0.028571
node-utils
80
2023-11-11T14:07:47.039770
Apache-2.0
false
e194144812cfa20a5876b4427886fd28
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I__2.cpython-313.pyc
T_S_I__2.cpython-313.pyc
Other
973
0.8
0.055556
0
awesome-app
913
2025-06-06T17:11:41.852531
Apache-2.0
false
52d642f65e3855d699ee7f0d53c1fab6
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I__3.cpython-313.pyc
T_S_I__3.cpython-313.pyc
Other
989
0.8
0
0
react-lib
615
2023-12-16T14:08:28.150129
MIT
false
2bbc2b5c9675358b07aca7eba69bc80e
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_S_I__5.cpython-313.pyc
T_S_I__5.cpython-313.pyc
Other
3,477
0.8
0
0
node-utils
51
2024-09-06T16:57:43.523598
BSD-3-Clause
false
5da95892143f71f165c42f3840b9e834
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\T_T_F_A_.cpython-313.pyc
T_T_F_A_.cpython-313.pyc
Other
806
0.8
0
0
vue-tools
327
2024-09-16T07:59:43.857418
BSD-3-Clause
false
2755999867a3a27b61f69af9fd19c0a7
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\V_A_R_C_.cpython-313.pyc
V_A_R_C_.cpython-313.pyc
Other
688
0.8
0.125
0
python-kit
719
2025-04-18T03:21:14.024462
Apache-2.0
false
6fc339869051422325f9737a2a1fa1e9
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\V_D_M_X_.cpython-313.pyc
V_D_M_X_.cpython-313.pyc
Other
11,265
0.8
0.03876
0
awesome-app
837
2025-06-18T17:55:37.105533
BSD-3-Clause
false
b87e59ea8021f92df9353ff649cd9e3b
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\V_O_R_G_.cpython-313.pyc
V_O_R_G_.cpython-313.pyc
Other
8,501
0.8
0.032258
0
python-kit
957
2025-02-19T19:26:22.467200
GPL-3.0
false
7dd89744091b4b19c9a69020a6f6a6d2
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\V_V_A_R_.cpython-313.pyc
V_V_A_R_.cpython-313.pyc
Other
714
0.8
0.111111
0
react-lib
596
2023-11-17T21:20:59.938281
MIT
false
c30e1d73009bd6c0b77f8838401df0ca
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_a_n_k_r.cpython-313.pyc
_a_n_k_r.cpython-313.pyc
Other
873
0.8
0
0
python-kit
425
2024-05-05T13:29:03.975618
Apache-2.0
false
0970cbc0260640db207ee64014a2acde
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_a_v_a_r.cpython-313.pyc
_a_v_a_r.cpython-313.pyc
Other
10,158
0.95
0.020833
0
awesome-app
936
2024-07-19T17:59:24.772244
BSD-3-Clause
false
092ca56713c869e4bcbc95621dfd69b3
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_b_s_l_n.cpython-313.pyc
_b_s_l_n.cpython-313.pyc
Other
777
0.8
0
0
react-lib
470
2023-08-15T20:04:32.518454
BSD-3-Clause
false
c3e1622c3f70368ae0030ab2eb6499be
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_c_i_d_g.cpython-313.pyc
_c_i_d_g.cpython-313.pyc
Other
1,263
0.8
0.157895
0
python-kit
735
2023-12-12T05:07:31.259571
GPL-3.0
false
142563031d7dbc795775e60139560706
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_c_m_a_p.cpython-313.pyc
_c_m_a_p.cpython-313.pyc
Other
61,229
0.75
0.042169
0.001605
vue-tools
203
2024-01-15T19:20:22.643651
GPL-3.0
false
3b35389c2e84fdb330f6b2bb21e31d42
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_c_v_a_r.cpython-313.pyc
_c_v_a_r.cpython-313.pyc
Other
5,099
0.8
0.021739
0
vue-tools
718
2025-06-22T04:33:37.305691
BSD-3-Clause
false
ce836e4563558d7a34e4e34ca43cd3ca
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_c_v_t.cpython-313.pyc
_c_v_t.cpython-313.pyc
Other
3,472
0.8
0
0
vue-tools
384
2024-12-14T06:17:58.595537
Apache-2.0
false
063d8362c9f45a1a7c422d0e017bcb79
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_f_e_a_t.cpython-313.pyc
_f_e_a_t.cpython-313.pyc
Other
859
0.8
0.090909
0
react-lib
152
2024-11-07T07:13:01.647321
Apache-2.0
false
37c26c1c0df4326492e6e617189bc0a9
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_f_p_g_m.cpython-313.pyc
_f_p_g_m.cpython-313.pyc
Other
2,744
0.95
0.02381
0
node-utils
748
2023-10-25T22:47:38.522157
MIT
false
c5328a4cc22f6e19af56fcaa1d2f566e
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_f_v_a_r.cpython-313.pyc
_f_v_a_r.cpython-313.pyc
Other
13,617
0.8
0
0.007874
react-lib
481
2024-04-09T12:08:01.853683
GPL-3.0
false
17685851fd00c82d931ddac6ea68fe63
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_g_a_s_p.cpython-313.pyc
_g_a_s_p.cpython-313.pyc
Other
3,364
0.8
0.034483
0
react-lib
736
2023-10-04T14:59:35.299461
MIT
false
88b9bb6e3725c9701d35bd107f8c9b49
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_g_c_i_d.cpython-313.pyc
_g_c_i_d.cpython-313.pyc
Other
679
0.8
0
0
awesome-app
224
2025-06-13T02:02:37.630279
Apache-2.0
false
f39e8b05c17b37339aeb9920bb1592c3
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_g_l_y_f.cpython-313.pyc
_g_l_y_f.cpython-313.pyc
Other
95,201
0.75
0.040383
0.011534
node-utils
407
2024-02-19T06:54:02.473404
BSD-3-Clause
false
b1493dfc21b835c91c1c77393d697f9c
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_g_v_a_r.cpython-313.pyc
_g_v_a_r.cpython-313.pyc
Other
14,453
0.8
0.006623
0.014286
awesome-app
122
2024-03-09T06:47:27.754359
BSD-3-Clause
false
4e3a76a28e0309a27669d6c35cbab40a
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_h_d_m_x.cpython-313.pyc
_h_d_m_x.cpython-313.pyc
Other
7,482
0.8
0.014493
0
vue-tools
942
2025-05-27T06:31:19.737693
BSD-3-Clause
false
9f8f104178b18e59f79d9dda738a5133
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_h_e_a_d.cpython-313.pyc
_h_e_a_d.cpython-313.pyc
Other
5,574
0.8
0
0.016949
vue-tools
388
2023-11-04T16:35:02.646859
BSD-3-Clause
false
7ec0695574ed1227c1d598f0867e0843
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_h_h_e_a.cpython-313.pyc
_h_h_e_a.cpython-313.pyc
Other
6,523
0.95
0.027027
0
python-kit
654
2023-12-18T18:17:46.428447
Apache-2.0
false
a41e27cca60012a8ecb56c3c998463a0
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_h_m_t_x.cpython-313.pyc
_h_m_t_x.cpython-313.pyc
Other
7,424
0.8
0.03125
0
react-lib
183
2024-06-08T16:25:56.881083
Apache-2.0
false
fcf90acba8547f3bcbec9c6f6f57717d
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_k_e_r_n.cpython-313.pyc
_k_e_r_n.cpython-313.pyc
Other
14,019
0.8
0.019048
0
awesome-app
510
2025-01-04T13:04:59.040505
Apache-2.0
false
a73f21c87de29aa8d7285233764a2724
\n\n
.venv\Lib\site-packages\fontTools\ttLib\tables\__pycache__\_l_c_a_r.cpython-313.pyc
_l_c_a_r.cpython-313.pyc
Other
788
0.8
0
0
awesome-app
695
2023-11-17T19:13:40.075057
Apache-2.0
false
0f2567cb8d2b4e369d2bdf5db64d537e