Skip to main content

Rugged Science SDK Python Bindings

Project description

Python SDK

This is a wrapper around the Rugged Science SDK with the only difference being that exceptions are automatically thrown. There are no getLastError or getLastErrorString functions.

Installing

The package can be installed either by compiling the sources or installing via python -m pip install rssdk.

Dio Example

from rssdk import RsDio, OutputMode

dio = RsDio()
try:
    dio.setXmlFile("ecs9000.xml")
except Exception as e:
    print(e)
    exit(1)

dio.setOutputMode(1, OutputMode.ModeNpn)

dio.digitalRead(1, 1)
dio.digitalWrite(1, 11, True)

PoE Example

from rssdk import RsPoe, PoeState

poe = RsPoe()
try:
    poe.setXmlFile("ecs9000.xml")
except Exception as e:
    print(e)
    exit(1)

poe.getPortState(3)
poe.setPortState(PoeState.StateDisabled)

Compiling

The Python bindings are built against the standard C++ SDK libraries using pybind11. There are two ways to compile them. Either using Python's build system or by using cmake directly. Both options assume you have have already cloned the repository as shown in the step below.

NOTE: It is best to enable long paths in Windows when compiling using the Python build system.

git clone https://github.com/ruggedscience/SDK
cd SDK

Python Build

Using Python's build system is the recommended way to build the bindings. It will produce a wheel that can be installed using pip and handles the installation of the required build modules. It will install all of the modules inside an isolated virtual environment that will be deleted after compilation is finished.

  1. Install the Python build module.

    python -m pip install build
    
  2. Build the source distribution and wheel.

    python -m build
    
  3. Install the newly built wheel.

    python -m pip install ./dist/<name of wheel file>.whl
    

Cmake build

The cmake build process isn't quite as straightforward but offers more flexibility. Since multiple dependencies are required it is suggested that you create a virtual environment for the build process to use. Note that the resulting package will be installed into that virtual environment. Information on how to do this can be found in the official Python docs.

  1. Install requirements

    python -m pip install pybind11 setuptools_scm mypy
    

    Note: mypy is optional and used to generate stub files. This allows IDEs to offer code completion.

  2. Create build folder

    mkdir build
    cd build
    
  3. Configure cmake

    cmake -DBUILD_PYTHON_BINDINGS=ON -DINSTALL_PYTHON_BINDINGS=ON -DBUILD_SHARED_LIBS=OFF -DINSTALL_XML=OFF -DINSTALL_UTILITIES=OFF -DINSTALL_SDK=OFF ..
    

    Note: On Linux the build type should be set to release using -DBUILD_TYPE=Release.

  4. Build and install

    cmake --build . --target install
    

    Note: On Windows the build type should be set to release using --config Release.

Project details


Download files

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

Source Distribution

rssdk-3.19.tar.gz (250.2 kB view details)

Uploaded Source

Built Distributions

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

rssdk-3.19-cp312-cp312-win_amd64.whl (164.2 kB view details)

Uploaded CPython 3.12Windows x86-64

rssdk-3.19-cp312-cp312-win32.whl (151.0 kB view details)

Uploaded CPython 3.12Windows x86

rssdk-3.19-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rssdk-3.19-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rssdk-3.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (197.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rssdk-3.19-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (206.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

rssdk-3.19-cp311-cp311-win_amd64.whl (163.9 kB view details)

Uploaded CPython 3.11Windows x86-64

rssdk-3.19-cp311-cp311-win32.whl (150.6 kB view details)

Uploaded CPython 3.11Windows x86

rssdk-3.19-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rssdk-3.19-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rssdk-3.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rssdk-3.19-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (207.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

rssdk-3.19-cp310-cp310-win_amd64.whl (162.8 kB view details)

Uploaded CPython 3.10Windows x86-64

rssdk-3.19-cp310-cp310-win32.whl (149.6 kB view details)

Uploaded CPython 3.10Windows x86

rssdk-3.19-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rssdk-3.19-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rssdk-3.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (197.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rssdk-3.19-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (205.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

rssdk-3.19-cp39-cp39-win_amd64.whl (163.0 kB view details)

Uploaded CPython 3.9Windows x86-64

rssdk-3.19-cp39-cp39-win32.whl (149.7 kB view details)

Uploaded CPython 3.9Windows x86

rssdk-3.19-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rssdk-3.19-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rssdk-3.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (197.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rssdk-3.19-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (205.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

rssdk-3.19-cp38-cp38-win_amd64.whl (162.8 kB view details)

Uploaded CPython 3.8Windows x86-64

rssdk-3.19-cp38-cp38-win32.whl (149.5 kB view details)

Uploaded CPython 3.8Windows x86

rssdk-3.19-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rssdk-3.19-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rssdk-3.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (197.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rssdk-3.19-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (205.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

rssdk-3.19-cp37-cp37m-win_amd64.whl (163.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

rssdk-3.19-cp37-cp37m-win32.whl (150.9 kB view details)

Uploaded CPython 3.7mWindows x86

rssdk-3.19-cp37-cp37m-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

rssdk-3.19-cp37-cp37m-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

rssdk-3.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

rssdk-3.19-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (209.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

File details

Details for the file rssdk-3.19.tar.gz.

File metadata

  • Download URL: rssdk-3.19.tar.gz
  • Upload date:
  • Size: 250.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19.tar.gz
Algorithm Hash digest
SHA256 ce89db333ca74946c25c6ffe947e979aa816ed8347c40e6fdb485352ecf9b9f5
MD5 6ac67b0d53a5362e91f68f831803cf23
BLAKE2b-256 6fc817b7c04223df3ead0e36aab636f298c5d3980d5c10c14a54464ddf5c3aaf

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rssdk-3.19-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 164.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d9a2f909f65a03e132c345b936d6ae8f6dba0ec05fb5b1d0baadb73150e1780
MD5 89e1d86124aeeadd7998e78661e6c5e1
BLAKE2b-256 0136f3d24d7eee7808a8070055437cfeb3eb0a42aa2dcdbe183c4f53230df8e8

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp312-cp312-win32.whl.

File metadata

  • Download URL: rssdk-3.19-cp312-cp312-win32.whl
  • Upload date:
  • Size: 151.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ff49c9872e7a7985ac26446812e5a9255ea526a8ad166b0d88bd9026ba5dbe2c
MD5 5feab60120d18257bf63a3a0c5364c21
BLAKE2b-256 37d2c0e858afd4bdd46090a5b6a9347e4e7fc46e1b27bbafcfa1bdc805142e13

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1fc0f547f7192152e21f4c1e3a69d130ce3d0badb69bd122611db7e48551e23
MD5 9d60f31640707ebd9e8b72a9e5c11777
BLAKE2b-256 dcf974df15f7020a6be8bf71a2665616e53308184d93b45f2b5453e67b07dbe0

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rssdk-3.19-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cdc6f8b8f1da994be0a6e56c7a28b6ec6e687e3eba5d5872eb4ac59b5382264e
MD5 d0266412af0d18e717078430a65347e1
BLAKE2b-256 0dac6a2f033be7ed5c213278aeaf298f1966454e7a254038804308626471ddf1

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0347a7d90fef5a9757f1a7ae962573643c8bed169f5ec04c955fd903475767e
MD5 cfa32f74bb66956d60200f1039d5c2f2
BLAKE2b-256 809d027e386696c67bba3be1ac3dc339aaffd67270917d300ceb3d08647624fa

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ddd36f9ea60103b8bf7fdb0e828e63031f0a8f7c43bcc89a23c58a7968a6af0
MD5 74a6958ec274b6d87554c1598aae7d52
BLAKE2b-256 0c676ef943ce5db1765ffe5b90d52d1e193e054663f0e2fd6b95e18c1d1e16d7

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rssdk-3.19-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 163.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9fc7b2f9d0025e17d790b95e85558c4062bede1e7754e5eb31d6d3c407064c12
MD5 4c749d5f195832f4b4b13c5223e98f4b
BLAKE2b-256 ba65460bdab4232b5f064bd200fa09318c0ead2d234497d1c334aa957f8fc7a7

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp311-cp311-win32.whl.

File metadata

  • Download URL: rssdk-3.19-cp311-cp311-win32.whl
  • Upload date:
  • Size: 150.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5ec9b34cb9d0c2518062589da5fba9db9f75cdff19ce01c58ee1f95efa273817
MD5 bd9d9406cb13734c73c58d42aa23169a
BLAKE2b-256 9c80a4f92e4924c64be80ee98e1f154db6c02dc12aabe6391b5b018d1f0aa7ca

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 579527f4f7cd248b3ef610899fd61c1ac7cdad579d567710bf0fa8cca24a9664
MD5 84230c6b817fd67bfd6b4a4fd56bbdb4
BLAKE2b-256 52e0692414f630d9d233fa6cd506e333a87471842423a31f61c401c65800743f

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rssdk-3.19-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96b71c94e450bd667a7308f26435b6ca4c7958864dd95b5408b118623a706151
MD5 11244867b01c683dca9a21bc5fc589fc
BLAKE2b-256 0d003dbf0d41b5fb94f42e0a59a8995671208f41d764a9e49e7811c3a8a97ca4

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1631ad0253acf87e068eb66899e5a31ba37af5da179666f3ff9d4116d91ce7d
MD5 c06b7b78aca6036f0e689ba1f1c839fc
BLAKE2b-256 72484bcd8019b312db3b0bf64e4922bc3af186843f58c5a8d662e218021a6bf2

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 986bd6596663a356d1e86c96691c99ebd055a3cd4d7bf3c0896167e095de4071
MD5 b3cd0e5fbe5bb140a77cd40607cd0261
BLAKE2b-256 b7b2a417ccb109eed635b752576962dde4f750b2f2d1bea4e6280ba10987593b

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rssdk-3.19-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 162.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 37209b753067a007dab21277ad05b09985f66ed3c5a124e0745f7e1287910313
MD5 2532737dd379d931bfdd7ca2c768cbbd
BLAKE2b-256 df898bab4913ad3b94e685398778264e3286806ec2f4e63db955a0d41505d470

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp310-cp310-win32.whl.

File metadata

  • Download URL: rssdk-3.19-cp310-cp310-win32.whl
  • Upload date:
  • Size: 149.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c8dfc9a1d89503b2e5f7e4f7689eae0858813c7b5b2ce79546dc3ab62083911f
MD5 33a0c662a45c12b9817480cbc5650b9b
BLAKE2b-256 42b17a2105cd6b02ca4d36fdab4ffc5c44d10e7a93f84c2fa9024caf9c00c348

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25abf47f874d9e7cfc89a69c8cc7788dc544c93cc627ad73d1c4984c8a509450
MD5 5a5ca98ae27cf34dd34ebcc0e415fe6f
BLAKE2b-256 2b2e6516173ddabb5d868085f265b3d6fc1008f2f1ded994ac69da4a8ba58440

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rssdk-3.19-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad10c6d5333243727f9902c49bdae887a278aa193c1772c93b0c17e700e3c100
MD5 acfe0817515bf8564419b86b0c23d2ee
BLAKE2b-256 e56b4dd7a64bf3ec03c580b74ebed69286e8ef8a4317c6f39f6da4125373e195

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3f4aaa5ca3973a281200a0108cfab0a361401c9bbe1e752a5cf1d55b3b21c20
MD5 cb13a5a36e80fac34e55079c4c048079
BLAKE2b-256 ac227f04f48f6d039e14b8b0db16579cfab643df212d20bc4aacea96497461c0

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8a38bdecdac2eaff282565cffee65f5acaad60782b506006c90a1f939c510ef
MD5 4f3aa3e2f7a91cdfb8115b5ab2bd21d8
BLAKE2b-256 c79dc56671c8ae2eabe0ff51b511a67012436345927d0abf3eb5f03436f6f82d

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rssdk-3.19-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 163.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a59dfeb40e3145b2cf24623a18de3f06e0993f29e819435e8e7022907c44d915
MD5 1133923aae438837a3cb8404ab489652
BLAKE2b-256 11dc76cbe2232ec9cec377435a7d514a4b3ce63eb08f28e899bcbecc40ab5d4b

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp39-cp39-win32.whl.

File metadata

  • Download URL: rssdk-3.19-cp39-cp39-win32.whl
  • Upload date:
  • Size: 149.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 031ebca4fc77132878805220d6d82abf04b2c4a8c386f62ec7daac728bf75baa
MD5 e768a666f1f01f884c52c99bcb07994c
BLAKE2b-256 8c28c8f51a3456152a7fb86bce95cd5725bde20e506e21d601bdd83f59ca01fb

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rssdk-3.19-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e95171c98c95180d977711e03f78bbc580b1ab57e722f8c14615976ac97cc417
MD5 0b18a69e25983965721e5d5509df7ecc
BLAKE2b-256 af022caeefe85042dc1b41806bdd518e0ddcbc4ea56d890acdd8790ad097cada

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rssdk-3.19-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2cc4b233709a13175c94701565feb9021f59eaee7bbecbe927be5048e9d03c15
MD5 cc9fc0e1e1e1ac15f478787546a8a997
BLAKE2b-256 dbfa0c27713061b605a4a2c55da511821db843ae698af2f31e279b705b2e7514

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07bd0b3458b35a38df39e22c2ca66698d094bd182be32b1732a53e25f472cb6b
MD5 ef46963f97973c77056a0a0ace7698e0
BLAKE2b-256 3d6d01a1ca483c4573f62ef2ce70817c2a1a69e01aa81f3888d05cf1e3953acb

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffeea86efce6679fe5632b87c33fdc58a67230415fef431371c066763c23ec7d
MD5 16f79875b4335bd48191b78f09624e29
BLAKE2b-256 6ae291377df868e551317cf6ca822ecfd4690d3654d33ecb8e7b2bac2bafa5a8

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rssdk-3.19-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 162.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c12cdae875c726c513e7434e8191d08c226e76f089c818020a90697ecad6948e
MD5 733bc179a61e35a1fa8c06cef317ca72
BLAKE2b-256 d3ba0e639a9321c3632b1b8614e8c704c12e04a9127d249748ad657c21881947

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp38-cp38-win32.whl.

File metadata

  • Download URL: rssdk-3.19-cp38-cp38-win32.whl
  • Upload date:
  • Size: 149.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 16c12f2d5915779b14f2197f0d082b32ead35354efe6cda409b3e3c4cf1ce407
MD5 5981a2a1cf416c8f515c6eb50b4c0d3f
BLAKE2b-256 32e5343283d8dfe0c6e97f9202eb1762264f00e28b290b34734605ecff4257a1

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rssdk-3.19-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c843d5f191a1a5580c144e0d86872946095d356b7a4c8c64e361ae4da2e3250
MD5 350816ecedd0f5f97227052daa541c1b
BLAKE2b-256 5bc88ba19490f34762db555bcea4313c841882707c6d79640885058d8f581a37

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rssdk-3.19-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6681646af45236cd6239bc222a8da305df58bf46fae1c2094ccd7e8969ac113
MD5 89dfe33777068c09b88c4df112dbc2f6
BLAKE2b-256 470a168277626d6a1ac41836f8097b128cbeb751e6429a3594391660978bd04c

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f80f0659ffbf3fe04ae918eafd73424ffa0f3142ddd2946cf34f707e65a4e2b
MD5 7cbe8061f5ceb73fd04c0c9c33f909db
BLAKE2b-256 ebcea62c927efbab6e77fad97277f012c877cf48b83e54c3675d1460c0c62acc

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2690bef853f83944950e2959196d775d7764c1fbfa1cd76ebe6771e95897b06b
MD5 2540fc202a388f2e55a684443d35b8b2
BLAKE2b-256 3cb2b9bc48bf16b8386bbc79ccb67e09e4ee3a5ae792d64b090397b619a01f9c

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: rssdk-3.19-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 163.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2bcca827947adc0122fd8daca47c44b9e80ba78893d232d83f459a43c03732b8
MD5 954a7f33b8ac85de130168839102d3fc
BLAKE2b-256 55908251a8c0c5b0024577ae65836e640b61bc850e982995fa51ee871edc9e7d

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp37-cp37m-win32.whl.

File metadata

  • Download URL: rssdk-3.19-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 150.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 207e26bdc0790cf8636058cb236d5a012b8177e855f5c4da0e4734eb7b0cfa94
MD5 23c7e9592e4a4e852e120c02d3757883
BLAKE2b-256 4f542128a1a6375f91ef9a2ddb6edffc19d59a48e3a0dd2d3841f5ea84fc6ee6

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fa93ab4ee050d2a684cdeee3bb79ad93c2c3fdf5295d4647acceb58beebdbc4
MD5 3ed106a373e7d2903c0b38bf1e88ba18
BLAKE2b-256 d6b816d556712e0c36b335720a53a9f4605056c416da618544f5e69ecf5b50e2

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rssdk-3.19-cp37-cp37m-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for rssdk-3.19-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7538dd49d128d80fe7919b33ab0ccc872f2cf04b35c57fc4d9b4a9a595284d3
MD5 0b92af1702d8e2f41134335c752c4fbc
BLAKE2b-256 dd53bb2ef15549ecb32cdfed6c6da165d39782ff713b1721075ed2c7c4fde8c5

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 753e11cb6c6a85bf222de2631f426ebd0d30c26402fac6608835b1c00e974676
MD5 b66684bb6243bad53ff946d35e7704c9
BLAKE2b-256 095b1bf927e97643e41eb351a916fa4efd235f42862b2835964932a75960896f

See more details on using hashes here.

File details

Details for the file rssdk-3.19-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rssdk-3.19-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b04921b83a7750a63fe139f1c3bd96932d5149c72c16ed04eed12ef6d7181ced
MD5 508e48783035f1349b6a2ec96d73a186
BLAKE2b-256 899fe5bf6af281bb9868d230e4a0afd0130bf4d0bbee7e6d416c000d7ce4dce4

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