# phawd_py: Python binding for phawd
  [phawd](https://github.com/HuNingHe/phawd) is a lightweight and cross-platform software based on QT5, mainly used for robot simulation, programming and debugging, which is the abbreviation of Parameter Handler And Waveform Displayer.
  Here is the python binding of phawd core functions, mainly contains the interface between the robot controller written in Python and phawd software.
## 0 Installation
  On Windows10 or Linux:
```shell
pip install phawd
```
  MacOS is not supported for now.
## 1 Build from source
### 1.1 Prerequisites
* A compiler with C++11 support (gcc/g++ is recommended under Linux, MSVC is mandatory under Windows)
* CMake >= 3.14 (Make sure that you can use cmake on the command line)
* Pip 10+
### 1.2 command
  Just clone this repository and pip install. Note the `--recursive` option which is needed for the pybind11 submodule:
```bash
git clone --recursive https://github.com/HuNingHe/phawd_py.git
pip install ./phawd_py
```
## 2 Using cibuildwheel
  [cibuildwheel](https://cibuildwheel.readthedocs.io) used for building python wheels across **Mac, Linux, Windows**, on **multiple versions of Python**. The steps are as follows:
```shell
pip install cibuildwheel
git clone --recursive https://github.com/HuNingHe/phawd_py.git
cd phawd_py
# on windows
cibuildwheel --platform windows
# on linux
cibuildwheel --platform linux
```
  Then you will get 36 python wheels. For example, you can then install phawd_py by:
```shell
cd wheelhouse
# this depends on your system and python version
pip install phawd-0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
```
## 3 SharedMemory example
### 3.1 Prerequisites in phawd
  phawd's yaml file is as follows:
```yaml
RobotName: shm_demo
Type: Shared Memory
WaveParamNum: 3
DOUBLE:
p_d: 3.14159
S64:
p_s64: 31
VEC3_DOUBLE:
p_vec3d: [1, 2, 3]
```
  Read this file using phawd, and click ready button. Then run the code demo as below.
### 3.2 code demo
  A robot controller program example using sharedmemory to communicate with phawd software:
```python
# robot controller
from phawd import SharedMemory, SharedParameters, ParameterCollection, Parameter
if __name__ == '__main__':
num_ctr_params = 3
num_wave_params = 3
shm_size = SharedParameters.__sizeof__() + (num_ctr_params + num_wave_params) * Parameter.__sizeof__()
shm = SharedMemory()
shm.attach(name="shm_demo", size=shm_size)
sp = shm.get()
params = sp.getParameters()
print('numControlParams: {}'.format(sp.numControlParams))
print('numWaveParams: {}'.format(sp.numWaveParams))
print('p_d name: {}; ValueKind: {}; Value: {}'.format(params[0].getName(), params[0].getValueKind(), params[0].getDouble()))
print('p_s64 name: {}; ValueKind: {}; Value: {}'.format(params[1].getName(), params[1].getValueKind(), params[1].getS64()))
print('p_vec3d name: {}; ValueKind: {}; Value: {}'.format(params[2].getName(), params[2].getValueKind(), params[2].getVec3d()))
pw0 = Parameter("pw0", 5)
pw1 = Parameter("pw1", 3.14)
pw2 = Parameter("pw2", [1, 2, 3])
sp.setParameters([pw0, pw1, pw2])
sp.connected += 1 # This is important, otherwise phawd will not be able to detect the writing of data
# If you have a lot of parameters, and it is inconvenient to process by index, you may wish to try ParameterCollection
pc = ParameterCollection()
sp.collectParameters(pc)
print("p_d value in ParameterCollection: {}".format(pc.lookup("p_d").getDouble()))
print("p_s64 value in ParameterCollection: {}".format(pc.lookup("p_s64").getS64()))
print("p_vec3d value in ParameterCollection: {}".format(pc.lookup("p_vec3d").getVec3d()))
sp.connected -= 1 # suggest to do this
```
### 3.3 Result
- Print control parameter informations at console
- You can select curves to add in phawd
## 4 Socket example
### 4.1 Prerequisites in phawd
  phawd's yaml file is as follows:
```yaml
RobotName: 5230
Type: Socket
WaveParamNum: 3
DOUBLE:
p_d: 3.14159
S64:
p_s64: 31
VEC3_DOUBLE:
p_vec3d: [1, 2, 3]
```
  Read this file using phawd, and click ready button. Then run the code demo as below.
### 4.2 code demo
  A robot controller program example using Socket to communicate with phawd software:
```python
# robot controller
from phawd import SocketToPhawd, SocketFromPhawd, SocketConnect, Parameter
if __name__ == '__main__':
num_ctr_params = 3
num_wave_params = 3
send_size = Parameter.__sizeof__() * num_wave_params + SocketToPhawd.__sizeof__()
read_size = Parameter.__sizeof__() * num_ctr_params + SocketFromPhawd.__sizeof__()
sc = SocketConnect()
sc.init(send_size, read_size, False)
ret = sc.connectToServer("127.0.0.1", 5230, 30)
iter_c = 0
pw0 = Parameter("pw0", 5)
pw1 = Parameter("pw1", 3.14)
pw2 = Parameter("pw2", [1, 2, 3])
while iter_c < 500000:
iter_c += 1
socket_to_phawd = sc.getSend()
socket_to_phawd.numWaveParams = 3
socket_to_phawd.parameters = [pw0, pw1, pw2]
sc.send()
ret = sc.read()
if ret > 0:
socket_from_phawd = sc.getRead()
ctrl_params = socket_from_phawd.parameters
print("numControlParams: {}".format(socket_from_phawd.numControlParams))
print('p_d name: {}; ValueKind: {}; Value: {}'.format(ctrl_params[0].getName(), ctrl_params[0].getValueKind(), ctrl_params[0].getDouble()))
print('p_s64 name: {}; ValueKind: {}; Value: {}'.format(ctrl_params[1].getName(), ctrl_params[1].getValueKind(), ctrl_params[1].getS64()))
print('p_vec3d name: {}; ValueKind: {}; Value: {}'.format(ctrl_params[2].getName(), ctrl_params[2].getValueKind(), ctrl_params[2].getVec3d()))
```
### 4.3 Result
- Once you modify the parameter in phawd software, this program will print parameter informations at console
- You can select curves to add in phawd
## 5 Notation
- Parameters of type FLOAT and VEC3_FLOAT are not supported in phawd_py
- For other tutorials on phawd_py, you can refer to the tests/test.py
## License
  phawd_py is provided under MIT license that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license.
Raw data
{
"_id": null,
"home_page": "https://github.com/HuNingHe/phawd",
"name": "phawd",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": "",
"keywords": "phawd python cross-platform c++",
"author": "HuNing-He",
"author_email": "957278968@qq.com",
"download_url": "https://files.pythonhosted.org/packages/5b/18/345e6fff374db9bef856eca7afbb461db274b1c1b5689d6f036ef49efcb2/phawd-0.3.tar.gz",
"platform": null,
"description": "# phawd_py: Python binding for phawd\n\n  [phawd](https://github.com/HuNingHe/phawd) is a lightweight and cross-platform software based on QT5, mainly used for robot simulation, programming and debugging, which is the abbreviation of Parameter Handler And Waveform Displayer. \n\n  Here is the python binding of phawd core functions, mainly contains the interface between the robot controller written in Python and phawd software.\n\n## 0 Installation\n\n  On Windows10 or Linux:\n\n```shell\npip install phawd\n```\n\n  MacOS is not supported for now.\n\n## 1 Build from source\n\n### 1.1 Prerequisites\n\n* A compiler with C++11 support (gcc/g++ is recommended under Linux, MSVC is mandatory under Windows)\n\n* CMake >= 3.14 (Make sure that you can use cmake on the command line)\n\n* Pip 10+\n\n### 1.2 command\n\n  Just clone this repository and pip install. Note the `--recursive` option which is needed for the pybind11 submodule:\n\n```bash\ngit clone --recursive https://github.com/HuNingHe/phawd_py.git\npip install ./phawd_py\n```\n\n## 2 Using cibuildwheel \n\n  [cibuildwheel](https://cibuildwheel.readthedocs.io) used for building python wheels across **Mac, Linux, Windows**, on **multiple versions of Python**. The steps are as follows: \n\n```shell\npip install cibuildwheel\ngit clone --recursive https://github.com/HuNingHe/phawd_py.git\ncd phawd_py\n\n# on windows\ncibuildwheel --platform windows\n\n# on linux\ncibuildwheel --platform linux\n```\n\n  Then you will get 36 python wheels. For example, you can then install phawd_py by:\n\n```shell\ncd wheelhouse\n# this depends on your system and python version\npip install phawd-0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\n```\n\n## 3 SharedMemory example\n\n### 3.1 Prerequisites in phawd\n\n  phawd's yaml file is as follows:\n\n```yaml\nRobotName: shm_demo\nType: Shared Memory\nWaveParamNum: 3\nDOUBLE:\n p_d: 3.14159\nS64:\n p_s64: 31\nVEC3_DOUBLE:\n p_vec3d: [1, 2, 3]\n```\n\n  Read this file using phawd, and click ready button. Then run the code demo as below.\n\n### 3.2 code demo\n\n  A robot controller program example using sharedmemory to communicate with phawd software:\n\n```python\n# robot controller\nfrom phawd import SharedMemory, SharedParameters, ParameterCollection, Parameter\nif __name__ == '__main__':\n num_ctr_params = 3\n num_wave_params = 3\n shm_size = SharedParameters.__sizeof__() + (num_ctr_params + num_wave_params) * Parameter.__sizeof__()\n shm = SharedMemory()\n shm.attach(name=\"shm_demo\", size=shm_size)\n sp = shm.get()\n params = sp.getParameters()\n\n print('numControlParams: {}'.format(sp.numControlParams))\n print('numWaveParams: {}'.format(sp.numWaveParams))\n print('p_d name: {}; ValueKind: {}; Value: {}'.format(params[0].getName(), params[0].getValueKind(), params[0].getDouble()))\n print('p_s64 name: {}; ValueKind: {}; Value: {}'.format(params[1].getName(), params[1].getValueKind(), params[1].getS64()))\n print('p_vec3d name: {}; ValueKind: {}; Value: {}'.format(params[2].getName(), params[2].getValueKind(), params[2].getVec3d()))\n\n pw0 = Parameter(\"pw0\", 5)\n pw1 = Parameter(\"pw1\", 3.14)\n pw2 = Parameter(\"pw2\", [1, 2, 3])\n\n sp.setParameters([pw0, pw1, pw2])\n sp.connected += 1 # This is important, otherwise phawd will not be able to detect the writing of data\n\n # If you have a lot of parameters, and it is inconvenient to process by index, you may wish to try ParameterCollection\n pc = ParameterCollection()\n sp.collectParameters(pc)\n\n print(\"p_d value in ParameterCollection: {}\".format(pc.lookup(\"p_d\").getDouble()))\n print(\"p_s64 value in ParameterCollection: {}\".format(pc.lookup(\"p_s64\").getS64()))\n print(\"p_vec3d value in ParameterCollection: {}\".format(pc.lookup(\"p_vec3d\").getVec3d()))\n sp.connected -= 1 # suggest to do this\n```\n\n### 3.3 Result\n\n- Print control parameter informations at console\n- You can select curves to add in phawd\n\n## 4 Socket example\n\n### 4.1 Prerequisites in phawd\n\n  phawd's yaml file is as follows:\n\n```yaml\nRobotName: 5230\nType: Socket\nWaveParamNum: 3\nDOUBLE:\n p_d: 3.14159\nS64:\n p_s64: 31\nVEC3_DOUBLE:\n p_vec3d: [1, 2, 3]\n```\n\n  Read this file using phawd, and click ready button. Then run the code demo as below.\n\n### 4.2 code demo\n\n  A robot controller program example using Socket to communicate with phawd software:\n\n```python\n# robot controller\nfrom phawd import SocketToPhawd, SocketFromPhawd, SocketConnect, Parameter\n\nif __name__ == '__main__':\n num_ctr_params = 3\n num_wave_params = 3\n send_size = Parameter.__sizeof__() * num_wave_params + SocketToPhawd.__sizeof__()\n read_size = Parameter.__sizeof__() * num_ctr_params + SocketFromPhawd.__sizeof__()\n sc = SocketConnect()\n sc.init(send_size, read_size, False)\n ret = sc.connectToServer(\"127.0.0.1\", 5230, 30)\n iter_c = 0\n\n pw0 = Parameter(\"pw0\", 5)\n pw1 = Parameter(\"pw1\", 3.14)\n pw2 = Parameter(\"pw2\", [1, 2, 3])\n\n while iter_c < 500000:\n iter_c += 1\n socket_to_phawd = sc.getSend()\n socket_to_phawd.numWaveParams = 3\n socket_to_phawd.parameters = [pw0, pw1, pw2]\n sc.send()\n ret = sc.read()\n\n if ret > 0:\n socket_from_phawd = sc.getRead()\n ctrl_params = socket_from_phawd.parameters\n print(\"numControlParams: {}\".format(socket_from_phawd.numControlParams))\n print('p_d name: {}; ValueKind: {}; Value: {}'.format(ctrl_params[0].getName(), ctrl_params[0].getValueKind(), ctrl_params[0].getDouble()))\n print('p_s64 name: {}; ValueKind: {}; Value: {}'.format(ctrl_params[1].getName(), ctrl_params[1].getValueKind(), ctrl_params[1].getS64()))\n print('p_vec3d name: {}; ValueKind: {}; Value: {}'.format(ctrl_params[2].getName(), ctrl_params[2].getValueKind(), ctrl_params[2].getVec3d()))\n```\n\n### 4.3 Result\n\n- Once you modify the parameter in phawd software, this program will print parameter informations at console\n- You can select curves to add in phawd\n\n## 5 Notation\n\n- Parameters of type FLOAT and VEC3_FLOAT are not supported in phawd_py\n- For other tutorials on phawd_py, you can refer to the tests/test.py\n\n## License\n\n  phawd_py is provided under MIT license that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "python binding for phawd",
"version": "0.3",
"split_keywords": [
"phawd",
"python",
"cross-platform",
"c++"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a5c03d938ece1aba0e09133dc183af6442ac96f88ebc0a8f97587f708191599f",
"md5": "dbc0941033492fe7af4834173e63b67b",
"sha256": "1edaa4d06bcefeea87440eb680dcfa85a930a5847f5fa2948249c354cfa70dee"
},
"downloads": -1,
"filename": "phawd-0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "dbc0941033492fe7af4834173e63b67b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 166253,
"upload_time": "2023-03-29T02:44:27",
"upload_time_iso_8601": "2023-03-29T02:44:27.870137Z",
"url": "https://files.pythonhosted.org/packages/a5/c0/3d938ece1aba0e09133dc183af6442ac96f88ebc0a8f97587f708191599f/phawd-0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d527223ff2b6ca1802fa096cf709b51c6915ed08692d6c791baf3594cb4b970",
"md5": "caa848ad6e8526d0b8c5e3ce2cf97f16",
"sha256": "57eb1d4ebf85897d1f52d7275edc0b315aac9c17e950a6f588e8bae0476b0530"
},
"downloads": -1,
"filename": "phawd-0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "caa848ad6e8526d0b8c5e3ce2cf97f16",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 159671,
"upload_time": "2023-03-29T02:44:31",
"upload_time_iso_8601": "2023-03-29T02:44:31.757014Z",
"url": "https://files.pythonhosted.org/packages/0d/52/7223ff2b6ca1802fa096cf709b51c6915ed08692d6c791baf3594cb4b970/phawd-0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e78bce1acc52143ad138c98fa760337398f115b8a0b01c28d44e38ef3038e2b",
"md5": "711970707eea67a2103705ed92d63c07",
"sha256": "dc2216d4fce0ece11c593286a837d943cda933d9ab3b4d90fafc4555cdaf71bf"
},
"downloads": -1,
"filename": "phawd-0.3-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "711970707eea67a2103705ed92d63c07",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 742909,
"upload_time": "2023-03-29T02:44:37",
"upload_time_iso_8601": "2023-03-29T02:44:37.316944Z",
"url": "https://files.pythonhosted.org/packages/6e/78/bce1acc52143ad138c98fa760337398f115b8a0b01c28d44e38ef3038e2b/phawd-0.3-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3aae6ed157b399aa023b4513c9813ff7561fc5bb6f282fd37585e12895a5e54f",
"md5": "217f76f0c9f824689f54a97e33ae733e",
"sha256": "35b4b988bf74f9da314fbea8c47f160510a573ba2d9c142f35410e2fb4093f3a"
},
"downloads": -1,
"filename": "phawd-0.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "217f76f0c9f824689f54a97e33ae733e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 682945,
"upload_time": "2023-03-29T02:44:42",
"upload_time_iso_8601": "2023-03-29T02:44:42.652430Z",
"url": "https://files.pythonhosted.org/packages/3a/ae/6ed157b399aa023b4513c9813ff7561fc5bb6f282fd37585e12895a5e54f/phawd-0.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d0cb28ccebefc4c06335e404a866e56e406f01454550f68ca5f7849098e9fda",
"md5": "902b995eaae0b126317b2552b5ea963a",
"sha256": "345214eb696ce51f6d9d5a483f3c5d31fdd0e23162fb48ce97e6f715d602699c"
},
"downloads": -1,
"filename": "phawd-0.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "902b995eaae0b126317b2552b5ea963a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 253545,
"upload_time": "2023-03-29T02:44:46",
"upload_time_iso_8601": "2023-03-29T02:44:46.311855Z",
"url": "https://files.pythonhosted.org/packages/5d/0c/b28ccebefc4c06335e404a866e56e406f01454550f68ca5f7849098e9fda/phawd-0.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d3bb5fe992ffce7acbb5fb0eaa8615ffdca4c463c99800fea64ecce599cf2f5",
"md5": "850902e3c87c8583e792675b4cfb575f",
"sha256": "fa36a37fb5b773b37ace9a4418c7f4a965c27cb28210eb99b057c5aefbdca7d6"
},
"downloads": -1,
"filename": "phawd-0.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "850902e3c87c8583e792675b4cfb575f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.6",
"size": 433732,
"upload_time": "2023-03-29T02:44:50",
"upload_time_iso_8601": "2023-03-29T02:44:50.417591Z",
"url": "https://files.pythonhosted.org/packages/3d/3b/b5fe992ffce7acbb5fb0eaa8615ffdca4c463c99800fea64ecce599cf2f5/phawd-0.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ddc309d4270611c96db6358c74b5ecabdb1b5e3009167b3724d2753b475664d6",
"md5": "8faafa7e28b77f0c4524e9ffa2201cdd",
"sha256": "006277bc6dedbf71727189a86ae5d481340b0f395f56d0d3e3b69b1802edb2c7"
},
"downloads": -1,
"filename": "phawd-0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8faafa7e28b77f0c4524e9ffa2201cdd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 166103,
"upload_time": "2023-03-29T02:44:53",
"upload_time_iso_8601": "2023-03-29T02:44:53.587318Z",
"url": "https://files.pythonhosted.org/packages/dd/c3/09d4270611c96db6358c74b5ecabdb1b5e3009167b3724d2753b475664d6/phawd-0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0bc23cca5866e93df47fa6bd9d505c5e7e7f8439b792ae2f66737781ed0a9a7c",
"md5": "ad578c46396317a19a89c31864add36d",
"sha256": "937bf6ed321cee42f6382a4ed782cd264659996a9b02cb193c3397198ac2d1bc"
},
"downloads": -1,
"filename": "phawd-0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ad578c46396317a19a89c31864add36d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 159729,
"upload_time": "2023-03-29T02:44:57",
"upload_time_iso_8601": "2023-03-29T02:44:57.284389Z",
"url": "https://files.pythonhosted.org/packages/0b/c2/3cca5866e93df47fa6bd9d505c5e7e7f8439b792ae2f66737781ed0a9a7c/phawd-0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46590491a167f461ffec8bdf16b78a7a3b28e43f4fb3af635ef9206fb41c1c75",
"md5": "3fe7c095f6bbdb7271712e5e9c6b658a",
"sha256": "70364405448ee996478f7e7b2429122a9c02376fc126092ed572645cc2f8df74"
},
"downloads": -1,
"filename": "phawd-0.3-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "3fe7c095f6bbdb7271712e5e9c6b658a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 742994,
"upload_time": "2023-03-29T02:45:02",
"upload_time_iso_8601": "2023-03-29T02:45:02.404040Z",
"url": "https://files.pythonhosted.org/packages/46/59/0491a167f461ffec8bdf16b78a7a3b28e43f4fb3af635ef9206fb41c1c75/phawd-0.3-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e97c6aebbd7cd9b91ce33b87181a06572cac4565c81c9d4462c1fdbd720205b",
"md5": "907af21fcc033d4979b90bf524ab7b5a",
"sha256": "9b44d7d699b7d0a32643358ddeee32083164449321bdb6efffacadd9f587c250"
},
"downloads": -1,
"filename": "phawd-0.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "907af21fcc033d4979b90bf524ab7b5a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 682931,
"upload_time": "2023-03-29T02:45:06",
"upload_time_iso_8601": "2023-03-29T02:45:06.400573Z",
"url": "https://files.pythonhosted.org/packages/3e/97/c6aebbd7cd9b91ce33b87181a06572cac4565c81c9d4462c1fdbd720205b/phawd-0.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fd0e8749f1c91941133cf4888ed7bac2ef4a4700dee72178b994c3ee220766e",
"md5": "cf3ed68456c7937eb4c7ed13e18f3d75",
"sha256": "75e0332e54fdc6134210ae1e9a6a0ed33e225abbcb7ff69919cbe0225a26c224"
},
"downloads": -1,
"filename": "phawd-0.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "cf3ed68456c7937eb4c7ed13e18f3d75",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 253516,
"upload_time": "2023-03-29T02:45:08",
"upload_time_iso_8601": "2023-03-29T02:45:08.847458Z",
"url": "https://files.pythonhosted.org/packages/0f/d0/e8749f1c91941133cf4888ed7bac2ef4a4700dee72178b994c3ee220766e/phawd-0.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba68fe1bc8708177fc87f1e854b6a753dbedb41792cfe4a08b3d4e6ef98519ee",
"md5": "9219f8d58fabaa6f6eeb02ba34968e42",
"sha256": "1a2ad27290a6fd6404319bcbe7624913d1cd362a82f09af67b5b1f8c154a727c"
},
"downloads": -1,
"filename": "phawd-0.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9219f8d58fabaa6f6eeb02ba34968e42",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.6",
"size": 433678,
"upload_time": "2023-03-29T02:45:11",
"upload_time_iso_8601": "2023-03-29T02:45:11.710195Z",
"url": "https://files.pythonhosted.org/packages/ba/68/fe1bc8708177fc87f1e854b6a753dbedb41792cfe4a08b3d4e6ef98519ee/phawd-0.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5a968ac990678ce4e9e89498d9c297a6da2fedc0dff6f7b743d9aa744ce5bbe",
"md5": "49e137220d758b16272e30e1779c4d00",
"sha256": "747f7cd051d8306184662268ebcd39928005a0d0c54eb35f7707aabf8b947ae2"
},
"downloads": -1,
"filename": "phawd-0.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "49e137220d758b16272e30e1779c4d00",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 173436,
"upload_time": "2023-03-29T02:45:13",
"upload_time_iso_8601": "2023-03-29T02:45:13.871232Z",
"url": "https://files.pythonhosted.org/packages/b5/a9/68ac990678ce4e9e89498d9c297a6da2fedc0dff6f7b743d9aa744ce5bbe/phawd-0.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60be824c03009baecd220783c8aa4eee180daf9749eb07f6f0d24d3bb86285d9",
"md5": "e52bf75889d492c28d7ec3319c674af9",
"sha256": "e794a28b845a37cba8185425ec1e23110d2e9f13914120e158bafe8004b01487"
},
"downloads": -1,
"filename": "phawd-0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e52bf75889d492c28d7ec3319c674af9",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 164029,
"upload_time": "2023-03-29T02:45:16",
"upload_time_iso_8601": "2023-03-29T02:45:16.146581Z",
"url": "https://files.pythonhosted.org/packages/60/be/824c03009baecd220783c8aa4eee180daf9749eb07f6f0d24d3bb86285d9/phawd-0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "259cf08c6e95df3bd0024aa05592867173641d835170405d52840733e3f76a38",
"md5": "41106d8084fc9caab1fff2593775710c",
"sha256": "1a7a09ac5f028bde680f7cfc40dbfb884f0ec7c15681b9bf621fb407cf5ce2da"
},
"downloads": -1,
"filename": "phawd-0.3-cp36-cp36m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "41106d8084fc9caab1fff2593775710c",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 750506,
"upload_time": "2023-03-29T02:45:20",
"upload_time_iso_8601": "2023-03-29T02:45:20.099167Z",
"url": "https://files.pythonhosted.org/packages/25/9c/f08c6e95df3bd0024aa05592867173641d835170405d52840733e3f76a38/phawd-0.3-cp36-cp36m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a483db066430f293ab3b97b638f32dac656f1b50fb9653821c6d07c7f299886",
"md5": "cf7e7301adbd0a9b0cb4d99f58299964",
"sha256": "8fdf89c9c43c9fb8659209e7b6bf34dd9e571e44d280d7c7094e6f931a2fdd64"
},
"downloads": -1,
"filename": "phawd-0.3-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "cf7e7301adbd0a9b0cb4d99f58299964",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 686934,
"upload_time": "2023-03-29T02:45:22",
"upload_time_iso_8601": "2023-03-29T02:45:22.635276Z",
"url": "https://files.pythonhosted.org/packages/7a/48/3db066430f293ab3b97b638f32dac656f1b50fb9653821c6d07c7f299886/phawd-0.3-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "52641a7785737ee8050fbeddfc761214a7d769225d317e84852ddb8b66f33a1f",
"md5": "613ace34e50bd76ae6421a11ae7acece",
"sha256": "8ce8b8864c54249bbf4a7de16b9956a93ff61f6b80cfb9028bce43c209fbd73b"
},
"downloads": -1,
"filename": "phawd-0.3-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "613ace34e50bd76ae6421a11ae7acece",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 255059,
"upload_time": "2023-03-29T02:45:25",
"upload_time_iso_8601": "2023-03-29T02:45:25.599905Z",
"url": "https://files.pythonhosted.org/packages/52/64/1a7785737ee8050fbeddfc761214a7d769225d317e84852ddb8b66f33a1f/phawd-0.3-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d44623ed9baed25bfffc04ddc97e347d899b9e20ae9d2d93c18b3f7b756c5582",
"md5": "fdeb04d693683eb2cd30e760c0aa58ef",
"sha256": "c9d41dd43a8b571c3ee75115b2cf15d7db297d2f870017899fba1c4548f412fb"
},
"downloads": -1,
"filename": "phawd-0.3-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "fdeb04d693683eb2cd30e760c0aa58ef",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.6",
"size": 472744,
"upload_time": "2023-03-29T02:45:29",
"upload_time_iso_8601": "2023-03-29T02:45:29.241655Z",
"url": "https://files.pythonhosted.org/packages/d4/46/23ed9baed25bfffc04ddc97e347d899b9e20ae9d2d93c18b3f7b756c5582/phawd-0.3-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9cbcaa3be0ed8c0194bfb08c95689b29b74c7275084d22d6cbe97f056e9683be",
"md5": "18288cae5123c9913445626b2e31c7b3",
"sha256": "170539976947b37f457eb55616e317b5addb273cc05dd788164f4a962c4ca72d"
},
"downloads": -1,
"filename": "phawd-0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "18288cae5123c9913445626b2e31c7b3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 173220,
"upload_time": "2023-03-29T02:45:31",
"upload_time_iso_8601": "2023-03-29T02:45:31.978811Z",
"url": "https://files.pythonhosted.org/packages/9c/bc/aa3be0ed8c0194bfb08c95689b29b74c7275084d22d6cbe97f056e9683be/phawd-0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e711e18874ebef0fa059ec8afcc938ec326f97fbee5a2cc16477382415b4e01",
"md5": "3d0dd26dbeb4ec995ac5ec098f008802",
"sha256": "02eea2706bda43e82ea09dcc8f5777fef7627bad65d532df7b9ccce228dfdea8"
},
"downloads": -1,
"filename": "phawd-0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3d0dd26dbeb4ec995ac5ec098f008802",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 164085,
"upload_time": "2023-03-29T02:45:34",
"upload_time_iso_8601": "2023-03-29T02:45:34.515047Z",
"url": "https://files.pythonhosted.org/packages/8e/71/1e18874ebef0fa059ec8afcc938ec326f97fbee5a2cc16477382415b4e01/phawd-0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4554e68c16eae6eeb4d3ae60638244cb2e1b4c11e083c0ab42fd747cf449e367",
"md5": "df06cbbd0f227938172903b6db90b874",
"sha256": "d56eb9a2fd07cfd0ef6e0f4c537338db11625de1d215b22ec2f13a3a9f5aa216"
},
"downloads": -1,
"filename": "phawd-0.3-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "df06cbbd0f227938172903b6db90b874",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 750611,
"upload_time": "2023-03-29T02:45:38",
"upload_time_iso_8601": "2023-03-29T02:45:38.844455Z",
"url": "https://files.pythonhosted.org/packages/45/54/e68c16eae6eeb4d3ae60638244cb2e1b4c11e083c0ab42fd747cf449e367/phawd-0.3-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dab5d5cf2a149e0c396538f867f5c30017074e49deae9900fa5c520559c5d1f6",
"md5": "c3a6aff956ce370a83466b9a974a1e73",
"sha256": "f378018acbcc3768793d648890c7f58a4223a86a5a8859caaa5cecbb8af7bb37"
},
"downloads": -1,
"filename": "phawd-0.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c3a6aff956ce370a83466b9a974a1e73",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 687142,
"upload_time": "2023-03-29T02:45:42",
"upload_time_iso_8601": "2023-03-29T02:45:42.436562Z",
"url": "https://files.pythonhosted.org/packages/da/b5/d5cf2a149e0c396538f867f5c30017074e49deae9900fa5c520559c5d1f6/phawd-0.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00485e49ebcd8436e22a36928d943cec2b690501143fd543adc16dd290c058e9",
"md5": "693caf56230479fe171a1881e813847f",
"sha256": "9bdfa8fc42f30a085073bfbc140a9b8cd9eca7da18919e48540265e60ef4ad3c"
},
"downloads": -1,
"filename": "phawd-0.3-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "693caf56230479fe171a1881e813847f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 255293,
"upload_time": "2023-03-29T02:45:44",
"upload_time_iso_8601": "2023-03-29T02:45:44.503276Z",
"url": "https://files.pythonhosted.org/packages/00/48/5e49ebcd8436e22a36928d943cec2b690501143fd543adc16dd290c058e9/phawd-0.3-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33719a52c27b9dba5b2d5db80bfe0928174eb2feea917bfe60525419a9eedbb9",
"md5": "6aac2be425ce44a3534440923568e661",
"sha256": "0e1a0e7fa94788c1775ceb3aa95c6ff0346a8b19bdb4555b197abad9fdcf44fa"
},
"downloads": -1,
"filename": "phawd-0.3-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "6aac2be425ce44a3534440923568e661",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.6",
"size": 456195,
"upload_time": "2023-03-29T02:45:46",
"upload_time_iso_8601": "2023-03-29T02:45:46.929389Z",
"url": "https://files.pythonhosted.org/packages/33/71/9a52c27b9dba5b2d5db80bfe0928174eb2feea917bfe60525419a9eedbb9/phawd-0.3-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef861f5afade3786007b946718064001242f3e3cf9093e48d6a29da431b6d4cb",
"md5": "e19db3d534293192b0cdfa22b5f2dccc",
"sha256": "9f77c621f6cfebfa140e0e4f385e9ca11efe1d8fc7ab514b95b286fa667a4030"
},
"downloads": -1,
"filename": "phawd-0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e19db3d534293192b0cdfa22b5f2dccc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 166322,
"upload_time": "2023-03-29T02:45:50",
"upload_time_iso_8601": "2023-03-29T02:45:50.006928Z",
"url": "https://files.pythonhosted.org/packages/ef/86/1f5afade3786007b946718064001242f3e3cf9093e48d6a29da431b6d4cb/phawd-0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3a6dd95c8aec2fe146b3dfdf5d0f8a54590d5be453262c71c59461909de32b6",
"md5": "b822f0234b9ada5df211abafd8c29e23",
"sha256": "238ed7cf2c6fbe69e3e7bd20b8d4277e5895233763bb019199c9f209951fac9d"
},
"downloads": -1,
"filename": "phawd-0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b822f0234b9ada5df211abafd8c29e23",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 159686,
"upload_time": "2023-03-29T02:45:53",
"upload_time_iso_8601": "2023-03-29T02:45:53.379389Z",
"url": "https://files.pythonhosted.org/packages/f3/a6/dd95c8aec2fe146b3dfdf5d0f8a54590d5be453262c71c59461909de32b6/phawd-0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f8e20c7db4d208b900980daf5a75f6782c3bdf0f7dd94e0a39562fe3049ab1e",
"md5": "ac16516e4f9389bedf0f8b843b0d221f",
"sha256": "5c87ba43f0f3bd12e5c5a0625e753b2b5e4f9bf92e5f2f71678cb5c15e041f72"
},
"downloads": -1,
"filename": "phawd-0.3-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "ac16516e4f9389bedf0f8b843b0d221f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 742653,
"upload_time": "2023-03-29T02:45:56",
"upload_time_iso_8601": "2023-03-29T02:45:56.767077Z",
"url": "https://files.pythonhosted.org/packages/5f/8e/20c7db4d208b900980daf5a75f6782c3bdf0f7dd94e0a39562fe3049ab1e/phawd-0.3-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "826bc978450e9e24e111c897a673c2b7d130c314ed934ceb09c94be21b280d52",
"md5": "8cc863931e21a08f843fbf7afe64c2f2",
"sha256": "3ea2e22a70961c796fc86928b30a819d27b15647be3a145d7725d8e3e235ef05"
},
"downloads": -1,
"filename": "phawd-0.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "8cc863931e21a08f843fbf7afe64c2f2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 682821,
"upload_time": "2023-03-29T02:45:59",
"upload_time_iso_8601": "2023-03-29T02:45:59.349470Z",
"url": "https://files.pythonhosted.org/packages/82/6b/c978450e9e24e111c897a673c2b7d130c314ed934ceb09c94be21b280d52/phawd-0.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c034c863b9c6b813f5d0d3416144c050297b624a714b1ab18fcb6ac9b78a224",
"md5": "d468eca057d568720b126e5b50ae94b4",
"sha256": "856e4eb361331496882d65ae41f7ae933068e1251c40c9e5f5cb38336b86087d"
},
"downloads": -1,
"filename": "phawd-0.3-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "d468eca057d568720b126e5b50ae94b4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 253702,
"upload_time": "2023-03-29T02:46:01",
"upload_time_iso_8601": "2023-03-29T02:46:01.311933Z",
"url": "https://files.pythonhosted.org/packages/3c/03/4c863b9c6b813f5d0d3416144c050297b624a714b1ab18fcb6ac9b78a224/phawd-0.3-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd35124c95b46e6b7a431513710c428954eff98a71a626dc3a159b815eb57c1e",
"md5": "14e0d94b4d86d659a15c4432233566b5",
"sha256": "8e7afc9c026fab711a30eac5412fe55c51a9a6501a31a50f87277c15427b3399"
},
"downloads": -1,
"filename": "phawd-0.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "14e0d94b4d86d659a15c4432233566b5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.6",
"size": 456578,
"upload_time": "2023-03-29T02:46:04",
"upload_time_iso_8601": "2023-03-29T02:46:04.136403Z",
"url": "https://files.pythonhosted.org/packages/dd/35/124c95b46e6b7a431513710c428954eff98a71a626dc3a159b815eb57c1e/phawd-0.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9bcb878c15ca881e4d8f4847d2b16bb5ab098df57d6dc208ed1e45f10e9c5af2",
"md5": "94bb8481e3d4b73faafe38c3fadb25d9",
"sha256": "395db661488241ee29b19fa5a255389cf11de9ea19d319238b96f06ab8513e5f"
},
"downloads": -1,
"filename": "phawd-0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "94bb8481e3d4b73faafe38c3fadb25d9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 166602,
"upload_time": "2023-03-29T02:46:06",
"upload_time_iso_8601": "2023-03-29T02:46:06.899462Z",
"url": "https://files.pythonhosted.org/packages/9b/cb/878c15ca881e4d8f4847d2b16bb5ab098df57d6dc208ed1e45f10e9c5af2/phawd-0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f65cd8818c495cff1bc3d066fbb776470391bdde6da520ecdfc825ff0ac3fb3",
"md5": "08874258dcb3b8678f041a105346f4c4",
"sha256": "772301abc3e23b3787e74f35fbca3ad169ce8c9b3c13d277686967f8229eaa20"
},
"downloads": -1,
"filename": "phawd-0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "08874258dcb3b8678f041a105346f4c4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 160056,
"upload_time": "2023-03-29T02:46:10",
"upload_time_iso_8601": "2023-03-29T02:46:10.371156Z",
"url": "https://files.pythonhosted.org/packages/9f/65/cd8818c495cff1bc3d066fbb776470391bdde6da520ecdfc825ff0ac3fb3/phawd-0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "836d6ef0c59b3b2ea417e25fa8ff470494af90c1455949b5790d36e0607e9751",
"md5": "c03908273c7803d063018f9705525fa7",
"sha256": "566f58437cb2a585b74fd786b52003f2a3edaea204cd79332c5735966385dda4"
},
"downloads": -1,
"filename": "phawd-0.3-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c03908273c7803d063018f9705525fa7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 743299,
"upload_time": "2023-03-29T02:46:13",
"upload_time_iso_8601": "2023-03-29T02:46:13.969631Z",
"url": "https://files.pythonhosted.org/packages/83/6d/6ef0c59b3b2ea417e25fa8ff470494af90c1455949b5790d36e0607e9751/phawd-0.3-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d009d9d0739c82b6730192ccaecba8a39679543fb3d2ad7f831f64196c53a16",
"md5": "ea07dd7ef7beaed1a5d137be95415033",
"sha256": "6b45636ffc53097a13baa85ce598ea0eee87fbac449701cbed2ca967acd50b98"
},
"downloads": -1,
"filename": "phawd-0.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ea07dd7ef7beaed1a5d137be95415033",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 683164,
"upload_time": "2023-03-29T02:46:16",
"upload_time_iso_8601": "2023-03-29T02:46:16.949672Z",
"url": "https://files.pythonhosted.org/packages/0d/00/9d9d0739c82b6730192ccaecba8a39679543fb3d2ad7f831f64196c53a16/phawd-0.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "981feae1d1396c5221017133c7ee738ffcc62636e6862a3a0850d85e2db950fc",
"md5": "1abb32c55f9bdeef18f404303233119f",
"sha256": "f2e7a416711bc8f20cdb1ff808b2986f5400e0c4e098dd686ea6e5eb13b5b1c2"
},
"downloads": -1,
"filename": "phawd-0.3-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "1abb32c55f9bdeef18f404303233119f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 253891,
"upload_time": "2023-03-29T02:46:19",
"upload_time_iso_8601": "2023-03-29T02:46:19.542083Z",
"url": "https://files.pythonhosted.org/packages/98/1f/eae1d1396c5221017133c7ee738ffcc62636e6862a3a0850d85e2db950fc/phawd-0.3-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea1fe7964965c25048c0125feb7012a78924638b7f0e3f6af7fe66060d6f7ac0",
"md5": "13f2be9fe927f7a24f16b9760e969932",
"sha256": "c2c9b951fd2f5843846e99910bb4b36930c7849d252d19c946e411cc3457eb9c"
},
"downloads": -1,
"filename": "phawd-0.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "13f2be9fe927f7a24f16b9760e969932",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.6",
"size": 427130,
"upload_time": "2023-03-29T02:46:22",
"upload_time_iso_8601": "2023-03-29T02:46:22.372895Z",
"url": "https://files.pythonhosted.org/packages/ea/1f/e7964965c25048c0125feb7012a78924638b7f0e3f6af7fe66060d6f7ac0/phawd-0.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b18345e6fff374db9bef856eca7afbb461db274b1c1b5689d6f036ef49efcb2",
"md5": "1e3e108c2977aeff91ef265b3bed55c4",
"sha256": "2eccc70beba044838580d310c8fbe555d105b9eed22d610eaea42c58a5f35064"
},
"downloads": -1,
"filename": "phawd-0.3.tar.gz",
"has_sig": false,
"md5_digest": "1e3e108c2977aeff91ef265b3bed55c4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 228336,
"upload_time": "2023-03-29T02:46:24",
"upload_time_iso_8601": "2023-03-29T02:46:24.921073Z",
"url": "https://files.pythonhosted.org/packages/5b/18/345e6fff374db9bef856eca7afbb461db274b1c1b5689d6f036ef49efcb2/phawd-0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-03-29 02:46:24",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "HuNingHe",
"github_project": "phawd",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "phawd"
}