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 support both Apple Silicon (aarch64-apple-darwin) and Intel (x86_64-apple-darwin) Macs. Intel wheels bundle the custom ONNX Runtime build from custom-ort-macos-x86-64, because Microsoft no longer publishes Intel macOS binaries.

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.4

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.4
File Size Uploaded
soccernetpy-0.1.4.tar.gz 27.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for soccernetpy 0.1.4
File
soccernetpy-0.1.4-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.4-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.4-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.4-cp315-cp315-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.4-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.4-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.4-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
soccernetpy-0.1.4-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
soccernetpy-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.4-cp314-cp314-macosx_11_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 11.0+ x86-64 Details
soccernetpy-0.1.4-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
soccernetpy-0.1.4-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
soccernetpy-0.1.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
soccernetpy-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.4-cp313-cp313-macosx_11_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 11.0+ x86-64 Details
soccernetpy-0.1.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
soccernetpy-0.1.4-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
soccernetpy-0.1.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
soccernetpy-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.4-cp312-cp312-macosx_11_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 11.0+ x86-64 Details
soccernetpy-0.1.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
soccernetpy-0.1.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
soccernetpy-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.4-cp311-cp311-macosx_11_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 11.0+ x86-64 Details
soccernetpy-0.1.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
soccernetpy-0.1.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
soccernetpy-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.4-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
soccernetpy-0.1.4-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
soccernetpy-0.1.4-cp38-cp38-manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARM64 Details

Total release size: 400.2 MB

Release files / soccernetpy-0.1.4.tar.gz

Download URL soccernetpy-0.1.4.tar.gz
Size 27.7 kB
Tags Source
SHA-256 checksum
How to use checksums
7fdd54f658fa321cafa577e42efa0d182bdabe893fcf4ec0e4e87336537f6374
BLAKE2b-256 checksum
How to use checksums
bc6dfb27a544392887d289d642483df42984329d2e57236c4f86d1e7ee73d977
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
dd9c1a7c30b37a798c690c1c59e4c91b8a749a0beacb5e8044e6c84003c0edea
BLAKE2b-256 checksum
How to use checksums
c0598b95857d745ab93d3f5ecc82e86afd4e306946584f15798de1e0595f805b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
865c4635b066ca08c33a3459a2cc430a3f16e165237cdd7c51305726a008979a
BLAKE2b-256 checksum
How to use checksums
49d9edc9969e18e99a7726dab2e8d7abc407d82bacb3f0a536e4d75d290b954a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
12eb5644ed5619436cde276aaa313e4af8b72c931e7d6c7c8d250f6d69907024
BLAKE2b-256 checksum
How to use checksums
ae6fbcaac84582eaaf6affb86ebe4b76ffbf341f7b979fb985ed3fb8a9e8947c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
35db657accc9f594fe29203387df8e65e9faf3671251154ee1845f9e2cb6ca04
BLAKE2b-256 checksum
How to use checksums
bc83c9738285ffda64c814b48ce4b04aa04a97af63f5f522a24703bdb1ec7e30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
4d59626d2aa6321c3d1060ed2911a4e69fbaa397bea9be955e85e8caa10e8aeb
BLAKE2b-256 checksum
How to use checksums
a7680098bcdc2f3b301fa594cf0c860ae9cecca1d01e2b8c75a8ebf4f3519334
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
2c4b35433d1eccc67c6bd60b0641bb22c24621695f40a8dcdaec3f8b57d732e1
BLAKE2b-256 checksum
How to use checksums
6a66a1a228446d90ce5b165437853f49c5202f126be8adf880fba5f7bcf9a3d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp314-cp314-win_arm64.whl

Download URL soccernetpy-0.1.4-cp314-cp314-win_arm64.whl
Size 9.7 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
51dc838685390b7c31d5c575e65103a374052cbd9e72017ce2a8db7c2f01a173
BLAKE2b-256 checksum
How to use checksums
3093e8c2e34c08ed830e85153867f6eb5fa3c0893d5a161072ad9830b811a99f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp314-cp314-win_amd64.whl

Download URL soccernetpy-0.1.4-cp314-cp314-win_amd64.whl
Size 10.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
86a68bf0af69ba188a0e344f1cd50d170dd0ed9a34d8d7a85be17c1a8dc910bf
BLAKE2b-256 checksum
How to use checksums
4991ba1aebdc7444a930e1055f7ab125812e57ea9a1d8428f07d155b7a2a9a9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
840cc807fa7797fa4baae9e1376ab9bef63aca052bdc02c7d85f04cd8490626a
BLAKE2b-256 checksum
How to use checksums
89657ca306ca3d001af4f99f48f32edb02db381e85b67b78dd20005268116687
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
1a5094463fd0af5ee371ef93fa82ecf5ca572a278c38aa73cc9f2e1a08294099
BLAKE2b-256 checksum
How to use checksums
adb9f71cfbf5b3ae41ccce9ebfba9b94eba37c4a37f42cef2d1a5736b329ad8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp314-cp314-macosx_11_0_x86_64.whl

Download URL soccernetpy-0.1.4-cp314-cp314-macosx_11_0_x86_64.whl
Size 11.4 MB
Tags CPython 3.14 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
95a4fa656ac5cf15ed64aaf7091397944dbe4174ff3b255f3159c67a8f952030
BLAKE2b-256 checksum
How to use checksums
9cf6971b6b813f7e6e7c2a14205e2967c683a84ed851a60b497b55814e62c787
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp314-cp314-macosx_11_0_arm64.whl

Download URL soccernetpy-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Size 11.1 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c815370ff2f148c53ad322c139f39fe458195348dcddc98a7b50b6aa92e3f645
BLAKE2b-256 checksum
How to use checksums
1c349237064a159d947209e1d72d2c12bb0c660cedec72f068b5b8bf53d9b5c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp313-cp313-win_arm64.whl

Download URL soccernetpy-0.1.4-cp313-cp313-win_arm64.whl
Size 9.7 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
06c3fd77733df57ce5ef76d413cd9bdb1f2324aa0535ebd2b1ad3b01c924ec74
BLAKE2b-256 checksum
How to use checksums
823b256119655184282f4f037cc25dca7b06db2aab8d0d8eb3e84df931126d3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp313-cp313-win_amd64.whl

Download URL soccernetpy-0.1.4-cp313-cp313-win_amd64.whl
Size 10.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
97ff4a68f6b1a699718316d4f7314b5c548b2692e0acd79e1793864b52ab2416
BLAKE2b-256 checksum
How to use checksums
2647ab19057a8e05e1b27247d5925b800c509760249e31f0068b64c0a5a7e6a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
b03b655358d26b8ca7356e9ab96bfd14707a536378adc0fd8bb629cb6745d697
BLAKE2b-256 checksum
How to use checksums
d37613c8537da348b32df01aad77ca64649fb974e59eeda20b1941bbbcff607f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
4427742c02de8674d04f3c38aa5a8d78dc67d7400530499cb787b5026ab71ebf
BLAKE2b-256 checksum
How to use checksums
52f75056cfc4e8fc3772a5dbcecb733819a2dc51a1d4c5897c94d1644fbb5c8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp313-cp313-macosx_11_0_x86_64.whl

Download URL soccernetpy-0.1.4-cp313-cp313-macosx_11_0_x86_64.whl
Size 11.4 MB
Tags CPython 3.13 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
219243ab00fe0eb643fda75df7549953793795638a937f7690f8f16c3ca93731
BLAKE2b-256 checksum
How to use checksums
93f01378a1d1e29c40bacd98e71058b625703d044bf5576694d836529c1d7b22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL soccernetpy-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Size 11.1 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2869488de83d73448e4a67897b0b9e3b9d8a9a05c827a276be9bb975b5498112
BLAKE2b-256 checksum
How to use checksums
c6d7d3d9bc755aa35f164a4062f1078d295c5702c662b85fad1a5d3a344b87d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp312-cp312-win_arm64.whl

Download URL soccernetpy-0.1.4-cp312-cp312-win_arm64.whl
Size 9.7 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
b9edfefe4574c3429aea74cb64cdd7c14d29386d9903398929410fa097264aa9
BLAKE2b-256 checksum
How to use checksums
883f2997dc9a86697f1e4b83345d1db10101baca1b76305297640cb34a841fb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp312-cp312-win_amd64.whl

Download URL soccernetpy-0.1.4-cp312-cp312-win_amd64.whl
Size 10.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c4a30c18f4098d221b8d5398980990d89d96d1ab0753c1368ee2eb1f413f77eb
BLAKE2b-256 checksum
How to use checksums
6c287fd0b040fc5ab9c10631b8ced8eee9a4082b85c951460bd1c2c9301bfa14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
6f6ec76752753fa55ecb2942aa470578fd72fd2d7f88633bc828ac719bb38668
BLAKE2b-256 checksum
How to use checksums
8fe7195bed10532e998167c93aad7009f0f8cd5849397cea7e21c3a0c24e13b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
c90ec5839774f7943028bde52eec1f2aa828478497cbd9b4bf192659af9c905f
BLAKE2b-256 checksum
How to use checksums
6b0d9c0a5a65b1f91d239a030e6d68574c673d796b44f6427f110d29f5a8bce0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp312-cp312-macosx_11_0_x86_64.whl

Download URL soccernetpy-0.1.4-cp312-cp312-macosx_11_0_x86_64.whl
Size 11.4 MB
Tags CPython 3.12 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
4c6478f3ff86a9098c4e1298e56ce67e3bd5e0ad26cf7bf552a64ac2b0988771
BLAKE2b-256 checksum
How to use checksums
2cd26db78cac14e1dbe0467b21f8698cbc470ae93a0e3d8f50359b9e83b61c79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL soccernetpy-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Size 11.1 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3eb58c29044bdd94c301332622fbf30b2cdb804a51e1773293219a85479e4403
BLAKE2b-256 checksum
How to use checksums
731061bf90ac4f14fc68cae1118c5e8ec0aa0c4c4ad2d2c3f2a8ee0f8311166e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp311-cp311-win_amd64.whl

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

Download URL soccernetpy-0.1.4-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
34b4e8898853e9f61de2fd90b186483df9435fbdbae8e27a13893643da68fc9e
BLAKE2b-256 checksum
How to use checksums
ddf3955d7330ac249795c1509961005b6d38b2266a19bd8ca01f38422a0755d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
a251e91ff063ac0a45b0cfb0d1649c685334c032346cd89bc8b484f1a5dc1351
BLAKE2b-256 checksum
How to use checksums
11e6f87e40f904ccbe937b6dad1bb48f7a66a5745eeb46f23fe0bc97c4f3bad0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp311-cp311-macosx_11_0_x86_64.whl

Download URL soccernetpy-0.1.4-cp311-cp311-macosx_11_0_x86_64.whl
Size 11.4 MB
Tags CPython 3.11 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
68aa6f62bf354ca0966b742f3e7d488748a851c0dc7a139adf02057823d9f724
BLAKE2b-256 checksum
How to use checksums
4b25c57e6762da775abf27d1b1f37c414a5684705ea3e77c271018b00cba4cf8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL soccernetpy-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Size 11.1 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7e12dad8473f426d802a8e0ae0e9f443b3490bd8c0f97b6cff0e7a215d95976a
BLAKE2b-256 checksum
How to use checksums
d7cc46bfa17346753a5a98b36eea028cac33ab342c98ab9b8787ec875ad334aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp310-cp310-win_amd64.whl

Download URL soccernetpy-0.1.4-cp310-cp310-win_amd64.whl
Size 10.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
71faa819f00f862dcaa2619b86ba7dfb4a8d1ac33009c1a7a437aff7c0f5ee30
BLAKE2b-256 checksum
How to use checksums
d8e6aefb1745c36b95244bfc16faa9d33674fd3c04e5e60d36b908ad6a02ba35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
30814e9d9ce2af90f44fb6225950e701d9e628dfc274c2e889fd227d9fd27049
BLAKE2b-256 checksum
How to use checksums
281423c18ce9e1625fd32a6d5c05326ae58f4556ab62994da512f9f1bb4a9617
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
ae4f49d2ae6e3f1ad1a196743bc8f8415025b0f199fd89bb373cb5708db2c30e
BLAKE2b-256 checksum
How to use checksums
89a121395218c416ddaa438414250cfaedce081eae64967d4f995401a76391ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL soccernetpy-0.1.4-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
e50abf29e842b46c4dfbe76df8765f94ad7dd77d493b5f61eed4850cbd3e1f63
BLAKE2b-256 checksum
How to use checksums
2e726725ace2845f2411ae3ac431bedbc8f2a2484da5b6291d3437344b9f66ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
837ca1c287af001863bdb3c2e388a2bc6d6447adc98984f70744519cc7b5ee5f
BLAKE2b-256 checksum
How to use checksums
35f80f54df1c58690a07266d6aa70e68403521364cb66272f71faeab2ae26adc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.4-cp38-cp38-manylinux_2_28_aarch64.whl

Download URL soccernetpy-0.1.4-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
505204b28f3b3f1831bb574f30f8681b8d92bb5a5a06d3be6680dfd26d367fd3
BLAKE2b-256 checksum
How to use checksums
1f7c6537befd2ac0a90395c24ae97c28c721ef22240b1a9176c03907296c937f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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

This release

0.1.4 This release

36 release files

0.1.3

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