Skip to main content

Datasets, Transforms and Models specific to Vector Fonts

Project description

TorchFont

TorchFont logo

License: MIT Python Version CI Documentation PyPI Downloads PyPI version Rust PyTorch

TorchFont is an unofficial library based on PyTorch for deep learning with vector fonts. It is not affiliated with or endorsed by the PyTorch project.

TorchFont is local-first: point GlyphDataset at a font directory or a repository checkout that already exists on disk, and TorchFont turns glyph outlines into GlyphSample objects for PyTorch pipelines.

Installation

The package requires Python 3.10+ and PyTorch 2.3+.

Install TorchFont with uv:

uv add torchfont

Or with pip:

pip install torchfont

Quickstart

from torch.utils.data import DataLoader
from torch.nn.utils.rnn import pad_sequence

from torchfont.datasets import GlyphDataset, GlyphSample


def transform(sample: GlyphSample):
    return sample.types, sample.coords


def collate_fn(batch):
    types = pad_sequence([types for types, _ in batch], batch_first=True)
    coords = pad_sequence([coords for _, coords in batch], batch_first=True)
    return types, coords


dataset = GlyphDataset(
    root="~/fonts",  # or "tests/fonts" in this repository
    patterns=("*.ttf",),
    codepoints=range(0x20, 0x7F),  # printable ASCII
    transform=transform,
)

loader = DataLoader(dataset, batch_size=8, shuffle=True, collate_fn=collate_fn)
types_t, coords_t = next(iter(loader))

print(types_t.shape)   # (8, L)
print(coords_t.shape)  # (8, L, 6)

What TorchFont Focuses On

  • local font directories and repository checkouts as the input boundary
  • Rust-backed outline decoding into GlyphSample with outline tensors, metrics, and glyph name
  • transform utilities such as quad_to_cubic for adapting glyph samples
  • PyTorch DataLoader integration through ordinary user-defined collate_fn functions

TorchFont does not need to own Git clone / fetch / checkout in the main workflow. Sync repositories with Git or another tool, then point GlyphDataset(root=...) at the resulting directory.

Citation

If you find TorchFont useful in your work, please consider citing the following BibTeX entry:

@software{fujioka2025torchfont,
    title        = {TorchFont: A Machine Learning library for Vector Fonts},
    author       = {Takumu Fujioka},
    year         = 2025,
    journal      = {GitHub repository},
    publisher    = {GitHub},
    howpublished = {\url{https://github.com/torchfont/torchfont}}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torchfont-0.9.2.tar.gz (7.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

torchfont-0.9.2-cp314-cp314t-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

torchfont-0.9.2-cp314-cp314t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

torchfont-0.9.2-cp314-cp314t-win32.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86

torchfont-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

torchfont-0.9.2-cp314-cp314t-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

torchfont-0.9.2-cp314-cp314t-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

torchfont-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

torchfont-0.9.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

torchfont-0.9.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

torchfont-0.9.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

torchfont-0.9.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

torchfont-0.9.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

torchfont-0.9.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

torchfont-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

torchfont-0.9.2-cp314-cp314t-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

torchfont-0.9.2-cp38-abi3-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8+Windows ARM64

torchfont-0.9.2-cp38-abi3-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8+Windows x86-64

torchfont-0.9.2-cp38-abi3-win32.whl (1.1 MB view details)

Uploaded CPython 3.8+Windows x86

torchfont-0.9.2-cp38-abi3-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ x86-64

torchfont-0.9.2-cp38-abi3-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ i686

torchfont-0.9.2-cp38-abi3-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARMv7l

torchfont-0.9.2-cp38-abi3-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARM64

torchfont-0.9.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

torchfont-0.9.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ s390x

torchfont-0.9.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

torchfont-0.9.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARMv7l

torchfont-0.9.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

torchfont-0.9.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.5+ i686

torchfont-0.9.2-cp38-abi3-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

torchfont-0.9.2-cp38-abi3-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file torchfont-0.9.2.tar.gz.

File metadata

  • Download URL: torchfont-0.9.2.tar.gz
  • Upload date:
  • Size: 7.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2.tar.gz
Algorithm Hash digest
SHA256 96ce2ad9be24c087d1769ac5f48d48891c3d54365e07f6c921faa3af2d470248
MD5 2f41ac95f1956594eb0729e44ef0a4b1
BLAKE2b-256 0a08cb60dd856021ae2d0911def56bff86c95a06647793fa4169799932f821c0

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 421fad831e8514f80138d0b5793f961cc732165534b00de7875925861fdc51e4
MD5 5c0ec4503ac2e7ecc38dece263139a5f
BLAKE2b-256 5af9e4e434c161fd65f215ba010a3cf91bccd905113650eded5ac15e3fc441e9

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8f7d74e6c73e6d6be09c3f8fa26601715daa2c1dcf20177f65b50749536e3522
MD5 c3e14b5c8ba90bde231fa074588b83ed
BLAKE2b-256 fb0151d2b8aa2260871d376668a28cd16409d4776e0bd8a081bf8b477b299465

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d07e5371a0859a1f90d0bfa6a61593935fe67e741a757175a1b8c9159244197a
MD5 ac4b07e08d4961dbd1ca61e356173b15
BLAKE2b-256 bae9352441b1dde33a47d51e4eb5afda0996e71978394f3b269ff7413a5493e1

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a67e5234d7ca93890a4942ff0036e1abbc2cbb829afe207bd81b56e28c2c1924
MD5 d681bbe1ca1caeb66fbb26cef17374e6
BLAKE2b-256 336d427f6d00c6d7661fbe07d9742f3080bba099ff74022103ec936b8ebc224f

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9844db7f40e7a918b3f757f74f2353a407d45d9e1efc932b754237b2e19ae16f
MD5 cc93c7688ce97e26d893057ea54830cd
BLAKE2b-256 76f13c742152ddde6cd38bd2b128da0702aef0fd958465833b8796b392bdbb4a

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4af42de3cf1f6bcc703ef9e7cadea328cc07e3b2e8acd944e3a010cc9ee5f8d6
MD5 bbfc6ad28cbcd8cea24e7ccdc73d6858
BLAKE2b-256 11eac9ca7addf045e50ef6ee8098c9356385281cff563ece2eb9d42ae7ea685f

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36cf64db1a0bbb9328f9e7445e5900ebe9cde3043e5dfddd97dd821bfdb01afd
MD5 2bd2758eaf250c5a8766d1f184f05f47
BLAKE2b-256 f81338303b68e7c1f144d9668e90a82b979a355f03d5ab242676fba930474c09

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a01b205b59642258a5414c1e808f1286a7e50e5cba6b04d320be3933ef5249a5
MD5 36b0257d32db466047f14307c557addf
BLAKE2b-256 e793ff96179f90c50ade98c7c42e2138c7101ac1126e0985fb519afeed1a9c08

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e38601a720425e4e91c99826f8c55cf543ff04c1c5ae2bc64659052611829db3
MD5 3d447d77cbd144e3b6c81382abbc7eeb
BLAKE2b-256 8a9ed6b924468e59f9bd013fcaa44764e0cab962311b974ad9e9073c688c25c8

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fae325e3a191c92b7f6e979d61a8ce64fd0b37d88420abf903f944a1bf3b7610
MD5 d9c4a854e457bb415a65dcceffc1125d
BLAKE2b-256 9a2cda271fe0eb6d5c25261e317a47f68aabdf06bbfc07d7dd9bddc3e858bb38

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20195c7c872849df4932297e795636fbf296b2eecc9022fc382949bfade6d506
MD5 c1327b65c2bfe0e7d2ee3821458bd96b
BLAKE2b-256 0480466c2b97e3e41d9ccfda477b8cbe2341815aba377ee534c328392d7cb2e8

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 493f049f7343dce21149dae12abaec1b78cb61108b3a49447eaf10baa6d9981c
MD5 b4f4a7688aac4c0efa8d129f3ff57326
BLAKE2b-256 da715dd6e1a19ef4eb5d03b2def6a0d65bb72f0ff63972fb5f86ff594a9d3269

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b5e8ea82471934ce170d6c4f2e9e78ca079cbbfec39829fb4420dc2b7922472
MD5 b7b4f1cbf1e0bf8f5007d58b90a0d0ec
BLAKE2b-256 e602223d62cfbf004f7e93b021a05c485911f8ae7e08d432f41ed570f82dc791

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a0b631d0bec6276d21b1f01347c7b9e0c5a869fb256e0b08ebc5578a42aabf3
MD5 81e1be293746e47fafee590cf842061f
BLAKE2b-256 73a4007cf598b9bc213f46876f93a201288a7f3100ccf6e7209ae8d8db16e8a5

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8f68bcc17260ed3b577f36ee3850419c2dcfadf368ca52dcca96233dee8206d
MD5 1ed43a7f75910b08e6226f3e48f92968
BLAKE2b-256 b5babeb4e9552b2835b79b889b681e3daeb342f35749597591680ab0b25508b0

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-win_arm64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 cb62f81bd39b65039f24c774e7cbb04f2c525cac136c268296d967555d63a202
MD5 5edbd7645396e72c8931bdf807a41c15
BLAKE2b-256 dbbd800c8e3e3a6db2982692987bee9680d58dc795b7497e19ceed20df430068

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b7b9ec45c0c69916341ded9f7d9e15b96741dacb4404a9bf3844bdb32adba3f1
MD5 12ce818c71293703fa46c49e55dabb85
BLAKE2b-256 61af9ad491f47f5c79be8f63f85a2259def5c1e33330b6bd7dd0523224f03391

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-win32.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 93f1b7531a6538ab616a861d6584ffc4bc6e8812d5231870dc929a8e1e0e1a94
MD5 c2102845eb772cbd9d73dfbc3e0b582d
BLAKE2b-256 9ecfb547c235b52fd6e297c0d79765d9b7c3cd7442548e6518b3a0b1f36624e7

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d791c082bd1c6991d21510e5be6c0a2e84187ecd9c9dfe82e738283751ad8fa6
MD5 91cb948c3187be20b0f7a4d24b2309ab
BLAKE2b-256 16458f6b1fa89fe9177dbcfb088ba6a4acc3496531d98e35e7586419c3eb88ff

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6616e4a806e442e9b5fa9c4f9eebfc184189fa5be431c313d68e2ff43b52f6c7
MD5 43b544390f7e20df26cd9ad28bf66992
BLAKE2b-256 7977b0b314580831585e3008edc1d0b11454095ce785af9800822aa98b4032a0

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55f1c3689598f11601f9f9e740a742029f1fb0d4f762429d710f292945f8353e
MD5 26abbbd50aabbe88cddbac8091738d0d
BLAKE2b-256 a42a5ae82e2eb1965a97e162c2eda3e3eb75be2d6a97540cd73fbf260ef8bbb0

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87f4b5e122c2f9c1cd0322d0971a407556a132c2a0172972237e8bed39c42ce7
MD5 fca03556b764d3402ebc361aa6cc0cd3
BLAKE2b-256 b5d79c6394cdbe038083ac4f2a1a5036f889282ef3089a1fca6ce5f6c5b34259

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4ed8e972713e00a3e319f489171e10b09c0a09b5e82ada4f46f281b6f39c213
MD5 ab6b46349459c38a0585fa4269c9a831
BLAKE2b-256 81db6918a59d71781c16db970faa915eb20c7d34cb2c00fbdd7b991b79a69f09

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a88def3187c28a789317c9d6b691ac0dc25c1135a54f807ca823be046de556b4
MD5 724738c2f08ccbafd59e89d936040752
BLAKE2b-256 c0d2d0ac08915b043b559239c547de12fb66919d157c3761d3f433c892bbaf63

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2d91b5caef49e90787732748f14a13ab9024846ca29c26d98c4ab35fc0548d0
MD5 29c63871aca2e751c1ab12645b37f280
BLAKE2b-256 9d207f0201c75350b2e71b9d70772e51b7b1211ebde381426f48669df61e78d8

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b25b6e9cfa5474f7cdd40387fbac829f5070c0b4237d558b40a836e693526f89
MD5 1f9ea3fa2e9f06e681fdc668b45f3702
BLAKE2b-256 c33e9be757870472947df99ae0711600b552dd35c1c286b1900c805fb6af2477

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c3155ffa1e40ae4f6e17599f1ce9b46e0504213aeef8fd3345bddc446ce3c4b
MD5 6bb7655d73854226b1e9f57b31537766
BLAKE2b-256 11fb16ac11aae47bcc285e4434fcd18f5105d3f012e41c3658e44269807a8d5a

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e6d6311a895c3c4ae89ff09c14ee98e93458e20b33f9e4463883cb653e26400
MD5 cdd646c2148ce6de6fcd0c87b856927a
BLAKE2b-256 33afc3d4c74c28ad7f51ae2d07d1ddda92335a6965b128a06450ad277d0b93aa

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a00f4abef9c38f47af71917f250e4ae069af6e9b7cba8d47b3d2f70b95fee57
MD5 982d3b7b206f53e9800a353ed510c3c0
BLAKE2b-256 18a5b3901bdd59af648a74a0c05b92a822b7eb501d5fad223f0f56635ad483ca

See more details on using hashes here.

File details

Details for the file torchfont-0.9.2-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: torchfont-0.9.2-cp38-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for torchfont-0.9.2-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2053336b3b837425452002daef17549d74bab2256de3cbfeb1f50fdfa42230d7
MD5 9ecc6ab2e090599f8de1d17325e2ee10
BLAKE2b-256 428e9eb6e5f0ee94deda394179d2f987dc61b7bc7378ad1803a912ec3dd7deee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page