Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

basedpython

a python type checker and a python-like language that transpiles to pure python

enum class Shape:
    case Circle(radius: int)
    case Rect(width: int, height: int)

    def area(self) -> int:
        match self:
            case Shape.Circle(r): return 3 * r * r
            case Shape.Rect(w, h): return w * h

extension list[Element: Shape]:
    def first_circle(self) -> Shape.Circle?:
        for shape in self:
            if shape is Shape.Circle:
                return shape
        return None

def stats(shapes: list[Shape]) -> (count: int, total: int):
    return (len(shapes), sum(s.area() for s in shapes))

def main():
    let shapes = [Shape.Circle(1), Shape.Rect(2, 3)]
    let summary = stats(shapes)
    print(f"{summary.count} shapes, {summary.total} total")
    print(shapes.first_circle()?.radius ?? 0)

installation

uv add --dev basedpython
by run main

documentation

kotlinisland.github.io/basedpython

acknowledgements

basedpython is a fork of astral-sh/ruff — it reuses ruff's parser, AST, and fix-application machinery, and the type checker is built on ty. none of this would exist without the work of the astral team and the wider ruff community

Download files

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

Source Distribution

basedpython-0.0.1a5.tar.gz (9.6 MB view details)

Uploaded Source

Built Distributions

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

basedpython-0.0.1a5-py3-none-win_arm64.whl (24.7 MB view details)

Uploaded Python 3Windows ARM64

basedpython-0.0.1a5-py3-none-win_amd64.whl (25.9 MB view details)

Uploaded Python 3Windows x86-64

basedpython-0.0.1a5-py3-none-win32.whl (23.7 MB view details)

Uploaded Python 3Windows x86

basedpython-0.0.1a5-py3-none-musllinux_1_2_x86_64.whl (26.3 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

basedpython-0.0.1a5-py3-none-musllinux_1_2_i686.whl (25.9 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

basedpython-0.0.1a5-py3-none-musllinux_1_2_armv7l.whl (23.6 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

basedpython-0.0.1a5-py3-none-musllinux_1_2_aarch64.whl (24.4 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

basedpython-0.0.1a5-py3-none-manylinux_2_31_riscv64.whl (26.0 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

basedpython-0.0.1a5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

basedpython-0.0.1a5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (25.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

basedpython-0.0.1a5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (28.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

basedpython-0.0.1a5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (27.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

basedpython-0.0.1a5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

basedpython-0.0.1a5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

basedpython-0.0.1a5-py3-none-macosx_11_0_arm64.whl (23.9 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

basedpython-0.0.1a5-py3-none-macosx_10_12_x86_64.whl (24.4 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

basedpython-0.0.1a5-py3-none-linux_armv6l.whl (24.0 MB view details)

Uploaded Python 3

File details

Details for the file basedpython-0.0.1a5.tar.gz.

File metadata

  • Download URL: basedpython-0.0.1a5.tar.gz
  • Upload date:
  • Size: 9.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5.tar.gz
Algorithm Hash digest
SHA256 4968938ea678dca83fbdd2ecbc90212fcb0a8ecdb87f58f31b8b54c032edef27
MD5 a3e328eb564f4b4e7353339edcaee60e
BLAKE2b-256 d849176c937c7173fb33242f80cffa6babffee2d262721a62e91c5f246f14c34

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-win_arm64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-win_arm64.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 bdfb2c7d00dda70c64562771a74cfcdfc0e1be5a337fe8c0df8bbe1072c5a282
MD5 6c110e26a105b60ebe8a3376e51c3c75
BLAKE2b-256 33bdf5b0df29decbf08dc191fa0f112c8a89013ec4b18200a5d49167619af40d

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-win_amd64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 6c64c9c5b58c5313bf32650b0c18413efb46729ac8fbb4f75e4c2065a611210c
MD5 080f980622ab78eca0b4bf4ea0d22e88
BLAKE2b-256 83385bf673942797b3e36c7cddbb1c34b6db173e8897362c9cfe85bfa006dbae

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-win32.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-win32.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-win32.whl
Algorithm Hash digest
SHA256 71d8dae0f70f93b4620d5eb12fb1f8afc5a6ee7f95cb1d829ca0248b148f3902
MD5 9367f65f23901e4b2fdaa9f3520224e2
BLAKE2b-256 e156f3b24b1aeb9c031542e43ac7225000e1afc28783caac58dc9d0d9b4ddbee

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 26.3 MB
  • Tags: Python 3, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 585b1a22c326530167e85e4a0e657d80b35dbae608ee81e390a05f30f0c01464
MD5 e68998435e14d06258c65df2abc0a4f7
BLAKE2b-256 080d8e52421a8a7e4f50a1f79e1f60b446d7751e8363741d66d34221411ebb90

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-musllinux_1_2_i686.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: Python 3, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dbb38363ec5ddf07cc3736aed59265550707ea54b03a32311543d2c552354579
MD5 927a568fa1e796be2ae5b200cf65ae26
BLAKE2b-256 957049a82729434dbe0e9849ced130b067ca07343ef5b07fe8993863fa86de45

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 23.6 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd9fa2b75180f0597fadb68180a133fbb1e0d843e2eb18bf2e848436d038a57f
MD5 22cb278a4e9efdec85197ccc1b5b2545
BLAKE2b-256 6ea3dd33f065e80fb00e2031b5fae328d269047ca497eb93e3460c66dc30d9aa

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 24.4 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2433b5886967ffc1340823b07bc4d292e69ee7ec53b63c1ac67614761095daee
MD5 ab48ab5f9b94f62bf16bed8b3cb21f2e
BLAKE2b-256 53eaf4260b0d1e02253b55a8f3eccf6b7ba27042079fa9b3407c4e20ba67cc63

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 26.0 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 fd3556bbdb27af71d0d26e60bc516e2b3a2292be459cf7c8e86d2b61bde66aa4
MD5 fc6daa4bac1c587d378fba7a57195e06
BLAKE2b-256 da0d8b4debbfa367cfc3a4df5de12eccba4bb733beabcbe0028c2fe24defa46f

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f37e3abd6dcdaa600c2c07739659a8d7f05ce599b5664c67aaa913a46434571a
MD5 223f36cb37674c3b0f783b294df91abe
BLAKE2b-256 c9438b76d1b038556c17f809cbe359a233b27b85e9a25ae9b5f749e845e05b03

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3583a332f84f86d88c79ce3185769ce72d98517e9c02fc0b50e60cb99712379
MD5 eb076d8f375781ae72d068c463f45c6b
BLAKE2b-256 e6deb32de4f191ded3676efdb2e0064ef4ec791bedaec785a38fe7badc00bd8b

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 28.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4887f77dbdcbcc2874c16b66fd24e1d7dbe5003cbdb4fdeabb40babdaeece8da
MD5 bf8bc1ba56a78a9b7dde469f1c82421e
BLAKE2b-256 b01e7d48f8895d5239267491de1a91664162b68933708a60766d83be7909dbc3

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 27.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08f63f27f98a8e36bcc8ef62f46d58c0838d094b04eaba7af4568806c3a88e21
MD5 65d99bd2bb818828d8ca704d50787aff
BLAKE2b-256 1805fd7eef94f09f88ceb3b05849620f0f396e33b480e142f1942449c2700706

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48a0915d0000590850f1df3847339327ebb851f5fb9c5849b13ca5b11f8cdadc
MD5 2b8b0991294d420b9750b6879edd4bd1
BLAKE2b-256 6373880a3862eb485411d29378958dec1ed90462fc9492d818acebce7b5d65c5

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5302792a46db4eae5cc069f2f82d8eae07776c7b5f50577641f5fe65257d96b7
MD5 6948c6b04b9c21b711040a8b86d2562d
BLAKE2b-256 127d7121c531c8dc54c0e09b47a6b02606d9c16bae1dc5768a21ee6282a5c118

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e88b805053ce0654c4549538b7204e10d13bbb0b648f7076ac2e033f3c4c1865
MD5 6ab3ef8ba7defbae041a0285057b95d8
BLAKE2b-256 5bec7bf75815e2bd87ca77f6d419fd1b47431f1d7548487f75b4aff29c709501

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 24.4 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b19d8ece3124815bcfb8f4b1d281167c7424344ae392e7afb66cf239f8de2e1e
MD5 877fdeb8fda63af2b3a6934819bce8fd
BLAKE2b-256 aa958e6b2e8789268c1d195e5d6a4dd07871aa4b2cc4117de2e9b28c9398359a

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a5-py3-none-linux_armv6l.whl.

File metadata

  • Download URL: basedpython-0.0.1a5-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a5-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 babd6d229f7179851abcb6e2537cdebbeb2d8bac8e8c4acb3f1322559cd6862c
MD5 1d06819e8ae9cf50daca27ee5a7e10a8
BLAKE2b-256 55ccf26a16e66ff189f8746a4cab2d752734725b512f86961eabcc20ee4489bb

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