Skip to main content

Python bindings for AutoTrace.

Project description

PyAutoTrace

Python bindings for AutoTrace.

Requirements

Installation

Install PyAutoTrace using your package manager of choice.

python -m pip install pyautotrace
uv add pyautotrace

Usage

import numpy as np
from autotrace import Bitmap, VectorFormat
from PIL import Image

# Load an image.
image = np.asarray(Image.open("image.jpeg").convert("RGB"))

# Create a bitmap.
bitmap = Bitmap(image)

# Trace the bitmap.
vector = bitmap.trace()

# Save the vector as an SVG.
vector.save("image.svg")

# Get an SVG as a byte string.
svg = vector.encode(VectorFormat.SVG)

Building

If you wish to build the package from source, the easiest way to do so is with uv. Clone the repository and run the following commands inside the project directory.

# Clone the AutoTrace submodule.
git submodule update --init

# If you're on Windows, extract the GLib headers archive.
Expand-Archive "third-party\autotrace\distribute\win\3rdparty\glib-dev_2.34.3-1_win64.zip" -DestinationPath "third-party\glib"

# If you're on macOS, install GLib with Homebrew.
brew install glib

# Build the package with uv.
uv build

On Linux and macOS compilation requires GLib, pkg-config, and unzip to be installed on your system, which most Linux distributions include by default. You can install GLib on macOS with brew install glib.

On Windows, in order to compile the generated C code, you will need to have Visual C++ Build Tools or another C/C++ compiler installed.

TODO

  • Tests
  • Documentation

License

This project is licensed under the LGPLv2.1 license.

This project depends on the AutoTrace project, which is licensed under the LGPLv2.1 license. AutoTrace, and by extension this project, requires the presence of GLib to compile, which is licensed under the LGPLv2.1 license, but this project does not depend on GLib to run.

This project contains code that replaces portions of AutoTrace and GLib, defined in overrides.cpp. Some of the implementations were taken directly from, or are based on, the source code of their respective libraries.

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

pyautotrace-0.0.5.tar.gz (459.2 kB view details)

Uploaded Source

Built Distributions

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

pyautotrace-0.0.5-cp314-cp314t-win_amd64.whl (232.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyautotrace-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyautotrace-0.0.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (736.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyautotrace-0.0.5-cp314-cp314t-macosx_10_15_universal2.whl (361.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

pyautotrace-0.0.5-cp314-cp314-win_amd64.whl (225.1 kB view details)

Uploaded CPython 3.14Windows x86-64

pyautotrace-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyautotrace-0.0.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (737.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyautotrace-0.0.5-cp314-cp314-macosx_10_15_universal2.whl (355.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pyautotrace-0.0.5-cp313-cp313-win_amd64.whl (220.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pyautotrace-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyautotrace-0.0.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (739.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyautotrace-0.0.5-cp313-cp313-macosx_10_13_universal2.whl (354.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pyautotrace-0.0.5-cp312-cp312-win_amd64.whl (221.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pyautotrace-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyautotrace-0.0.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (743.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyautotrace-0.0.5-cp312-cp312-macosx_10_13_universal2.whl (355.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pyautotrace-0.0.5-cp311-cp311-win_amd64.whl (221.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pyautotrace-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyautotrace-0.0.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (739.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyautotrace-0.0.5-cp311-cp311-macosx_10_9_universal2.whl (353.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pyautotrace-0.0.5-cp310-cp310-win_amd64.whl (221.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pyautotrace-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyautotrace-0.0.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (718.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyautotrace-0.0.5-cp310-cp310-macosx_10_9_universal2.whl (354.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pyautotrace-0.0.5.tar.gz.

File metadata

  • Download URL: pyautotrace-0.0.5.tar.gz
  • Upload date:
  • Size: 459.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5.tar.gz
Algorithm Hash digest
SHA256 b446f687153fe7f5098c9b99941de9b21d7e7c0665c8072314140f17e3f63311
MD5 556a9ba56bfe523120504656486298d0
BLAKE2b-256 d0a4eb72c0f680c40686ab8d644cc16ac778a44efff6dddb2387f8f971a14ca1

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 232.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d88d3caa3a1bc909750994d0372835d2e9d618e283f974bfb24bfb7144b2b95d
MD5 80e2e63bfd261760e79d690d6b800fa0
BLAKE2b-256 2817b14cdc008ca2bf69b60b602cec21ff258566ffd6010634e71ecd4a768b48

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f25e54f61b18385a877dc2d7eee1d11ad3fd62d96a5f41e28d8972933b9c850
MD5 f37c8261e93810ac1d8053bd00770818
BLAKE2b-256 c127023843432fc628dbca035050df2fe2daf38c30f14c9cfe69f40f6f95061a

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 736.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fab672eebd0c7b1a2cf848f5f58521b0196eceb9eba5b110962ea34399374419
MD5 a94bfcccbdae5d19372056bd3e677382
BLAKE2b-256 7e2c3d08decd530dfb125f4d7f4000b5d3ac40abe5faa74a85ceb68736b90b87

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp314-cp314t-macosx_10_15_universal2.whl
  • Upload date:
  • Size: 361.9 kB
  • Tags: CPython 3.14t, macOS 10.15+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ea2f1cabd9f773c4c4f1c36f3d9b27605b4f565463cb3586a4217fe204774905
MD5 ba0f54bb8048051ef8c856af68dbccfc
BLAKE2b-256 1044142c2aa1d1c097a0e873b39c1bf1e9bc7e0455d9ad49c2f6c6643ac180e7

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 225.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f4acc06b018e4e6fc64d474d9c7412627b0cbc0f6a8d16facefc8a9ba540126e
MD5 75a014b55693f81ad887767e411099ac
BLAKE2b-256 ac35158b4fbdb5434b21e4e95dbbda2cc9973b223b9435fe27973102b98abd36

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed372cea059e8904946e3e78ccfdc85923fa362d0acac90822f973398b705f50
MD5 a776fb4222f7efa3dc794d1422372fe5
BLAKE2b-256 28689acdf4245a5e45d6fbddf1130a17bbc75db069bfe046c2af20731f2ab4d7

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 737.8 kB
  • Tags: CPython 3.14, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f365428530d46851898f350e265c6b30273fbfdc1fd4f84973f62718829d1858
MD5 9a1b5fd7d67f2c97f2c3569b5371f024
BLAKE2b-256 5e2414aa2b62d0fcfe4977fcdc1a6331b7229fc7ffbf907e7943233bde6b33ba

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp314-cp314-macosx_10_15_universal2.whl
  • Upload date:
  • Size: 355.4 kB
  • Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 be9cb5358efca645e581a12ca9ed55a6abf4eb77fcd84771780a1317c8490984
MD5 2d8fa9d6f23cee8f00d012676f92e573
BLAKE2b-256 4d2f5b8189e794ba9040bbb8854b1946bca43fd2d1e4998c9ed4e2878789cf97

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 220.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d8269cec46afcc153375759a32b5461a39d37af7ec4b1f7ac91bebf22b77e01e
MD5 8b47540dbc5a8e04e79fe0583755a2d3
BLAKE2b-256 44f180b08084432a13ffa58491a40e100808fa93d3dca30a44d26c18581305b5

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8937d7ebd73f95be32ebe4d1421404411b48e2b13cb4ca57a63c2d6c4b26a7f1
MD5 a3b82b59262886e93f98e0a082cf56cd
BLAKE2b-256 f8b90b3565c733245f520a13177b1b16ca7d0e49ceb162e4d13020609939f897

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 739.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd9a6051696acf1c9066b9d7b9e3db3859c45bb9cc56a648b1f08269d5773600
MD5 ed096ed7010ccde0d92d4d166b8ebe34
BLAKE2b-256 a84dbc0a2956f542393e6153128f232bbb3013a73c28d61e34638e60dc9aa10f

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp313-cp313-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 354.0 kB
  • Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 38e643eeea3b3e247be151b1c3807355d4869232e20504920535c6ec079e95f8
MD5 753a766d5860fae79b6201b393119c56
BLAKE2b-256 0e3299a6cf0ca6f921fa36031c2336d38e1dfd50a719c740a66513b6662ead51

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 221.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c8ae41ae839d18ceb620ce727ee449f81cc7e8d436345d161e149631a5dec259
MD5 d9c6f32d75ecb519f991be9862bd3ce9
BLAKE2b-256 e4e2ff7e39f784f078a078adc3931653cde0819d287358b26c5c6b2c8768770e

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdfe5b1a012717e97252832a3768009e3cd2da4857a1217d69f3fcd249f7beb1
MD5 4cbf93062f9710cb495160054eda76fd
BLAKE2b-256 a135a42ad0fbf339f32dba497d83443f4e8031d4311d81b1bf88605af4c7d340

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 743.3 kB
  • Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef63a2b513fb8d3bb92715f41dd9d0a5979e6ae86249882eb6745aae9c880377
MD5 624c0c167cd014e91b6f16daf7441efb
BLAKE2b-256 3d2cb7a0689dc8b361bff940508c79cf64c3b0fe24c8b23eea974f98e0ad6649

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp312-cp312-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 355.0 kB
  • Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f949ed1ff6cb4c972bbc26620ed88bca2f9d89f1cc184eb90f2e680a2952b7b1
MD5 beebc90b67f29ee86a86ff94c210e958
BLAKE2b-256 652972550a21b0d761d9f5f9f8648163c29197d3fe94b6dcb7964877353d0aa2

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 221.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 389e8484968a48c813a2722509d83b0fc6c131bdc90b5525fadc76ad1aaef5cb
MD5 63df028077106ade3cf775f3584e6cbd
BLAKE2b-256 7996334a722c1aef265a5f22d165edeb8245343c1a83abf22154663f35df6e46

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61a803217957b597eb8190aa27caf32f816404934db9aeed83e6cebff200482f
MD5 f4602710f553f70590e7c8d9db39e6f7
BLAKE2b-256 6c15d2b9c31318208167deb181c9d2cdf6cadb9f9ba1d01bbf0fc476afdc40fc

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 739.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62295273635a8a7cd4e431f21ef43825ea367345da0aaa70a3619439ef524422
MD5 bf8f4f3522708bdc60755046e54b82f7
BLAKE2b-256 f24a784581afcdb322b1a7cfc104c512988fa0f77d647f50743528404f2dba5c

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 353.1 kB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bc7ac3378d0e29a22ed1b1d5695a6f9ae690e58e456e224b0dba7858c7ba9775
MD5 6d00893a5c01df7b35d26daa8d1faba3
BLAKE2b-256 e7511e17cdbef74a4f9c3e1534fd1640c3dbb64a9930b9b10461e1093708687a

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 221.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3100a621f6a10d5f56a45a4155e80efb447aba86e1a1b9d29701a28e7559d22c
MD5 47c9b95eebff10c4a7833b489fb4e8d3
BLAKE2b-256 ce10c6d404411c23603b928ad16ad62b6d805fb01247bbf9b9937b72e6daf66a

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa43f5d4b5467af88008119a18a706347c20faf2262ac8c07438dd32e602962f
MD5 31892909d48b32adcac71d0ccc2af2b2
BLAKE2b-256 c8aba27f1af229bceb8bbb820502a2dcf6ea22c3a4462acba1cde6239183a01b

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 718.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bfbe181dce32f5d9c613ac65833710aa052b5c9936905d4667da3473067b657
MD5 d46fd68171d37b44d2ff994419476b7d
BLAKE2b-256 0241e7e7398b51be9a9435b5f4e581432bb265f8d89d4c86c4825b616cde2efe

See more details on using hashes here.

File details

Details for the file pyautotrace-0.0.5-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pyautotrace-0.0.5-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 354.0 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pyautotrace-0.0.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ac2f0b6acc8ffd9a9b1f7156744d0e7626c0ac8350dad6ac27de0274358fcdf8
MD5 8ed3f4496c6becea196843f33167b8d0
BLAKE2b-256 99f766b22787bff0eb9893027112763ce1a6ee0f3ccebd75aaacdaf6f098ea0d

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