ruapu


Nameruapu JSON
Version 0.1.0 PyPI version JSON
download
home_page
SummaryThe Python binding of ruapu.
upload_time2024-02-27 13:33:00
maintainer
docs_urlNone
author
requires_python>=3.5
licenseMIT
keywords ruapu cpu isa detect
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # ruapu

![GitHub License](https://img.shields.io/github/license/nihui/ruapu?style=for-the-badge)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/nihui/ruapu/ci.yml?style=for-the-badge)

Detect CPU ISA features with single-file

<table>
<tr><td>CPU</td><td>&#9989; x86, x86-64<br/>&#9989; arm, aarch64<br/>&#9989; mips<br/>&#9989; powerpc<br/>&#9989; s390x<br/>&#9989; loongarch<br/>&#9989; risc-v<br/>&#9989; openrisc</td><td rowspan=3>
  
```c
#define RUAPU_IMPLEMENTATION
#include "ruapu.h"

int main()
{
    // initialize ruapu once
    ruapu_init();

    // now, tell me if this cpu has avx2
    int has_avx2 = ruapu_supports("avx2");

    return 0;
}
```

</td></tr>
<tr><td>OS</td><td>&#9989; Windows<br/>&#9989; Linux<br/>&#9989; macOS<br/>&#9989; Android<br/>&#9989; iOS<br/>&#9989; FreeBSD<br/>&#9989; NetBSD<br/>&#9989; OpenBSD</td></tr>
<tr><td>Compiler</td><td>&#9989; GCC<br/>&#9989; Clang<br/>&#9989; MSVC<br/>&#9989; MinGW</td></tr>
</table>

#### Best practice for using `ruapu.h` in multiple compilation units

1. Create one `ruapu.c` for your project
2. `ruapu.c` is **ONLY** `#define RUAPU_IMPLEMENTATION` and `#include "ruapu.h"`
3. Other sources `#include "ruapu.h"` but **NO** `#define RUAPU_IMPLEMENTATION`

## Let's ruapu

### ruapu with C

<table>

<tr><td>

Compile ruapu test program

```shell
# GCC / MinGW
gcc main.c -o ruapu
```
```shell
# Clang
clang main.c -o ruapu
```
```shell
# MSVC
cl.exe /Fe: ruapu.exe main.c
```
</td>
<td>

Run ruapu in command line

```shell
./ruapu 
mmx = 1
sse = 1
sse2 = 1
sse3 = 1
ssse3 = 1
sse41 = 1
sse42 = 1
sse4a = 1
xop = 0
... more lines omitted ...
```

</td></tr>
</table>

### ruapu with Python

<table>

<tr><td>

Compile and install ruapu library

```shell
# from source code
pip3 install .
```
</td>
<td>

Use ruapu in python

```python
import ruapu

ruapu.supports("avx2")
# True

ruapu.supports(isa="avx2")
# True
```
</td></tr>
</table>

<details>
<summary>Github-hosted runner result (Linux)</summary>

```
mmx = 1
sse = 1
sse2 = 1
sse3 = 1
ssse3 = 1
sse41 = 1
sse42 = 1
sse4a = 1
xop = 0
avx = 1
f16c = 1
fma = 1
avx2 = 1
avx512f = 0
avx512bw = 0
avx512cd = 0
avx512dq = 0
avx512vl = 0
avx512vnni = 0
avx512bf16 = 0
avx512ifma = 0
avx512vbmi = 0
avx512vbmi2 = 0
avx512fp16 = 0
avxvnni = 0
avxvnniint8 = 0
avxifma = 0
```

</details>

<details>
<summary>Github-hosted runner result (macOS)</summary>

```
mmx = 1
sse = 1
sse2 = 1
sse3 = 1
ssse3 = 1
sse41 = 1
sse42 = 1
sse4a = 0
xop = 0
avx = 1
f16c = 1
fma = 1
avx2 = 1
avx512f = 0
avx512bw = 0
avx512cd = 0
avx512dq = 0
avx512vl = 0
avx512vnni = 0
avx512bf16 = 0
avx512ifma = 0
avx512vbmi = 0
avx512vbmi2 = 0
avx512fp16 = 0
avxvnni = 0
avxvnniint8 = 0
avxifma = 0
```

</details>

<details>
<summary>Github-hosted runner result (macOS M1)</summary>

```
neon = 1
vfpv4 = 1
cpuid = 0
asimdhp = 1
asimddp = 1
asimdfhm = 1
bf16 = 0
i8mm = 0
sve = 0
sve2 = 0
svebf16 = 0
svei8mm = 0
svef32mm = 0
```

</details>

<details>
<summary>Github-hosted runner result (Windows)</summary>

```
mmx = 1
sse = 1
sse2 = 1
sse3 = 1
ssse3 = 1
sse41 = 1
sse42 = 1
sse4a = 1
xop = 0
avx = 1
f16c = 1
fma = 1
avx2 = 1
avx512f = 0
avx512bw = 0
avx512cd = 0
avx512dq = 0
avx512vl = 0
avx512vnni = 0
avx512bf16 = 0
avx512ifma = 0
avx512vbmi = 0
avx512vbmi2 = 0
avx512fp16 = 0
avxvnni = 0
avxvnniint8 = 0
avxifma = 0
```

</details>

<details>
<summary>FreeBSD/NetBSD/OpenBSD VM result (x86_64)</summary>

```
mmx = 1
sse = 1
sse2 = 1
sse3 = 1
ssse3 = 1
sse41 = 1
sse42 = 1
sse4a = 1
xop = 0
avx = 1
f16c = 1
fma = 1
fma4 = 0
avx2 = 1
avx512f = 0
avx512bw = 0
avx512cd = 0
avx512dq = 0
avx512vl = 0
avx512vnni = 0
avx512bf16 = 0
avx512ifma = 0
avx512vbmi = 0
avx512vbmi2 = 0
avx512fp16 = 0
avxvnni = 0
avxvnniint8 = 0
avxifma = 0
```

</details>


## Features

* Detect **CPU ISA with single-file**&emsp;&emsp;&emsp;
_`sse2`, `avx`, `avx512f`, `neon`, etc._
* Detect **vendor extended ISA**&emsp;&emsp;&emsp;&emsp;
_apple `amx`, risc-v vendor ISA, etc._
* Detect **richer ISA on Windows ARM**&emsp;&emsp;
_`IsProcessorFeaturePresent()` returns little ISA information_
* Detect **`x86-avx512` on macOS correctly**&emsp;
_macOS hides it in `cpuid`_
* Detect **new CPU's ISA on old systems**&emsp;
_they are usually not exposed in `auxv` or `MISA`_
* Detect **CPU hidden ISA**&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;
_`fma4` on zen1, ISA in hypervisor, etc._

## Supported ISA _&emsp;(more is comming ... :)_

|CPU|ISA|
|:---:|---|
|x86|`mmx` `sse` `sse2` `sse3` `ssse3` `sse41` `sse42` `sse4a` `xop` `avx` `f16c` `fma` `fma4` `avx2` `avx512f` `avx512bw` `avx512cd` `avx512dq` `avx512vl` `avx512vnni` `avx512bf16` `avx512ifma` `avx512vbmi` `avx512vbmi2` `avx512fp16` `avxvnni` `avxvnniint8` `avxifma`|
|arm|`edsp` `neon` `vfpv4` `idiv`|
|aarch64|`neon` `vfpv4` `cpuid` `asimdrdm` `asimdhp` `asimddp` `asimdfhm` `bf16` `i8mm` `mte` `sve` `sve2` `svebf16` `svei8mm` `svef32mm` `pmull` `crc32` `aes` `sha1` `sha2` `sha3` `sha512` `sm3` `sm4` `amx`|
|mips|`msa`|
|powerpc|`vsx`|
|s390x|`zvector`|
|loongarch|`lsx` `lasx`|
|risc-v|`i` `m` `a` `f` `d` `c` `zfa` `zfh` `zfhmin` `zicsr` `zifencei` `zmmul` |
|openrisc| `orbis32` `orbis64` `orfpx32` `orfpx64` `orvdx64` |

## Techniques inside ruapu
ruapu is implemented in C language to ensure the widest possible portability.

ruapu determines whether the CPU supports certain instruction sets by trying to execute instructions and detecting whether an `Illegal Instruction` exception occurs. ruapu does not rely on the cpuid instructions and registers related to the CPU architecture, nor does it rely on the `MISA` information and system calls of the operating system. This can help us get more detailed CPU ISA information.

## FAQ
#### Why is the project named ruapu

&emsp;ruapu is the abbreviation of rua-cpu, which means using various extended instructions to harass and amuse the CPU (rua!). Based on whether the CPU reacts violently (throws an illegal instruction exception), it is inferred whether the CPU supports a certain extended instruction set.

#### Why is ruapu API designed like this

&emsp;We consider gcc builtin functions to be good practice, saying `__builtin_cpu_init()` and `__builtin_cpu_supports()`. ruapu refers to this design, which can be a 1:1 replacement for gcc functions, and supports more operating systems and compilers, giving it better portability.

#### Why does SIGILL occur when executing in debugger or simulator, such as `gdb`, `lldb`, `qemu-user`, `sde` etc.

&emsp;Because debuggers and simulators capture the signal and stop the ruapu signal handler function by default, we can continue execution at this time, or configure it specifically, such as `handle SIGILL nostop` in gdb. ruapu technically cannot prevent programs from stopping in debuggers and emulators

#### How to add detection capabilities for new instructions to ruapu

&emsp;_Assume that the new extended instruction set is named `rua`_

1. Add `RUAPU_INSTCODE(rua, rua-inst-hex) // rua r0,r0` and `RUAPU_ISAENTRY(rua)` in `ruapu.h`
2. Add `PRINT_ISA_SUPPORT(rua)` in `main.c` to print the detection result
3. Add entries about `rua` in README.md
4. Create a pull request!

&emsp;_https://godbolt.org/ is a good helper to view the compiled binary code of instructions._

## Repos that use ruapu
* [ncnn](https://github.com/Tencent/ncnn) &emsp;_High-performance neural network inference framework_
* [libllm](https://github.com/ling0322/libllm) &emsp;_Efficient inference of large language models_

## Credits
* [@nihui](https://github.com/nihui) &emsp;_Write the initial POC code and ruapu maintainer_
* [@kernelbin](https://github.com/kernelbin) &emsp;_Implement exception handling for Windows_
* [@zchrissirhcz](https://github.com/zchrissirhcz) &emsp;_Detect x86 FMA4_
* [@MollySophia](https://github.com/MollySophia) &emsp;_Fix C++ export symbol_
* [@strongtz](https://github.com/strongtz) &emsp;_Detect more aarch64 ISA_
* [@monkeyking](https://github.com/monkeyking) &emsp;_Detect apple arm64 AMX_
* [@junchao-loongson](https://github.com/junchao-loongson) &emsp;_Add loongarch support_
* [@ziyao233](https://github.com/ziyao233) &emsp;_Detect more risc-v ISA_
* [@dreamcmi](https://github.com/dreamcmi) &emsp;_Detect more risc-v ISA_
* [@cocoa-xu](https://github.com/cocoa-xu) &emsp;_Add FreeBSD support, python support_
* [@YuzukiTsuru](https://github.com/YuzukiTsuru) &emsp;_Add OpenRISC support_

## License
MIT License

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ruapu",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "ruapu,cpu,isa,detect",
    "author": "",
    "author_email": "nihui <shuizhuyuanluo@126.com>, cocoa-xu <i@uwucocoa.moe>",
    "download_url": "",
    "platform": null,
    "description": "# ruapu\n\n![GitHub License](https://img.shields.io/github/license/nihui/ruapu?style=for-the-badge)\n![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/nihui/ruapu/ci.yml?style=for-the-badge)\n\nDetect CPU ISA features with single-file\n\n<table>\n<tr><td>CPU</td><td>&#9989; x86, x86-64<br/>&#9989; arm, aarch64<br/>&#9989; mips<br/>&#9989; powerpc<br/>&#9989; s390x<br/>&#9989; loongarch<br/>&#9989; risc-v<br/>&#9989; openrisc</td><td rowspan=3>\n  \n```c\n#define RUAPU_IMPLEMENTATION\n#include \"ruapu.h\"\n\nint main()\n{\n    // initialize ruapu once\n    ruapu_init();\n\n    // now, tell me if this cpu has avx2\n    int has_avx2 = ruapu_supports(\"avx2\");\n\n    return 0;\n}\n```\n\n</td></tr>\n<tr><td>OS</td><td>&#9989; Windows<br/>&#9989; Linux<br/>&#9989; macOS<br/>&#9989; Android<br/>&#9989; iOS<br/>&#9989; FreeBSD<br/>&#9989; NetBSD<br/>&#9989; OpenBSD</td></tr>\n<tr><td>Compiler</td><td>&#9989; GCC<br/>&#9989; Clang<br/>&#9989; MSVC<br/>&#9989; MinGW</td></tr>\n</table>\n\n#### Best practice for using `ruapu.h` in multiple compilation units\n\n1. Create one `ruapu.c` for your project\n2. `ruapu.c` is **ONLY** `#define RUAPU_IMPLEMENTATION` and `#include \"ruapu.h\"`\n3. Other sources `#include \"ruapu.h\"` but **NO** `#define RUAPU_IMPLEMENTATION`\n\n## Let's ruapu\n\n### ruapu with C\n\n<table>\n\n<tr><td>\n\nCompile ruapu test program\n\n```shell\n# GCC / MinGW\ngcc main.c -o ruapu\n```\n```shell\n# Clang\nclang main.c -o ruapu\n```\n```shell\n# MSVC\ncl.exe /Fe: ruapu.exe main.c\n```\n</td>\n<td>\n\nRun ruapu in command line\n\n```shell\n./ruapu \nmmx = 1\nsse = 1\nsse2 = 1\nsse3 = 1\nssse3 = 1\nsse41 = 1\nsse42 = 1\nsse4a = 1\nxop = 0\n... more lines omitted ...\n```\n\n</td></tr>\n</table>\n\n### ruapu with Python\n\n<table>\n\n<tr><td>\n\nCompile and install ruapu library\n\n```shell\n# from source code\npip3 install .\n```\n</td>\n<td>\n\nUse ruapu in python\n\n```python\nimport ruapu\n\nruapu.supports(\"avx2\")\n# True\n\nruapu.supports(isa=\"avx2\")\n# True\n```\n</td></tr>\n</table>\n\n<details>\n<summary>Github-hosted runner result (Linux)</summary>\n\n```\nmmx = 1\nsse = 1\nsse2 = 1\nsse3 = 1\nssse3 = 1\nsse41 = 1\nsse42 = 1\nsse4a = 1\nxop = 0\navx = 1\nf16c = 1\nfma = 1\navx2 = 1\navx512f = 0\navx512bw = 0\navx512cd = 0\navx512dq = 0\navx512vl = 0\navx512vnni = 0\navx512bf16 = 0\navx512ifma = 0\navx512vbmi = 0\navx512vbmi2 = 0\navx512fp16 = 0\navxvnni = 0\navxvnniint8 = 0\navxifma = 0\n```\n\n</details>\n\n<details>\n<summary>Github-hosted runner result (macOS)</summary>\n\n```\nmmx = 1\nsse = 1\nsse2 = 1\nsse3 = 1\nssse3 = 1\nsse41 = 1\nsse42 = 1\nsse4a = 0\nxop = 0\navx = 1\nf16c = 1\nfma = 1\navx2 = 1\navx512f = 0\navx512bw = 0\navx512cd = 0\navx512dq = 0\navx512vl = 0\navx512vnni = 0\navx512bf16 = 0\navx512ifma = 0\navx512vbmi = 0\navx512vbmi2 = 0\navx512fp16 = 0\navxvnni = 0\navxvnniint8 = 0\navxifma = 0\n```\n\n</details>\n\n<details>\n<summary>Github-hosted runner result (macOS M1)</summary>\n\n```\nneon = 1\nvfpv4 = 1\ncpuid = 0\nasimdhp = 1\nasimddp = 1\nasimdfhm = 1\nbf16 = 0\ni8mm = 0\nsve = 0\nsve2 = 0\nsvebf16 = 0\nsvei8mm = 0\nsvef32mm = 0\n```\n\n</details>\n\n<details>\n<summary>Github-hosted runner result (Windows)</summary>\n\n```\nmmx = 1\nsse = 1\nsse2 = 1\nsse3 = 1\nssse3 = 1\nsse41 = 1\nsse42 = 1\nsse4a = 1\nxop = 0\navx = 1\nf16c = 1\nfma = 1\navx2 = 1\navx512f = 0\navx512bw = 0\navx512cd = 0\navx512dq = 0\navx512vl = 0\navx512vnni = 0\navx512bf16 = 0\navx512ifma = 0\navx512vbmi = 0\navx512vbmi2 = 0\navx512fp16 = 0\navxvnni = 0\navxvnniint8 = 0\navxifma = 0\n```\n\n</details>\n\n<details>\n<summary>FreeBSD/NetBSD/OpenBSD VM result (x86_64)</summary>\n\n```\nmmx = 1\nsse = 1\nsse2 = 1\nsse3 = 1\nssse3 = 1\nsse41 = 1\nsse42 = 1\nsse4a = 1\nxop = 0\navx = 1\nf16c = 1\nfma = 1\nfma4 = 0\navx2 = 1\navx512f = 0\navx512bw = 0\navx512cd = 0\navx512dq = 0\navx512vl = 0\navx512vnni = 0\navx512bf16 = 0\navx512ifma = 0\navx512vbmi = 0\navx512vbmi2 = 0\navx512fp16 = 0\navxvnni = 0\navxvnniint8 = 0\navxifma = 0\n```\n\n</details>\n\n\n## Features\n\n* Detect **CPU ISA with single-file**&emsp;&emsp;&emsp;\n_`sse2`, `avx`, `avx512f`, `neon`, etc._\n* Detect **vendor extended ISA**&emsp;&emsp;&emsp;&emsp;\n_apple `amx`, risc-v vendor ISA, etc._\n* Detect **richer ISA on Windows ARM**&emsp;&emsp;\n_`IsProcessorFeaturePresent()` returns little ISA information_\n* Detect **`x86-avx512` on macOS correctly**&emsp;\n_macOS hides it in `cpuid`_\n* Detect **new CPU's ISA on old systems**&emsp;\n_they are usually not exposed in `auxv` or `MISA`_\n* Detect **CPU hidden ISA**&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;\n_`fma4` on zen1, ISA in hypervisor, etc._\n\n## Supported ISA _&emsp;(more is comming ... :)_\n\n|CPU|ISA|\n|:---:|---|\n|x86|`mmx` `sse` `sse2` `sse3` `ssse3` `sse41` `sse42` `sse4a` `xop` `avx` `f16c` `fma` `fma4` `avx2` `avx512f` `avx512bw` `avx512cd` `avx512dq` `avx512vl` `avx512vnni` `avx512bf16` `avx512ifma` `avx512vbmi` `avx512vbmi2` `avx512fp16` `avxvnni` `avxvnniint8` `avxifma`|\n|arm|`edsp` `neon` `vfpv4` `idiv`|\n|aarch64|`neon` `vfpv4` `cpuid` `asimdrdm` `asimdhp` `asimddp` `asimdfhm` `bf16` `i8mm` `mte` `sve` `sve2` `svebf16` `svei8mm` `svef32mm` `pmull` `crc32` `aes` `sha1` `sha2` `sha3` `sha512` `sm3` `sm4` `amx`|\n|mips|`msa`|\n|powerpc|`vsx`|\n|s390x|`zvector`|\n|loongarch|`lsx` `lasx`|\n|risc-v|`i` `m` `a` `f` `d` `c` `zfa` `zfh` `zfhmin` `zicsr` `zifencei` `zmmul` |\n|openrisc| `orbis32` `orbis64` `orfpx32` `orfpx64` `orvdx64` |\n\n## Techniques inside ruapu\nruapu is implemented in C language to ensure the widest possible portability.\n\nruapu determines whether the CPU supports certain instruction sets by trying to execute instructions and detecting whether an `Illegal Instruction` exception occurs. ruapu does not rely on the cpuid instructions and registers related to the CPU architecture, nor does it rely on the `MISA` information and system calls of the operating system. This can help us get more detailed CPU ISA information.\n\n## FAQ\n#### Why is the project named ruapu\n\n&emsp;ruapu is the abbreviation of rua-cpu, which means using various extended instructions to harass and amuse the CPU (rua!). Based on whether the CPU reacts violently (throws an illegal instruction exception), it is inferred whether the CPU supports a certain extended instruction set.\n\n#### Why is ruapu API designed like this\n\n&emsp;We consider gcc builtin functions to be good practice, saying `__builtin_cpu_init()` and `__builtin_cpu_supports()`. ruapu refers to this design, which can be a 1:1 replacement for gcc functions, and supports more operating systems and compilers, giving it better portability.\n\n#### Why does SIGILL occur when executing in debugger or simulator, such as `gdb`, `lldb`, `qemu-user`, `sde` etc.\n\n&emsp;Because debuggers and simulators capture the signal and stop the ruapu signal handler function by default, we can continue execution at this time, or configure it specifically, such as `handle SIGILL nostop` in gdb. ruapu technically cannot prevent programs from stopping in debuggers and emulators\n\n#### How to add detection capabilities for new instructions to ruapu\n\n&emsp;_Assume that the new extended instruction set is named `rua`_\n\n1. Add `RUAPU_INSTCODE(rua, rua-inst-hex) // rua r0,r0` and `RUAPU_ISAENTRY(rua)` in `ruapu.h`\n2. Add `PRINT_ISA_SUPPORT(rua)` in `main.c` to print the detection result\n3. Add entries about `rua` in README.md\n4. Create a pull request!\n\n&emsp;_https://godbolt.org/ is a good helper to view the compiled binary code of instructions._\n\n## Repos that use ruapu\n* [ncnn](https://github.com/Tencent/ncnn) &emsp;_High-performance neural network inference framework_\n* [libllm](https://github.com/ling0322/libllm) &emsp;_Efficient inference of large language models_\n\n## Credits\n* [@nihui](https://github.com/nihui) &emsp;_Write the initial POC code and ruapu maintainer_\n* [@kernelbin](https://github.com/kernelbin) &emsp;_Implement exception handling for Windows_\n* [@zchrissirhcz](https://github.com/zchrissirhcz) &emsp;_Detect x86 FMA4_\n* [@MollySophia](https://github.com/MollySophia) &emsp;_Fix C++ export symbol_\n* [@strongtz](https://github.com/strongtz) &emsp;_Detect more aarch64 ISA_\n* [@monkeyking](https://github.com/monkeyking) &emsp;_Detect apple arm64 AMX_\n* [@junchao-loongson](https://github.com/junchao-loongson) &emsp;_Add loongarch support_\n* [@ziyao233](https://github.com/ziyao233) &emsp;_Detect more risc-v ISA_\n* [@dreamcmi](https://github.com/dreamcmi) &emsp;_Detect more risc-v ISA_\n* [@cocoa-xu](https://github.com/cocoa-xu) &emsp;_Add FreeBSD support, python support_\n* [@YuzukiTsuru](https://github.com/YuzukiTsuru) &emsp;_Add OpenRISC support_\n\n## License\nMIT License\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "The Python binding of ruapu.",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/nihui/ruapu"
    },
    "split_keywords": [
        "ruapu",
        "cpu",
        "isa",
        "detect"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a0c2ba98716719465deb92617cd07d066e5df48150384650c05950b4133b2db",
                "md5": "03c01210e256bd4757dee6e3bba83b70",
                "sha256": "529d6f173f96a28e3ef86fde57c3cd3403146d484eeebd300c84333eaa330c46"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "03c01210e256bd4757dee6e3bba83b70",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 12580,
            "upload_time": "2024-02-27T13:33:00",
            "upload_time_iso_8601": "2024-02-27T13:33:00.982031Z",
            "url": "https://files.pythonhosted.org/packages/3a/0c/2ba98716719465deb92617cd07d066e5df48150384650c05950b4133b2db/ruapu-0.1.0-cp36-abi3-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84de66f211382e3631566cd14a5482dc4c0375f1254b2b7e20ed373b3fadc233",
                "md5": "95caafe918cb3a55666d1258b005d47b",
                "sha256": "50720a2aa154d2540dca4a8af8dc852acb5bd9f88e54739922746b52c3c35032"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95caafe918cb3a55666d1258b005d47b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 8808,
            "upload_time": "2024-02-27T13:33:02",
            "upload_time_iso_8601": "2024-02-27T13:33:02.860723Z",
            "url": "https://files.pythonhosted.org/packages/84/de/66f211382e3631566cd14a5482dc4c0375f1254b2b7e20ed373b3fadc233/ruapu-0.1.0-cp36-abi3-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b32e89459226351363f4d3c1066fd6eb1b5d3b55fc8cad3fd96bbefcae3607dd",
                "md5": "85b5075df39f06a3e43a6809bc86824a",
                "sha256": "a88f83c20db11d18fc2777b89017975d4ba6dbf15b78ab64d8a898f72f7c2dd5"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "85b5075df39f06a3e43a6809bc86824a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 8964,
            "upload_time": "2024-02-27T13:33:04",
            "upload_time_iso_8601": "2024-02-27T13:33:04.353189Z",
            "url": "https://files.pythonhosted.org/packages/b3/2e/89459226351363f4d3c1066fd6eb1b5d3b55fc8cad3fd96bbefcae3607dd/ruapu-0.1.0-cp36-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6479ef0870433b8965d99d5ff8e3864a88d8088c63e3f75ffc312993f203462",
                "md5": "69c36fee82b8062470bf9e0051b83913",
                "sha256": "89fb7ee471f9be1377604a97106572cf71f39bc034dbd7969d25883eb109d5eb"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "69c36fee82b8062470bf9e0051b83913",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 17597,
            "upload_time": "2024-02-27T13:33:06",
            "upload_time_iso_8601": "2024-02-27T13:33:06.037555Z",
            "url": "https://files.pythonhosted.org/packages/f6/47/9ef0870433b8965d99d5ff8e3864a88d8088c63e3f75ffc312993f203462/ruapu-0.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16acf10a963e33c3dd01f8fad4407bc1fe943276d7405ab3c86868e221273f6b",
                "md5": "f2ab33fd544342a2c3cf0563c8973e2f",
                "sha256": "ca101cb0af355dda218aa709f1820581b6f07f64cc35657b325f37a984623530"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f2ab33fd544342a2c3cf0563c8973e2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 16246,
            "upload_time": "2024-02-27T13:33:07",
            "upload_time_iso_8601": "2024-02-27T13:33:07.598289Z",
            "url": "https://files.pythonhosted.org/packages/16/ac/f10a963e33c3dd01f8fad4407bc1fe943276d7405ab3c86868e221273f6b/ruapu-0.1.0-cp36-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e178ec093a9859cf0a0f3ff8187304fa0c2fc47e639555a9f35b3c29581f246a",
                "md5": "90b5efbdcd9b8682a9a7d0ff13f8b456",
                "sha256": "dfeda29a9905b08cda9fb4a76368bc961de0f5f3c9460a49c0e564a520aa3bdc"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "90b5efbdcd9b8682a9a7d0ff13f8b456",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 15171,
            "upload_time": "2024-02-27T13:33:09",
            "upload_time_iso_8601": "2024-02-27T13:33:09.090122Z",
            "url": "https://files.pythonhosted.org/packages/e1/78/ec093a9859cf0a0f3ff8187304fa0c2fc47e639555a9f35b3c29581f246a/ruapu-0.1.0-cp36-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24e63bf5ce6067e749c8ed54c033dfdc28d8a556d76911b5773730c0eda0b69f",
                "md5": "7b6742424d68102cf9d56c0cc8854e4e",
                "sha256": "632c9bb95d0cac99d693bca6f942fad67f9a35e6c9175753975ed6014ced1ac7"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7b6742424d68102cf9d56c0cc8854e4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 16598,
            "upload_time": "2024-02-27T13:33:10",
            "upload_time_iso_8601": "2024-02-27T13:33:10.084749Z",
            "url": "https://files.pythonhosted.org/packages/24/e6/3bf5ce6067e749c8ed54c033dfdc28d8a556d76911b5773730c0eda0b69f/ruapu-0.1.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52bc1d1432d574b8623ffe3ff373ed5f0418abbbd4c1e72c6cbb0783731abe49",
                "md5": "c72b0f955340d4d464a023f47a7638f3",
                "sha256": "d6c7b049a6a5bb4f628e991e5ac0692521612a42d19927bf22c8e18cd6bf31a5"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c72b0f955340d4d464a023f47a7638f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 16959,
            "upload_time": "2024-02-27T13:33:10",
            "upload_time_iso_8601": "2024-02-27T13:33:10.997799Z",
            "url": "https://files.pythonhosted.org/packages/52/bc/1d1432d574b8623ffe3ff373ed5f0418abbbd4c1e72c6cbb0783731abe49/ruapu-0.1.0-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fbcec4bf4ba14689e901b48c3c96cf41a19d4a1d9e24c276b3ef7a16e20c626",
                "md5": "ddc30a1413ce45752ec70da90614f43a",
                "sha256": "1e431811c6f554c4705bb1f254ab808ad3dbf474f0da1b87116edbc78c05e216"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ddc30a1413ce45752ec70da90614f43a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 22560,
            "upload_time": "2024-02-27T13:33:12",
            "upload_time_iso_8601": "2024-02-27T13:33:12.443876Z",
            "url": "https://files.pythonhosted.org/packages/6f/bc/ec4bf4ba14689e901b48c3c96cf41a19d4a1d9e24c276b3ef7a16e20c626/ruapu-0.1.0-cp36-abi3-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1988d39c8f561d184f295b8045373528136e4c622b2018380523bc1255db4afe",
                "md5": "508f0b91675bdf21d183c72c2642f83e",
                "sha256": "7f4c27fed93281db8647b0c4b29adaa39a4dc7d341eb38f9bd096b0fedf8bf76"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "508f0b91675bdf21d183c72c2642f83e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 22260,
            "upload_time": "2024-02-27T13:33:13",
            "upload_time_iso_8601": "2024-02-27T13:33:13.965594Z",
            "url": "https://files.pythonhosted.org/packages/19/88/d39c8f561d184f295b8045373528136e4c622b2018380523bc1255db4afe/ruapu-0.1.0-cp36-abi3-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27cfffd0b3b41934f8eea2ab0ac4982fb2e2859a77c1fb8cac0e2e6ee381ad3c",
                "md5": "b07c0c67f38a0ee1c8cb1be0480d4e85",
                "sha256": "d5d8b8cb5244bbb766553cfdd9cbff9b4a1079fefbd55eb25149c5f1826dbd14"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b07c0c67f38a0ee1c8cb1be0480d4e85",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 21763,
            "upload_time": "2024-02-27T13:33:15",
            "upload_time_iso_8601": "2024-02-27T13:33:15.506731Z",
            "url": "https://files.pythonhosted.org/packages/27/cf/ffd0b3b41934f8eea2ab0ac4982fb2e2859a77c1fb8cac0e2e6ee381ad3c/ruapu-0.1.0-cp36-abi3-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9ad1ba644dbd447609c87520f0412ef7b69baf2a7b8f68c6a12c3666a74edcf",
                "md5": "ee28a6a36ef6120434caeca731e1725c",
                "sha256": "b1f51937e27856c9edf358a355479228c652574f98301ce366ac8d66350d6705"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "ee28a6a36ef6120434caeca731e1725c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 20438,
            "upload_time": "2024-02-27T13:33:16",
            "upload_time_iso_8601": "2024-02-27T13:33:16.983460Z",
            "url": "https://files.pythonhosted.org/packages/b9/ad/1ba644dbd447609c87520f0412ef7b69baf2a7b8f68c6a12c3666a74edcf/ruapu-0.1.0-cp36-abi3-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5dc187f499b4569c0a0ae6f53fae456bb2fae0b675338ddb907034b43b8efec",
                "md5": "ca1b43da77b78e14563bae76453602a6",
                "sha256": "409ed34c6f47698638ce41f8f75697561492ba664c8e34597849262575beec27"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca1b43da77b78e14563bae76453602a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 22433,
            "upload_time": "2024-02-27T13:33:17",
            "upload_time_iso_8601": "2024-02-27T13:33:17.932450Z",
            "url": "https://files.pythonhosted.org/packages/b5/dc/187f499b4569c0a0ae6f53fae456bb2fae0b675338ddb907034b43b8efec/ruapu-0.1.0-cp36-abi3-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ce07f8f8c2a31e698ac06dda4ad5ab88094353ec625dfd4a07d4f4e01450eee",
                "md5": "970e858b2f986bc9cfde458784255745",
                "sha256": "f0880ca27678d3bc4e96f3d725b3de2756e98e96299a48abecd368f4eccec80d"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "970e858b2f986bc9cfde458784255745",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 10241,
            "upload_time": "2024-02-27T13:33:19",
            "upload_time_iso_8601": "2024-02-27T13:33:19.492631Z",
            "url": "https://files.pythonhosted.org/packages/2c/e0/7f8f8c2a31e698ac06dda4ad5ab88094353ec625dfd4a07d4f4e01450eee/ruapu-0.1.0-cp36-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5482d0bb9afa8001b4492fc11cc94dca6e0fea3a721d66a58055c7a47431f8c",
                "md5": "28f648f01b9f8da6e87faf673789db27",
                "sha256": "96a8a914807429bf396e1c7bd0382ff703fe1e47e362e63e4dddd68a72131bf9"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "28f648f01b9f8da6e87faf673789db27",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 10753,
            "upload_time": "2024-02-27T13:33:21",
            "upload_time_iso_8601": "2024-02-27T13:33:21.042389Z",
            "url": "https://files.pythonhosted.org/packages/c5/48/2d0bb9afa8001b4492fc11cc94dca6e0fea3a721d66a58055c7a47431f8c/ruapu-0.1.0-cp36-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "074cf595bdd30218fed3f63066b194806aa0380612107c36b61e4688aaa1bc79",
                "md5": "07a0353ba75d6fb911404ef123ef76ee",
                "sha256": "d1458ac3e309d90af344d3c5cc2fa1de3fa8e5caeb603a09193e96fa4ceea336"
            },
            "downloads": -1,
            "filename": "ruapu-0.1.0-cp36-abi3-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "07a0353ba75d6fb911404ef123ef76ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 9619,
            "upload_time": "2024-02-27T13:33:21",
            "upload_time_iso_8601": "2024-02-27T13:33:21.945493Z",
            "url": "https://files.pythonhosted.org/packages/07/4c/f595bdd30218fed3f63066b194806aa0380612107c36b61e4688aaa1bc79/ruapu-0.1.0-cp36-abi3-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-27 13:33:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nihui",
    "github_project": "ruapu",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ruapu"
}
        
Elapsed time: 0.19349s