Skip to main content

soccernetpy

Python bindings for two text-classification models provided by soccer-rs:

  • SOCcerNET classifies job titles and tasks into US SOC 2010 occupations.
  • CLIPS classifies product and service descriptions into NAICS 2022 industries.

The computational code is written in Rust and exposed to Python with PyO3. Both the distribution and its import module are named soccernetpy.

Installation

Once published on PyPI:

pip install soccernetpy

For local development, create or activate a virtual environment and run:

maturin develop

To build an installable wheel:

maturin build --release
pip install ../target/wheels/soccernetpy-*.whl

The exact wheel filename contains its supported Python version, operating system, and CPU architecture. A wheel built for one platform may not install on another platform.

The first non-empty classification may download the embedding and classifier model files. Later calls use the cached copies.

Platform support

Prebuilt wheels are not currently available for Intel Macs (x86_64-apple-darwin). Microsoft has dropped support for ONNX Runtime on Intel macOS, and SOCcerNET requires ONNX Runtime for model inference. As a result, we cannot support Intel Macs until a suitable workaround is available.

Apple Silicon Macs (aarch64-apple-darwin) remain supported.

SOCcerNET

from soccernetpy import soccernet

results = soccernet(
    job_titles=["soccer player", "coach"],
    job_tasks=["play soccer", "coach players"],
    n=3,
)

for job_candidates in results:
    for candidate in job_candidates:
        print(candidate.code, candidate.title, candidate.score)

Signature:

soccernet(
    job_titles,
    job_tasks,
    soc1980=None,
    isco1988=None,
    noc2011=None,
    n=10,
)

job_titles and job_tasks must have equal lengths. Each optional prior-code list must also contain one entry per job. A prior entry may be:

  • one code, such as "261";
  • multiple codes, such as ["211", "212"]; or
  • None when that job has no prior code.

For example:

results = soccernet(
    job_titles=["doctor", "lawyer", "coach"],
    job_tasks=["treat patients", "give legal advice", "train athletes"],
    soc1980=["261", ["211", "212"], None],
    n=5,
)

SOC 1980, ISCO 1988, and NOC 2011 priors are crosswalked into SOC 2010 before inference. Codes not found in a crosswalk do not contribute a prior.

CLIPS

from soccernetpy import clips

results = clips(
    products_services=[
        "Software development",
        "Full-service dental care",
    ],
    sic1987=["7372", "8021"],
    n=3,
)

Signature:

clips(products_services, sic1987=None, n=10)

sic1987 follows the same one-code, multiple-code, or None convention as the SOCcerNET priors. SIC 1987 priors are crosswalked into NAICS 2022.

Results

Both functions return list[list[SoccerResult]]:

  • The outer list has one entry per input row and preserves input order.
  • Each inner list contains at most n ranked candidates.
  • Candidates expose code, title, and score attributes.
best = results[0][0]
print(best.code)
print(best.title)
print(best.score)

n=0 returns an empty candidate list for each input. Empty input lists return an empty outer list without loading a model.

Errors

  • Mismatched input lengths raise ValueError.
  • A negative n raises OverflowError during Python-to-Rust conversion.
  • Model, inference, cache, and crosswalk failures raise RuntimeError.

Development checks

cargo fmt --check
cargo test
maturin develop
python working/test2.py

Release files for soccernetpy 0.1.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for soccernetpy 0.1.3
File Size Uploaded
soccernetpy-0.1.3.tar.gz 26.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for soccernetpy 0.1.3
File
soccernetpy-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.3-cp315-cp315t-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp315-cp315-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.3-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
soccernetpy-0.1.3-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
soccernetpy-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.3-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
soccernetpy-0.1.3-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
soccernetpy-0.1.3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
soccernetpy-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.3-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
soccernetpy-0.1.3-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
soccernetpy-0.1.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
soccernetpy-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
soccernetpy-0.1.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
soccernetpy-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
soccernetpy-0.1.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
soccernetpy-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARM64 Details

Total release size: 354.2 MB

Release files / soccernetpy-0.1.3.tar.gz

Download URL soccernetpy-0.1.3.tar.gz
Size 26.7 kB
Tags Source
SHA-256 checksum
How to use checksums
1164e0c77d132d0790a312ca336e005eeb7745b6d788391c347601e94ade3363
BLAKE2b-256 checksum
How to use checksums
993973ba57f3a685cda87183e77640a526cdd4dcb79022f798034dd3cea94901
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags Linux glibc 2.28+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
0ee9ad562e19754bbdf4f309b5055e99c0129e6dca309ba67caa1e99b5e59f80
BLAKE2b-256 checksum
How to use checksums
dc0028edf02673d537f655f0fc810d536837fa6cf10d441fadda8821346337f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
335580d6ca1d39d8d3d35427213143ba50aba45f29367727495697ae012cd721
BLAKE2b-256 checksum
How to use checksums
8a3f28fe0ebfb9fd0372578e9c7d684e1f95211984f663f515808072cad68b95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp315-cp315t-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d7ea37c82fd3c940a58234dbc561420716336af8a7a80a6694fbd60618794fe8
BLAKE2b-256 checksum
How to use checksums
ceeef3e8dcacd63b3445138bf254be1d1b8ae19319ce24f9218685ede094f1d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp315-cp315-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
55d03507d40961ece9db5c01ff64864c01fddf5334a711853c624d1964ebf33d
BLAKE2b-256 checksum
How to use checksums
957843004fb1a6982846de9f25ae919f49ecd326a94542adf210a8b2be0787b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
610e23338945296431773a9ae93d4e5eee66ded0934bf8bb12a01f8f6520d183
BLAKE2b-256 checksum
How to use checksums
a79322eb8840a66fa4be04fa3cfbc8e5e36f02fda9d5dec43c941e726b360ca2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
11ee9f0153bb13ab7b238888df50a67e78f8f659dd4747a9ce19ccb3112820b5
BLAKE2b-256 checksum
How to use checksums
fceb9b6e8004ca93d67771ef3e2146d7af577384911b7c22a10e5ccde5b7c68e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp314-cp314-win_arm64.whl

Download URL soccernetpy-0.1.3-cp314-cp314-win_arm64.whl
Size 9.6 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
8bc237470d3ccff24070982651c85a6396326af1962b8b0375ffbf3f37743e6e
BLAKE2b-256 checksum
How to use checksums
ec7c0013203d504575019859764b4b51f5e3eb0ff94347869bd76bf0d7432fb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp314-cp314-win_amd64.whl

Download URL soccernetpy-0.1.3-cp314-cp314-win_amd64.whl
Size 10.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
522d6636d2b2f8c3a05b4ba7c601ed13f9ee5abd43d78d14549c051de4a09a67
BLAKE2b-256 checksum
How to use checksums
279d877352272fd588321539b1322409729dac59c166ad3bf1932f9ddd5978ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4cdcd5bb2afc703e93915e946f3d4f562b09843cbc235bdd219f3d6e0bd02121
BLAKE2b-256 checksum
How to use checksums
ab1d675e120bdbf92f34a8f86eefac70f11374af88e0e7e3455ac14a7cef650b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2d21d0b4ba15ff9e1907034a2570def1db2c002c5b52ba415ea98224bc92d10b
BLAKE2b-256 checksum
How to use checksums
ebba3d9aa89c4626ab42da135643737c24139a3a066b80c3755ed81672cfb960
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp314-cp314-macosx_11_0_arm64.whl

Download URL soccernetpy-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Size 11.2 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
434d1e85f57fe372ea6673c62010d606970b47573ed37a66796a4559520695e5
BLAKE2b-256 checksum
How to use checksums
1311698c8b447a9be7d6f9b3e8b066a45454a43ab0ba4d6587edda6c597292d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp313-cp313-win_arm64.whl

Download URL soccernetpy-0.1.3-cp313-cp313-win_arm64.whl
Size 9.6 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
f82b8f29badfb5e8405defcfe04b26082ac16dc650c7970384dfe8d1976aa0a6
BLAKE2b-256 checksum
How to use checksums
dc5f65a25c773a569889497c710837a1402fd042dc558630cbe6e8c67d0b8237
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp313-cp313-win_amd64.whl

Download URL soccernetpy-0.1.3-cp313-cp313-win_amd64.whl
Size 10.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
6afb896da1af7f05fb6545b31dcbd1bc5d82a6b96b06c29063031f99e100e972
BLAKE2b-256 checksum
How to use checksums
3acf835a3cbd5d0e285376b10c42913b64d6bb46f13bd9b6b272db3b35e485fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5e06d89bc9ecf082c4f3a3ece0a79735c84cc21ad6c6143d07319d1c7d84ac12
BLAKE2b-256 checksum
How to use checksums
fe13ab92e7beed6aeab9c20ed2cf2578df7eabae51a74b5fcdff9d55e4b0e99b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
52e37c44a60729b7865a3db15a404d8006233cda7c1105c20712261947b11127
BLAKE2b-256 checksum
How to use checksums
14e1749c55dfececf875a5ba22d79336a3f3b879ea9c4699404d70d2c583696c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp313-cp313-macosx_11_0_arm64.whl

Download URL soccernetpy-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Size 11.2 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6323d724170f30e62fddc1d37843c5fa21fd87cf126823c1ca94830a70caa336
BLAKE2b-256 checksum
How to use checksums
67cc5da26afd0da520957e258699726bbca46bb702ae295936b0ee8118cbfe75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp312-cp312-win_arm64.whl

Download URL soccernetpy-0.1.3-cp312-cp312-win_arm64.whl
Size 9.6 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
61abe368692c78be7f1dc684f9c60c37189913f93c2347979f7df341b5f8d02f
BLAKE2b-256 checksum
How to use checksums
c76db8d7f9f4a44b5273827c596ac8524335ee75a08905e73d738ad830060e5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp312-cp312-win_amd64.whl

Download URL soccernetpy-0.1.3-cp312-cp312-win_amd64.whl
Size 10.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
158d24d0dab61ad6c61bead54737a70bb6da2cfb74c8cfc5ca38229386a8efdc
BLAKE2b-256 checksum
How to use checksums
0aa03220e2186fafb6d245acace634795c0b4fc14de2810cd1f4f518adf8014a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2f8d77c82efe5634009a32ec076c3938647ff373c327f3bb8daaad48e283e7a9
BLAKE2b-256 checksum
How to use checksums
b0a88a015cdaaf9e524ebc227b08ac15392925e0d7337ecf706375b5edafb62d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8c3e43c6aa985785ff2195f71d591ee6b23b83de43a15b50b83b343c3b536b04
BLAKE2b-256 checksum
How to use checksums
ccb6255a15b51b37a4bb41c86fa15edbaffc97d33ff0634d564c521b5d287641
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp312-cp312-macosx_11_0_arm64.whl

Download URL soccernetpy-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Size 11.2 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d3d564a144178df62ae3f978fd642f72cd20327db371c39d5b627d56df8ff474
BLAKE2b-256 checksum
How to use checksums
e03adf19ed37c42e0a3948faa266427ce248aae48e4c8268c7146dcee55280c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp311-cp311-win_amd64.whl

Download URL soccernetpy-0.1.3-cp311-cp311-win_amd64.whl
Size 10.1 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
cc567fb1e8937c90ac08f8258e91a8afe804761e202f3355bd0847938ba59cc2
BLAKE2b-256 checksum
How to use checksums
a8876338e5c69de1a836759e8967dac135e4d96b7b334089f2e5eb049ebe5c9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4bb46752ef807007228b8b3a3d436412bf951f6a19a7fddff76f5e86c6ae89a1
BLAKE2b-256 checksum
How to use checksums
24b4c04d4565a05c223593ba4aab994397675d5e1760c82ae38ef10a66041aed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9d7f8ef00b605abd88860a1c95a84cd3fdef74bc9a1cacfb4f739c9463a10999
BLAKE2b-256 checksum
How to use checksums
6066f3003654edf1eab8ed3541659ab2ab8243f0179105cc0344baa7af4f6dce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp311-cp311-macosx_11_0_arm64.whl

Download URL soccernetpy-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Size 11.2 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bccbcd3b5f8b8b0f22bed2d21ed54542d06e8d5acfa4753e98e050277ab3e165
BLAKE2b-256 checksum
How to use checksums
49c08891ec747e1c63e2a86ea606630e94d9df81bd2b0e9a309edbe89d0a12e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp310-cp310-win_amd64.whl

Download URL soccernetpy-0.1.3-cp310-cp310-win_amd64.whl
Size 10.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
9e4d435d1f1a407b7a1cb863cef2dcbfa9b313b279571df888cccf25ffb58c24
BLAKE2b-256 checksum
How to use checksums
62e6678d6f36f5ee9e1f9816a2879b3517ba15d2440f3d1b172f103d1606bb62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ffd2b26616c49aee15063d77321c5e00e90aa06a10fcb94c2a51f3dcaedd7a25
BLAKE2b-256 checksum
How to use checksums
705b8d70be06aaba265f9c50d9c23617e61c3f6f2a1258180b3e8d4ed7d80f89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e795b0b5bc3c95e866900c210807a5b06aad6772ec1d7aab56ce7f5f33f25c76
BLAKE2b-256 checksum
How to use checksums
32864973ada194fe1867368b1d78a0c07d2388d42255d69c02395ccc767856a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
54f018bccb6fb718e1e26be0fcd5eddef6508a92808da8e36d431be938043ce2
BLAKE2b-256 checksum
How to use checksums
a7361b9dcc69f38b84246ae39e671429b95c20d529ac65dfdc7aa6f8d8b9858f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
88b6ea4d94a2f1cd13eb074e405be2c84482fe875e5b12c1aea58831a061bbbb
BLAKE2b-256 checksum
How to use checksums
786577a6ba37056a7db265d6882c9c74bd689f41b1f58d72e8aa81fa8589f522
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release files / soccernetpy-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.3-cp38-cp38-manylinux_2_28_aarch64.whl
Size 11.7 MB
Tags CPython 3.8 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
49797b4c1685d42214a05f8988341ed8e4a3ef111ad6f43207607970361d59d3
BLAKE2b-256 checksum
How to use checksums
93201e7f246794f5b310d565580ac9fa4c1d7253126dbd69667e8d997d7335c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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}

Release history Release notifications | RSS feed

0.1.4

36 release files

This release

0.1.3 This release

32 release files

0.1.2

32 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page