# Python client for BulletinBoard
[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/YShojiHEP)
[!["Github Sponsors"](https://img.shields.io/badge/GitHub-Sponsors-red?style=flat-square)](https://github.com/sponsors/YShoji-HEP)
[![Crates.io](https://img.shields.io/crates/v/bulletin-board-python?style=flat-square)](https://crates.io/crates/bulletin-board-python)
[![Crates.io](https://img.shields.io/crates/d/bulletin-board-python?style=flat-square)](https://crates.io/crates/bulletin-board-python)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/YShoji-HEP/BulletinBoard/blob/main/LICENSE.txt)
`BulletinBoard` is an object strage for `ArrayObject` for debugging and data taking purposes.
For more details, see [`BulletinBoard`](https://github.com/YShoji-HEP/BulletinBoard).
## Caution
* Clients do not check whether the operation is successful or not to improve performance. Check the log of the server for the errors.
* The data is not encrypted. Please do not send any confidential data over the network.
* This crate is under development and is subject to change in specification. (Compatibility across `BulletinBoard` and `dbgbb` is ensured for the most minor version numbers.)
## Install
The package can be installed via [`pip`](https://pypi.org/project/bulletin-board-client/) as
```bash
pip install bulletin-board-client
```
## Example
To post and read the bulletins,
```python
import bulletin_board_client as bbclient
bbclient.set_addr("192.168.0.3:7578")
bbclient.post("test", "tag", [1,2,3])
bbclient.read("test")
```
## Compilation
Instead of installing via pip, you can compile the source yourself.
This crate depends on python packages of `numpy` and `maturin`.
First, you need to clone the repository:
```bash
cargo clone bulletin-board-python
# OR
git clone https://github.com/YShoji-HEP/BulletinBoard.git
```
Then, go to `bulletin-board-python` directory and run
```bash
maturin develop -r
```
## Functions
|Function|Description|
|-|-|
|set_addr(address)|Set the address of the server. The address is either "ADDRESS:PORT" or "SOCKETPATH". If this function is not called, the default address is "127.0.0.1:7578".|
|set_timeout(timeout=None)|Set timeout for TCP connections in msec. If the argument is None, timeout is disabled (default).|
|post(title, tag(optional), data)|Post the data to the server. `title` and `tag` are str. `data` can be int, float, complex, str, list or numpy.array. Here, list must be able to be comverted to numpy.array. When the tag is ommitted, it becomes `Python`.|
|read(title, tag=None, revisions=None)|Read the bulletin. `revisions` is a list of int.|
|relabel(title_from, tag_from=None, title_to=None, tag_to=None)|Relabel a bulletin.|
|client_version()|Show the version of the client.|
|server_version()|Show the version of the server.|
|status()|Show the status of the server.|
|log()|Show the log of the server.|
|view_board()|List the bulletins.|
|get_info(title, tag=None)|See the details of the bulletin.|
|clear_revisions(title, tag(optional), revisions)|Clear the specified revisions.|
|remove(title, tag=None)|Remove all revisions of the specified bulletin.|
|archive(archive_name, title, tag=None)|Save the bulletin to an archive and make the data persistent.|
|load(archive_name)|Load the archived data. (The archive name is added to the tag)|
|list_archive()|List the archives.|
|rename_archive(archive_from, archive_to)|Rename an archive. This is executed when `reset` is called.|
|delete_archive(archive_name)|Delete an archive. This is executed when `reset` is called.|
|dump(archive_name)|Save all the bulletins to an archive.|
|restore(archive_name)|Reset the server and restore the archived data. (The data is restored to memory/file without modification of the tag)|
|clear_log()|Clear the log of the server.|
|reset_server()|Reset the BulletinBoard server.|
|terminate_server()|Terminate the BulletinBoard server.|
Raw data
{
"_id": null,
"home_page": null,
"name": "bulletin-board-client",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "object_storage, database, debugging, python, client",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/70/d7/fb4a924c62a6c99d0324ed903540d37f1cab3b46ee5d37c4cf7a096a22cb/bulletin_board_client-0.3.2.tar.gz",
"platform": null,
"description": "# Python client for BulletinBoard\n\n[![\"Buy Me A Coffee\"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/YShojiHEP)\n\n[![\"Github Sponsors\"](https://img.shields.io/badge/GitHub-Sponsors-red?style=flat-square)](https://github.com/sponsors/YShoji-HEP)\n[![Crates.io](https://img.shields.io/crates/v/bulletin-board-python?style=flat-square)](https://crates.io/crates/bulletin-board-python)\n[![Crates.io](https://img.shields.io/crates/d/bulletin-board-python?style=flat-square)](https://crates.io/crates/bulletin-board-python)\n[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/YShoji-HEP/BulletinBoard/blob/main/LICENSE.txt)\n\n`BulletinBoard` is an object strage for `ArrayObject` for debugging and data taking purposes.\nFor more details, see [`BulletinBoard`](https://github.com/YShoji-HEP/BulletinBoard).\n\n## Caution\n\n* Clients do not check whether the operation is successful or not to improve performance. Check the log of the server for the errors.\n* The data is not encrypted. Please do not send any confidential data over the network.\n* This crate is under development and is subject to change in specification. (Compatibility across `BulletinBoard` and `dbgbb` is ensured for the most minor version numbers.)\n\n## Install\n\nThe package can be installed via [`pip`](https://pypi.org/project/bulletin-board-client/) as\n```bash\npip install bulletin-board-client\n```\n\n## Example\n\nTo post and read the bulletins,\n```python\nimport bulletin_board_client as bbclient\nbbclient.set_addr(\"192.168.0.3:7578\")\n\nbbclient.post(\"test\", \"tag\", [1,2,3])\nbbclient.read(\"test\")\n```\n\n## Compilation\n\nInstead of installing via pip, you can compile the source yourself.\n\nThis crate depends on python packages of `numpy` and `maturin`.\n\nFirst, you need to clone the repository:\n```bash\ncargo clone bulletin-board-python\n# OR\ngit clone https://github.com/YShoji-HEP/BulletinBoard.git\n```\nThen, go to `bulletin-board-python` directory and run\n```bash\nmaturin develop -r\n```\n\n## Functions\n\n|Function|Description|\n|-|-|\n|set_addr(address)|Set the address of the server. The address is either \"ADDRESS:PORT\" or \"SOCKETPATH\". If this function is not called, the default address is \"127.0.0.1:7578\".|\n|set_timeout(timeout=None)|Set timeout for TCP connections in msec. If the argument is None, timeout is disabled (default).|\n|post(title, tag(optional), data)|Post the data to the server. `title` and `tag` are str. `data` can be int, float, complex, str, list or numpy.array. Here, list must be able to be comverted to numpy.array. When the tag is ommitted, it becomes `Python`.|\n|read(title, tag=None, revisions=None)|Read the bulletin. `revisions` is a list of int.|\n|relabel(title_from, tag_from=None, title_to=None, tag_to=None)|Relabel a bulletin.|\n|client_version()|Show the version of the client.|\n|server_version()|Show the version of the server.|\n|status()|Show the status of the server.|\n|log()|Show the log of the server.|\n|view_board()|List the bulletins.|\n|get_info(title, tag=None)|See the details of the bulletin.|\n|clear_revisions(title, tag(optional), revisions)|Clear the specified revisions.|\n|remove(title, tag=None)|Remove all revisions of the specified bulletin.|\n|archive(archive_name, title, tag=None)|Save the bulletin to an archive and make the data persistent.|\n|load(archive_name)|Load the archived data. (The archive name is added to the tag)|\n|list_archive()|List the archives.|\n|rename_archive(archive_from, archive_to)|Rename an archive. This is executed when `reset` is called.|\n|delete_archive(archive_name)|Delete an archive. This is executed when `reset` is called.|\n|dump(archive_name)|Save all the bulletins to an archive.|\n|restore(archive_name)|Reset the server and restore the archived data. (The data is restored to memory/file without modification of the tag)|\n|clear_log()|Clear the log of the server.|\n|reset_server()|Reset the BulletinBoard server.|\n|terminate_server()|Terminate the BulletinBoard server.|\n\n\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Python client for BulletinBoard",
"version": "0.3.2",
"project_urls": {
"Repository": "https://github.com/YShoji-HEP/BulletinBoard",
"funding": "https://buymeacoffee.com/yshojihep",
"sponsor": "https://github.com/sponsors/YShoji-HEP"
},
"split_keywords": [
"object_storage",
" database",
" debugging",
" python",
" client"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "d32b297c18eea92203b89691ec844dabde655c0448e216889a4df9569705eaa0",
"md5": "b4237a50563da25e977275c4aeceeab1",
"sha256": "106aa5014f816a7c886a30cde15f93afd0168f3f66292f3a89cc7dc54f7c26b8"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b4237a50563da25e977275c4aeceeab1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 371094,
"upload_time": "2024-12-10T14:13:01",
"upload_time_iso_8601": "2024-12-10T14:13:01.131922Z",
"url": "https://files.pythonhosted.org/packages/d3/2b/297c18eea92203b89691ec844dabde655c0448e216889a4df9569705eaa0/bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ff2c25b326006de9dc4ac2580f418578aee0986fe4dd69ea5a842b6dac1fccc",
"md5": "a0652732461227be3bd89fc6484dbb84",
"sha256": "a7c24a92b748bd53bd65039475b1c526159372669a39ee7c61147dbcc3891caf"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a0652732461227be3bd89fc6484dbb84",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 384189,
"upload_time": "2024-12-10T14:13:21",
"upload_time_iso_8601": "2024-12-10T14:13:21.116623Z",
"url": "https://files.pythonhosted.org/packages/1f/f2/c25b326006de9dc4ac2580f418578aee0986fe4dd69ea5a842b6dac1fccc/bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d737d916b986a51a181af7b92aff2ba98a9d29aa9fcd80700103c8f669456872",
"md5": "23dd3b6bf6679970bcdf8bb64e179396",
"sha256": "b197609be69bfd337d166140ead83f97cb1820a4f110571246c9b3d8246ca755"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "23dd3b6bf6679970bcdf8bb64e179396",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 420587,
"upload_time": "2024-12-10T14:13:40",
"upload_time_iso_8601": "2024-12-10T14:13:40.414844Z",
"url": "https://files.pythonhosted.org/packages/d7/37/d916b986a51a181af7b92aff2ba98a9d29aa9fcd80700103c8f669456872/bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d101bd7c23b90cc9f53a7b9d049db01c9e18fe573e3b8575a22176b8d32214a",
"md5": "933fd72ab8412bf7731a2dd6a71e0724",
"sha256": "714e22d44be4b3e5438d4ce0bf631d065ba7f67f7a74feaafbbb8b5e8bbd3b98"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "933fd72ab8412bf7731a2dd6a71e0724",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 461119,
"upload_time": "2024-12-10T14:13:51",
"upload_time_iso_8601": "2024-12-10T14:13:51.706010Z",
"url": "https://files.pythonhosted.org/packages/0d/10/1bd7c23b90cc9f53a7b9d049db01c9e18fe573e3b8575a22176b8d32214a/bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "545ad6b83c135de4eae8ec393bdd5901a8ebf78e4b3c6c5db200ec97ebbc9119",
"md5": "84b319b0fe0a1b68e564c141bc175fd3",
"sha256": "775f002232892b9d3c10b356aecabbd04faf48ea1b06b07e1a6c4261611ee302"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "84b319b0fe0a1b68e564c141bc175fd3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 382684,
"upload_time": "2024-12-10T14:14:13",
"upload_time_iso_8601": "2024-12-10T14:14:13.803347Z",
"url": "https://files.pythonhosted.org/packages/54/5a/d6b83c135de4eae8ec393bdd5901a8ebf78e4b3c6c5db200ec97ebbc9119/bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7c28c8d5ffd600313cb4eee77febe52c0dabcb8c0c55b3374275ac84c702dff",
"md5": "8c2bb2d3a00b5b1a94c469c1bb1257c8",
"sha256": "35052798ef92270e258f99d84f4b78b67741d47b225bb207cb70050e42cc6b1a"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "8c2bb2d3a00b5b1a94c469c1bb1257c8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 406148,
"upload_time": "2024-12-10T14:14:05",
"upload_time_iso_8601": "2024-12-10T14:14:05.488068Z",
"url": "https://files.pythonhosted.org/packages/b7/c2/8c8d5ffd600313cb4eee77febe52c0dabcb8c0c55b3374275ac84c702dff/bulletin_board_client-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f35acf298c057072307bbb24eb2342ef19e3f6796fc414b4d11bb101b119b1d",
"md5": "f05b24c020ceed7d648c080b6244717f",
"sha256": "5f70e0c97cb5ffa55cad1d4b516570a731643f69b37416f3cd8cdd7993369303"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f05b24c020ceed7d648c080b6244717f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 548338,
"upload_time": "2024-12-10T14:14:37",
"upload_time_iso_8601": "2024-12-10T14:14:37.681922Z",
"url": "https://files.pythonhosted.org/packages/5f/35/acf298c057072307bbb24eb2342ef19e3f6796fc414b4d11bb101b119b1d/bulletin_board_client-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b1bc71d206eda993acea9cf3ccd748708b64863450fe58ae443b7aacaf5a11e",
"md5": "7db7779b22e74609ddf2a9afbf83f963",
"sha256": "d36573e9f2d7e192c71909a11d5121f7a1ee63b6799c7d8ff521eb4835535308"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7db7779b22e74609ddf2a9afbf83f963",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 646194,
"upload_time": "2024-12-10T14:14:50",
"upload_time_iso_8601": "2024-12-10T14:14:50.249556Z",
"url": "https://files.pythonhosted.org/packages/2b/1b/c71d206eda993acea9cf3ccd748708b64863450fe58ae443b7aacaf5a11e/bulletin_board_client-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c38e7867a43f671c6d143271a3f161bc1602dcba4aa834e714eccb314694cd5",
"md5": "73a09bb29b8b096d5c60eb0f46e29780",
"sha256": "55d0b7baeef01682f12371ee34c37b9fca3001d4364b7115e9124d18c860c7ee"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "73a09bb29b8b096d5c60eb0f46e29780",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 578669,
"upload_time": "2024-12-10T14:15:07",
"upload_time_iso_8601": "2024-12-10T14:15:07.074059Z",
"url": "https://files.pythonhosted.org/packages/0c/38/e7867a43f671c6d143271a3f161bc1602dcba4aa834e714eccb314694cd5/bulletin_board_client-0.3.2-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "33ae6d1ecea050981cf3f7d0a5c3837527d8bf7a7708b07187b7c2185874d47b",
"md5": "76127c4537a385bf800d8e2a79d974dc",
"sha256": "7ee9f960b8b41ca82fc10d848fe9078e1b6868ef22cbc2bcbfb2a50801a6f13f"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "76127c4537a385bf800d8e2a79d974dc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 553002,
"upload_time": "2024-12-10T14:15:23",
"upload_time_iso_8601": "2024-12-10T14:15:23.475071Z",
"url": "https://files.pythonhosted.org/packages/33/ae/6d1ecea050981cf3f7d0a5c3837527d8bf7a7708b07187b7c2185874d47b/bulletin_board_client-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42c12400d8838c8566425efb329b857be95e95289c2c27eba9a07447e8738b4c",
"md5": "8ebe56625331464e19863772bcc31298",
"sha256": "7e32e856091f1a016475124ad38d72364478ac5bca9a20bb6a4b62388b1dd846"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "8ebe56625331464e19863772bcc31298",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 212593,
"upload_time": "2024-12-10T14:16:15",
"upload_time_iso_8601": "2024-12-10T14:16:15.823872Z",
"url": "https://files.pythonhosted.org/packages/42/c1/2400d8838c8566425efb329b857be95e95289c2c27eba9a07447e8738b4c/bulletin_board_client-0.3.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4422224c51d02b0e05e920f3aa89ab444f1792bc6244503f075d358929e6f53",
"md5": "4eb6e04bfe9cb528506525aaf83c65cc",
"sha256": "a77a517462caf23d57c9974cf713e2b78f350b72507de2a93ed8f2d179c3a25c"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "4eb6e04bfe9cb528506525aaf83c65cc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 222131,
"upload_time": "2024-12-10T14:16:06",
"upload_time_iso_8601": "2024-12-10T14:16:06.358999Z",
"url": "https://files.pythonhosted.org/packages/a4/42/2224c51d02b0e05e920f3aa89ab444f1792bc6244503f075d358929e6f53/bulletin_board_client-0.3.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14bf2c57e1db3b0329fd0c8b6041ab202274c92e1a0f32307d7fff02d237e44a",
"md5": "cd9125d2213a63698b65d7aa9f6be4e1",
"sha256": "094afb5178ddf62453a59bac34d7d2fefa9d85b7001c61d296cf5cfe082f10b2"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "cd9125d2213a63698b65d7aa9f6be4e1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 344326,
"upload_time": "2024-12-10T14:14:31",
"upload_time_iso_8601": "2024-12-10T14:14:31.532853Z",
"url": "https://files.pythonhosted.org/packages/14/bf/2c57e1db3b0329fd0c8b6041ab202274c92e1a0f32307d7fff02d237e44a/bulletin_board_client-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a54e86106a75b6cca88d6f469d512e27500e0276b5e23269d0bba59b64a44bba",
"md5": "bba438a47012831a4f7ee5a5ba01cdec",
"sha256": "54f18d6c655744de00ed6d7a7d2c111e135b2ff26d3005990f779318d182984e"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bba438a47012831a4f7ee5a5ba01cdec",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 329748,
"upload_time": "2024-12-10T14:14:26",
"upload_time_iso_8601": "2024-12-10T14:14:26.471245Z",
"url": "https://files.pythonhosted.org/packages/a5/4e/86106a75b6cca88d6f469d512e27500e0276b5e23269d0bba59b64a44bba/bulletin_board_client-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be38792e5b1468d2c44da90838261558f389fd7beb670b75e97c351c0c1c6307",
"md5": "1c40c59252c0b3516f4cc7ee1c49d4e9",
"sha256": "00c1fb15f9661ef7adb0f1b02330d1bbbef58be12fdf810ae45437201140e8c2"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1c40c59252c0b3516f4cc7ee1c49d4e9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 370752,
"upload_time": "2024-12-10T14:13:03",
"upload_time_iso_8601": "2024-12-10T14:13:03.525044Z",
"url": "https://files.pythonhosted.org/packages/be/38/792e5b1468d2c44da90838261558f389fd7beb670b75e97c351c0c1c6307/bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f564e1800f72e63250fcfd49b968464d2407fcd9982f5e9a13dc536dae7ffd20",
"md5": "525b928ec82ed6d892aae6c892e2bbfe",
"sha256": "680e2e2d9fba64537ec009c12fa2de52871851287011e71be14907bafe8caf93"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "525b928ec82ed6d892aae6c892e2bbfe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 383962,
"upload_time": "2024-12-10T14:13:23",
"upload_time_iso_8601": "2024-12-10T14:13:23.902923Z",
"url": "https://files.pythonhosted.org/packages/f5/64/e1800f72e63250fcfd49b968464d2407fcd9982f5e9a13dc536dae7ffd20/bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f9f9bc9fdc0d832da87d404428062e365d62849bc9535c86cfa63f0378fdfb7",
"md5": "39da02b291172f2a89b055c35aa6efcf",
"sha256": "6e93c7bf74cfbf981a5313522da8639f890fadadb843307ca1644754638a90f3"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "39da02b291172f2a89b055c35aa6efcf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 420539,
"upload_time": "2024-12-10T14:13:41",
"upload_time_iso_8601": "2024-12-10T14:13:41.658317Z",
"url": "https://files.pythonhosted.org/packages/1f/9f/9bc9fdc0d832da87d404428062e365d62849bc9535c86cfa63f0378fdfb7/bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b0a1255e668061fa8638d11ca05174082a9163cd0d6b5fa606ffa2558131563",
"md5": "0f1057675a5d4d81a515843b4e36702f",
"sha256": "e27ee41f133f20868a5c23219fc4cf4a0ee5d3cc9aa14b7986d4508ce3e6a46d"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0f1057675a5d4d81a515843b4e36702f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 460713,
"upload_time": "2024-12-10T14:13:53",
"upload_time_iso_8601": "2024-12-10T14:13:53.709036Z",
"url": "https://files.pythonhosted.org/packages/5b/0a/1255e668061fa8638d11ca05174082a9163cd0d6b5fa606ffa2558131563/bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa29ef5c3eabc676cc3ea674114054f7fb1475431287cff1d53ec0561305b5a2",
"md5": "8ed99df3f4d90b4243922ed15fddafb2",
"sha256": "13c7872b4ad2fd212b0289cfd30cebb0e9c0b6b4deefe05952d2dd6523b66ab8"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8ed99df3f4d90b4243922ed15fddafb2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 382429,
"upload_time": "2024-12-10T14:14:16",
"upload_time_iso_8601": "2024-12-10T14:14:16.096734Z",
"url": "https://files.pythonhosted.org/packages/fa/29/ef5c3eabc676cc3ea674114054f7fb1475431287cff1d53ec0561305b5a2/bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7fb106c2429714d04004ca91bbf856067ae2329d7948b81e362151d334279e12",
"md5": "fa89b3ac4805907bbb37976e59a7a311",
"sha256": "e1e65907eeeef880bc14c5b3bb14494bf8d6a69470baaaf9fccb7b9ff65ee6c7"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "fa89b3ac4805907bbb37976e59a7a311",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 405944,
"upload_time": "2024-12-10T14:14:06",
"upload_time_iso_8601": "2024-12-10T14:14:06.606943Z",
"url": "https://files.pythonhosted.org/packages/7f/b1/06c2429714d04004ca91bbf856067ae2329d7948b81e362151d334279e12/bulletin_board_client-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d1097945f7a3740b4f7de42b347abf13b297c768e397cad6aa3a42f0610fcb5",
"md5": "318b2f7b34d5c8ba35427150503d659a",
"sha256": "08edc0440f3eef03c9dce50baabb54aa76969358bca99e7fcbcd17fe341a7b25"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "318b2f7b34d5c8ba35427150503d659a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 548070,
"upload_time": "2024-12-10T14:14:39",
"upload_time_iso_8601": "2024-12-10T14:14:39.176255Z",
"url": "https://files.pythonhosted.org/packages/3d/10/97945f7a3740b4f7de42b347abf13b297c768e397cad6aa3a42f0610fcb5/bulletin_board_client-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "570be61c495e0ced60a0306115f2e459ee907888cf9b7171634faac5e835f649",
"md5": "45763c3c2d43efd122bcb8b154af8deb",
"sha256": "7ff5201ab8ab90950bb0c03e295dd3acceb293b3fd664c19657156eced0df437"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "45763c3c2d43efd122bcb8b154af8deb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 646108,
"upload_time": "2024-12-10T14:14:51",
"upload_time_iso_8601": "2024-12-10T14:14:51.731936Z",
"url": "https://files.pythonhosted.org/packages/57/0b/e61c495e0ced60a0306115f2e459ee907888cf9b7171634faac5e835f649/bulletin_board_client-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63c23142c45e086e1474ba8fa0d978f3ae7ea20fdabf13cdbf12030af3a79f8c",
"md5": "308c20949982af6c81e922e1edc11182",
"sha256": "23c1a5b19b9f4812e28e22bf72d462decba719bc14063b219920e05038c8a176"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "308c20949982af6c81e922e1edc11182",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 578553,
"upload_time": "2024-12-10T14:15:09",
"upload_time_iso_8601": "2024-12-10T14:15:09.090309Z",
"url": "https://files.pythonhosted.org/packages/63/c2/3142c45e086e1474ba8fa0d978f3ae7ea20fdabf13cdbf12030af3a79f8c/bulletin_board_client-0.3.2-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9bc51840b6dc85edb4d4728d41ac52e1a69d31b253aa115df6a87bb60604ea73",
"md5": "01203ca956ddf29d16d53aff2aae0bde",
"sha256": "4dc5cb02ed3700d7643727a3c803d98aef6ea2051d534b77fb68e828623572b4"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "01203ca956ddf29d16d53aff2aae0bde",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 552718,
"upload_time": "2024-12-10T14:15:27",
"upload_time_iso_8601": "2024-12-10T14:15:27.692105Z",
"url": "https://files.pythonhosted.org/packages/9b/c5/1840b6dc85edb4d4728d41ac52e1a69d31b253aa115df6a87bb60604ea73/bulletin_board_client-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f44b2ccaae07b6a0e88b4759494cad0ee6ea2902c128daf7c257ce06b64e4989",
"md5": "40b12b7f7f83decd8b88b332e91f85a3",
"sha256": "269dab32169812b1fa9aea76d05381ab2c9a079b96bd4a93918371a46a142320"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "40b12b7f7f83decd8b88b332e91f85a3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 212604,
"upload_time": "2024-12-10T14:16:17",
"upload_time_iso_8601": "2024-12-10T14:16:17.568409Z",
"url": "https://files.pythonhosted.org/packages/f4/4b/2ccaae07b6a0e88b4759494cad0ee6ea2902c128daf7c257ce06b64e4989/bulletin_board_client-0.3.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17b9ce868048cc311540f7a0b6a585e876813ab04d8f33858f0a23d952202825",
"md5": "bd712703f727ff074b7a3edbf1534dde",
"sha256": "16b628d8c78b4a40f607e23fb9d9df262f1c64ef8dce96823967f5b648f7ae22"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "bd712703f727ff074b7a3edbf1534dde",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 221951,
"upload_time": "2024-12-10T14:16:08",
"upload_time_iso_8601": "2024-12-10T14:16:08.730263Z",
"url": "https://files.pythonhosted.org/packages/17/b9/ce868048cc311540f7a0b6a585e876813ab04d8f33858f0a23d952202825/bulletin_board_client-0.3.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ee4e32fdd64aa3c0d436adf92f06fd40e59616ac99a144db1fbb79213369d82",
"md5": "f2cc0d510a2fd086f548dc824a88b4ad",
"sha256": "7b92cf4e8446cae25bcac95f84716bceae3b95b4e252bf97af31717d52a5a52d"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f2cc0d510a2fd086f548dc824a88b4ad",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 342059,
"upload_time": "2024-12-10T14:14:33",
"upload_time_iso_8601": "2024-12-10T14:14:33.704541Z",
"url": "https://files.pythonhosted.org/packages/4e/e4/e32fdd64aa3c0d436adf92f06fd40e59616ac99a144db1fbb79213369d82/bulletin_board_client-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "898349c5962d049ee92509527971a8ec2f4651de9072f9769b9a9c67d2764dbb",
"md5": "51a1a61913b8276f4d83c3682e7c4c8c",
"sha256": "586d3ffad2923f52ababf97dfc3c4d9befa3f36e32df81256be39a9e3a4f78fb"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "51a1a61913b8276f4d83c3682e7c4c8c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 326673,
"upload_time": "2024-12-10T14:14:28",
"upload_time_iso_8601": "2024-12-10T14:14:28.976716Z",
"url": "https://files.pythonhosted.org/packages/89/83/49c5962d049ee92509527971a8ec2f4651de9072f9769b9a9c67d2764dbb/bulletin_board_client-0.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cb318710a54afabe5e79bab8f4a41e6a1159e27a6a6d24b0ee83ff03118d69f",
"md5": "d379af8400dd163109d3df8ca555f2de",
"sha256": "ae9ed8f9b36bdd28344e0eccf05774a69f456bc02a4a2fdcee611cb866f013a4"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d379af8400dd163109d3df8ca555f2de",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 369708,
"upload_time": "2024-12-10T14:13:05",
"upload_time_iso_8601": "2024-12-10T14:13:05.917720Z",
"url": "https://files.pythonhosted.org/packages/0c/b3/18710a54afabe5e79bab8f4a41e6a1159e27a6a6d24b0ee83ff03118d69f/bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24c7c17961405d73944409cb3cb50c184568b599eab0ad53815a39db310d2c99",
"md5": "661931a3619527d37f732de2ee75215b",
"sha256": "96ee7910d8b93679ec56174a10a04b1b2b78bde3c1f56b7fa8696d5d2761f2dd"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "661931a3619527d37f732de2ee75215b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 383091,
"upload_time": "2024-12-10T14:13:25",
"upload_time_iso_8601": "2024-12-10T14:13:25.164144Z",
"url": "https://files.pythonhosted.org/packages/24/c7/c17961405d73944409cb3cb50c184568b599eab0ad53815a39db310d2c99/bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e78e2a96bdb5cbc5f933a68659f5d8666e3b94779d6f0415031dad0096fbdb5a",
"md5": "ca3ccfb4caeda56d0acde3163aee6dc8",
"sha256": "60efb52f08231a581ef61954e8db7509a7504b6b0eb9306008c68c0ee0618d49"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ca3ccfb4caeda56d0acde3163aee6dc8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 419438,
"upload_time": "2024-12-10T14:13:42",
"upload_time_iso_8601": "2024-12-10T14:13:42.871069Z",
"url": "https://files.pythonhosted.org/packages/e7/8e/2a96bdb5cbc5f933a68659f5d8666e3b94779d6f0415031dad0096fbdb5a/bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ba582ea03a62497a76a3845c95bbd9229159d0c5bda6dd19aca3188a2dc250a",
"md5": "5072908f6a58b32200e4b33999980aa5",
"sha256": "15e472bc63710e9f3299d22a921f31dc60e7f2d821142871c552349b98c11ff2"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5072908f6a58b32200e4b33999980aa5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 457797,
"upload_time": "2024-12-10T14:13:54",
"upload_time_iso_8601": "2024-12-10T14:13:54.974960Z",
"url": "https://files.pythonhosted.org/packages/2b/a5/82ea03a62497a76a3845c95bbd9229159d0c5bda6dd19aca3188a2dc250a/bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bcf19146b7626aecd09b3832fa6679fca83000c41e7b3c92de8ec444e3862bf3",
"md5": "07290bd543779fbbf3b68f8fb369d06c",
"sha256": "228f1ea89a8b73357f44c7b7fa6f781eae25c36cf43a9fedaec00f44a5b05115"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "07290bd543779fbbf3b68f8fb369d06c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 380539,
"upload_time": "2024-12-10T14:14:18",
"upload_time_iso_8601": "2024-12-10T14:14:18.007412Z",
"url": "https://files.pythonhosted.org/packages/bc/f1/9146b7626aecd09b3832fa6679fca83000c41e7b3c92de8ec444e3862bf3/bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6a6aeed37a5ca0e8c67320c9cdf2736889ac362e5ad78aa2f0123b7ecb67294",
"md5": "0f9fee01320d7155abcce79d5bb0660a",
"sha256": "f8b492c934f9bf00cb33e6df53eb30c0b75ecd39175b6dac8b93102940ce29b0"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0f9fee01320d7155abcce79d5bb0660a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 404435,
"upload_time": "2024-12-10T14:14:07",
"upload_time_iso_8601": "2024-12-10T14:14:07.774895Z",
"url": "https://files.pythonhosted.org/packages/f6/a6/aeed37a5ca0e8c67320c9cdf2736889ac362e5ad78aa2f0123b7ecb67294/bulletin_board_client-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3757596669ac8c65bfb8be7af52cdf93be3d82108f4a3091718e7d084f3e019",
"md5": "be47347eac59969b5103317143ae616e",
"sha256": "8c293b5d67302c3d4ca3b748731a60f066c087bd62e20c2e9cebb67651595ba7"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "be47347eac59969b5103317143ae616e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 546221,
"upload_time": "2024-12-10T14:14:41",
"upload_time_iso_8601": "2024-12-10T14:14:41.112034Z",
"url": "https://files.pythonhosted.org/packages/d3/75/7596669ac8c65bfb8be7af52cdf93be3d82108f4a3091718e7d084f3e019/bulletin_board_client-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1305e6918a5aceca4e436d0af86e8e25d97908f696cdbe1c45115433b5a06931",
"md5": "6f15414388f829ab1fe8ea8b9b9be840",
"sha256": "7d9dac5014198502a10fee311ae4bda603a2624e81b19c0e28e9ff10eeb13b40"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "6f15414388f829ab1fe8ea8b9b9be840",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 645158,
"upload_time": "2024-12-10T14:14:54",
"upload_time_iso_8601": "2024-12-10T14:14:54.193237Z",
"url": "https://files.pythonhosted.org/packages/13/05/e6918a5aceca4e436d0af86e8e25d97908f696cdbe1c45115433b5a06931/bulletin_board_client-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee53da16e62c87bd4fccae5815f54a598570f6aa86d2654c183206d408f4b2f8",
"md5": "be55c6bec763c5dc67409227eecb5d65",
"sha256": "b35ed56d07ab8c214cf22b3dc47375338e73964c3e374ade37eb29a9e04df2d8"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "be55c6bec763c5dc67409227eecb5d65",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 576501,
"upload_time": "2024-12-10T14:15:10",
"upload_time_iso_8601": "2024-12-10T14:15:10.387815Z",
"url": "https://files.pythonhosted.org/packages/ee/53/da16e62c87bd4fccae5815f54a598570f6aa86d2654c183206d408f4b2f8/bulletin_board_client-0.3.2-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f68eb1d316704ad34165e48aaaa0997bed1ca40dedc56f1de6dc750d65a24f1c",
"md5": "a60a640aa8a41d634ac9c28af33e7426",
"sha256": "41d2a510b592fd40b3021839dfe82f9f26a94d27ed6a9542d094b5e5ab813d6d"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a60a640aa8a41d634ac9c28af33e7426",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 550933,
"upload_time": "2024-12-10T14:15:29",
"upload_time_iso_8601": "2024-12-10T14:15:29.303360Z",
"url": "https://files.pythonhosted.org/packages/f6/8e/b1d316704ad34165e48aaaa0997bed1ca40dedc56f1de6dc750d65a24f1c/bulletin_board_client-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86a7280cb88b9094ecc2dead9a724ffc07110f0c8987001143d185939597bdd7",
"md5": "2faab3c49918be6492a6379178ca16ea",
"sha256": "827b619f3454dc2b899acb9f5f911b063988c8ad0ff4fa708cb5e7c47d286736"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "2faab3c49918be6492a6379178ca16ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 212348,
"upload_time": "2024-12-10T14:16:18",
"upload_time_iso_8601": "2024-12-10T14:16:18.985810Z",
"url": "https://files.pythonhosted.org/packages/86/a7/280cb88b9094ecc2dead9a724ffc07110f0c8987001143d185939597bdd7/bulletin_board_client-0.3.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce0ad11621c870e907a28da3bbcfc0a8acc4125ba285c03d3d62e7a298ae8763",
"md5": "39ad050e3b7fd34aa48998221112cbe7",
"sha256": "c91e83f921e8c4b4ce37abd7b0abb3d2924291150f320950fc0094dbef4332c4"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "39ad050e3b7fd34aa48998221112cbe7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 221650,
"upload_time": "2024-12-10T14:16:11",
"upload_time_iso_8601": "2024-12-10T14:16:11.299512Z",
"url": "https://files.pythonhosted.org/packages/ce/0a/d11621c870e907a28da3bbcfc0a8acc4125ba285c03d3d62e7a298ae8763/bulletin_board_client-0.3.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "487e7b671a208e50bca3987d741be321a11759b3b886a004d824836ea23620bd",
"md5": "54aacc2984280609409e5486c3694705",
"sha256": "109b41edc716a6cf28601a4c5fda65e55ca9f9bf3d5b6ce24342dfe245e2aa84"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "54aacc2984280609409e5486c3694705",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 342061,
"upload_time": "2024-12-10T14:14:36",
"upload_time_iso_8601": "2024-12-10T14:14:36.124653Z",
"url": "https://files.pythonhosted.org/packages/48/7e/7b671a208e50bca3987d741be321a11759b3b886a004d824836ea23620bd/bulletin_board_client-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd21d6c3e7cdd355e886b474fe693d14216384dbde257891d0a30fea8baa0620",
"md5": "2520c46dcaf9528ac267084fe398a33e",
"sha256": "9b834e807397d81a21d8e4cb80610ecff8351f8bd59f082b2ade91a6677b2450"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2520c46dcaf9528ac267084fe398a33e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 326795,
"upload_time": "2024-12-10T14:14:30",
"upload_time_iso_8601": "2024-12-10T14:14:30.256590Z",
"url": "https://files.pythonhosted.org/packages/cd/21/d6c3e7cdd355e886b474fe693d14216384dbde257891d0a30fea8baa0620/bulletin_board_client-0.3.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9cef11645398d5dc827c4762157516fe05b9205c20bc996070a9d68b311d3450",
"md5": "fdd3f644c28b8785de595c957c0e9e3a",
"sha256": "bcb7c08359d5e35f2917fbec85d07dffa64a42e3a7076bd79898c335aeffbd88"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fdd3f644c28b8785de595c957c0e9e3a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 370245,
"upload_time": "2024-12-10T14:13:09",
"upload_time_iso_8601": "2024-12-10T14:13:09.631199Z",
"url": "https://files.pythonhosted.org/packages/9c/ef/11645398d5dc827c4762157516fe05b9205c20bc996070a9d68b311d3450/bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f955687f76ff28f6d299b23a1e4f4a10d36a8b2413f3fa1b9384e8ba0a4191f",
"md5": "97d1c4dfae491708231076f5ea14958c",
"sha256": "7611f2339834b08ef0c40f2af43a0568e7f56cc4715b21dc908f9cc0cba27d44"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "97d1c4dfae491708231076f5ea14958c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 383332,
"upload_time": "2024-12-10T14:13:28",
"upload_time_iso_8601": "2024-12-10T14:13:28.970458Z",
"url": "https://files.pythonhosted.org/packages/1f/95/5687f76ff28f6d299b23a1e4f4a10d36a8b2413f3fa1b9384e8ba0a4191f/bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05ace611a9837e62ef1e407c2c799bd9b805ff1d686d8e156c404aeeff7e1345",
"md5": "a99c1fbe43e359e66732616cfc15ca8d",
"sha256": "8810060d58cc87743f71a6020975b17666590099ca24a6bee6fbeeda99c6f006"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a99c1fbe43e359e66732616cfc15ca8d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 419453,
"upload_time": "2024-12-10T14:13:44",
"upload_time_iso_8601": "2024-12-10T14:13:44.077246Z",
"url": "https://files.pythonhosted.org/packages/05/ac/e611a9837e62ef1e407c2c799bd9b805ff1d686d8e156c404aeeff7e1345/bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7eaddf4bc639de8acbe6ad54e797a3d8dbbf59bce23fa8977c8c3331719b935",
"md5": "a6c47537143ec8dd4e35a0425b86953c",
"sha256": "d6922351b906f5f0376a1cac53912b7ca16dcd4f665b2c5eb652bd570e21e785"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a6c47537143ec8dd4e35a0425b86953c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 458213,
"upload_time": "2024-12-10T14:13:56",
"upload_time_iso_8601": "2024-12-10T14:13:56.277373Z",
"url": "https://files.pythonhosted.org/packages/b7/ea/ddf4bc639de8acbe6ad54e797a3d8dbbf59bce23fa8977c8c3331719b935/bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1fc4bfa7e9aebafc60758df269b1dc90613b27688ec9bb96680f078794f26a6",
"md5": "0cdfb0a782856f033bac8567a698ae81",
"sha256": "a602748eb2a4dee526c9a0a042ba29c2442d4e85e362121b25903766b29450de"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0cdfb0a782856f033bac8567a698ae81",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 381209,
"upload_time": "2024-12-10T14:14:20",
"upload_time_iso_8601": "2024-12-10T14:14:20.407143Z",
"url": "https://files.pythonhosted.org/packages/e1/fc/4bfa7e9aebafc60758df269b1dc90613b27688ec9bb96680f078794f26a6/bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5dac07796a6206814f88e6f6201f906d0ad456323c5aef57f741bb2bb3bf383c",
"md5": "fa8f746fcd167922085cd463403c650d",
"sha256": "bef7230cc6564688a152d9a9ca46f98c247a249f70efc57a6860c6ca772bc23f"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "fa8f746fcd167922085cd463403c650d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 404644,
"upload_time": "2024-12-10T14:14:09",
"upload_time_iso_8601": "2024-12-10T14:14:09.103607Z",
"url": "https://files.pythonhosted.org/packages/5d/ac/07796a6206814f88e6f6201f906d0ad456323c5aef57f741bb2bb3bf383c/bulletin_board_client-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f229671b553cdda987854fc947fe0086f9ad343e6a04b4494f306e78cbf4449c",
"md5": "4e07ca55e00b8646887c57c2e6e2eb96",
"sha256": "c810721806244ac9b4124f2fe9c37c92989110ce6867278fa6031a4ec205f8c8"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4e07ca55e00b8646887c57c2e6e2eb96",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 546942,
"upload_time": "2024-12-10T14:14:42",
"upload_time_iso_8601": "2024-12-10T14:14:42.357913Z",
"url": "https://files.pythonhosted.org/packages/f2/29/671b553cdda987854fc947fe0086f9ad343e6a04b4494f306e78cbf4449c/bulletin_board_client-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3471ec980080fc9449005dbad19ff50bec53127248b7f477fbe989b7b028f8c",
"md5": "b556032cefddb2b481fc62579f8e37ec",
"sha256": "73cd88f1837fa8f0d9d21f223d17ae08caecb75ca8ba56938d226fc3422af726"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b556032cefddb2b481fc62579f8e37ec",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 645219,
"upload_time": "2024-12-10T14:14:55",
"upload_time_iso_8601": "2024-12-10T14:14:55.420124Z",
"url": "https://files.pythonhosted.org/packages/c3/47/1ec980080fc9449005dbad19ff50bec53127248b7f477fbe989b7b028f8c/bulletin_board_client-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d167b9a1c7be448c41ba1aae4db735f267f4b725f19ae8d4c6d61dbfec64f844",
"md5": "bc477618ccef1742951072290de0f869",
"sha256": "0a2b30bc57d10230384757297e0d2e48fa20ca84559dde623cf0572d703a672d"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bc477618ccef1742951072290de0f869",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 576777,
"upload_time": "2024-12-10T14:15:13",
"upload_time_iso_8601": "2024-12-10T14:15:13.118703Z",
"url": "https://files.pythonhosted.org/packages/d1/67/b9a1c7be448c41ba1aae4db735f267f4b725f19ae8d4c6d61dbfec64f844/bulletin_board_client-0.3.2-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9913624ed8594891c96e777ba6cbc53fe9f2c28d9ca511dd92392c6167d6ccc",
"md5": "b97e38745342fbbd6e2a6e03738d2428",
"sha256": "5fcd15ac07b4fdbeb09d285cb4bfbae431fcfad084d2a528057dc410ca40ece3"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b97e38745342fbbd6e2a6e03738d2428",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 551568,
"upload_time": "2024-12-10T14:15:54",
"upload_time_iso_8601": "2024-12-10T14:15:54.337437Z",
"url": "https://files.pythonhosted.org/packages/d9/91/3624ed8594891c96e777ba6cbc53fe9f2c28d9ca511dd92392c6167d6ccc/bulletin_board_client-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b2c36d414f8bd8d4b1bd8a51c94347903ecdeb54adee7cfa855a0521e90aeba",
"md5": "4e6ed3ff9fd0e5f5ba4084fb7c4e9a37",
"sha256": "2cc98a575ac8dbf0aa5e07254553f0ddacf03f24df77f642bb9075195901d524"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4e6ed3ff9fd0e5f5ba4084fb7c4e9a37",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 370026,
"upload_time": "2024-12-10T14:13:12",
"upload_time_iso_8601": "2024-12-10T14:13:12.862132Z",
"url": "https://files.pythonhosted.org/packages/6b/2c/36d414f8bd8d4b1bd8a51c94347903ecdeb54adee7cfa855a0521e90aeba/bulletin_board_client-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5efb1f33914892194accd2ff48ca7041f89be0acc6911984ef12e98e5bef8698",
"md5": "bd70f368bc156f9b05025422dd649ce9",
"sha256": "c22c868a8060d811db2da8b52d6ee34cc0f90d1e02d08c5bf1537c38878e63fc"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "bd70f368bc156f9b05025422dd649ce9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 382506,
"upload_time": "2024-12-10T14:13:30",
"upload_time_iso_8601": "2024-12-10T14:13:30.072006Z",
"url": "https://files.pythonhosted.org/packages/5e/fb/1f33914892194accd2ff48ca7041f89be0acc6911984ef12e98e5bef8698/bulletin_board_client-0.3.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c94b7109dca340fc6a0e206ecf3486d73b10babd2ebc4866623521cc914c1842",
"md5": "183e567e52839c4ed71f9846132b2493",
"sha256": "fecaa05f67555079d327b2d4692a15cc310e729bb26c7318b6fbdeb4d261e19b"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "183e567e52839c4ed71f9846132b2493",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 419423,
"upload_time": "2024-12-10T14:13:45",
"upload_time_iso_8601": "2024-12-10T14:13:45.263181Z",
"url": "https://files.pythonhosted.org/packages/c9/4b/7109dca340fc6a0e206ecf3486d73b10babd2ebc4866623521cc914c1842/bulletin_board_client-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8be6ac96261e5c6abe94665d4e881f3b23a6d20272a6bf9b49f991cb0d378c6",
"md5": "e7375a81b6c280c8dce2ed1c1a20dbac",
"sha256": "dd919d8901abc2b87d81f6c8ba7aa71051bdc7883ed0b49d3bc971ab620e476b"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e7375a81b6c280c8dce2ed1c1a20dbac",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 460408,
"upload_time": "2024-12-10T14:13:58",
"upload_time_iso_8601": "2024-12-10T14:13:58.612878Z",
"url": "https://files.pythonhosted.org/packages/d8/be/6ac96261e5c6abe94665d4e881f3b23a6d20272a6bf9b49f991cb0d378c6/bulletin_board_client-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ee8b37992449cf78d209844b7fc0359d3e0d4547e0baee863a583c8c825aa4e",
"md5": "2e260635a1cb174e09cddbb2695415a2",
"sha256": "5e9da32a7ae8a5eab62a2ad15d89afce82a519340e5ca03d5e857a8764dfc445"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2e260635a1cb174e09cddbb2695415a2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 546573,
"upload_time": "2024-12-10T14:14:43",
"upload_time_iso_8601": "2024-12-10T14:14:43.593221Z",
"url": "https://files.pythonhosted.org/packages/0e/e8/b37992449cf78d209844b7fc0359d3e0d4547e0baee863a583c8c825aa4e/bulletin_board_client-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d172377858a7149aea7206597a1cac42dee24b63bc102387884cf739d16d628a",
"md5": "c6f8720659d7f5e4f213440506e165c2",
"sha256": "ef608ec2e14642fc3aa071121c76c2ee37c8368068ed265c42239fcbc30e92b8"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "c6f8720659d7f5e4f213440506e165c2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 644423,
"upload_time": "2024-12-10T14:14:57",
"upload_time_iso_8601": "2024-12-10T14:14:57.862380Z",
"url": "https://files.pythonhosted.org/packages/d1/72/377858a7149aea7206597a1cac42dee24b63bc102387884cf739d16d628a/bulletin_board_client-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "613222ce4b958f5430f79dfa623aaefc6e7061e46edea9da54fcf92923cbfcb5",
"md5": "bf78bfcf72e760f5159063aa2c3f4081",
"sha256": "43e7ecd8bd44dd63c984ec96b37424cbb73d9bc3118dc0f045706ac07550f352"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bf78bfcf72e760f5159063aa2c3f4081",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 576317,
"upload_time": "2024-12-10T14:15:14",
"upload_time_iso_8601": "2024-12-10T14:15:14.583201Z",
"url": "https://files.pythonhosted.org/packages/61/32/22ce4b958f5430f79dfa623aaefc6e7061e46edea9da54fcf92923cbfcb5/bulletin_board_client-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23ca117f2c8d0a3387cf4f87a0b504d246d90c35fba834dffb5c82dd5eb62038",
"md5": "e129d8071eaf78d43d971cf3fdf205d0",
"sha256": "6af173882f9af59bccca4fe4f3e2a2388f72577567b3b17d58cb73c90dbb0cb7"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e129d8071eaf78d43d971cf3fdf205d0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 551195,
"upload_time": "2024-12-10T14:15:56",
"upload_time_iso_8601": "2024-12-10T14:15:56.032789Z",
"url": "https://files.pythonhosted.org/packages/23/ca/117f2c8d0a3387cf4f87a0b504d246d90c35fba834dffb5c82dd5eb62038/bulletin_board_client-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f929141e3f2f9b2202a2fd976e3b9d60922054222319753ea5e072d8a71d15b6",
"md5": "c9ed7033721cfd60050b6c0bfc68751b",
"sha256": "7808c788b83e8f73932322a8022c991e38afbd202a83c7d6a4db1aa795e99296"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c9ed7033721cfd60050b6c0bfc68751b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 370833,
"upload_time": "2024-12-10T14:13:14",
"upload_time_iso_8601": "2024-12-10T14:13:14.202961Z",
"url": "https://files.pythonhosted.org/packages/f9/29/141e3f2f9b2202a2fd976e3b9d60922054222319753ea5e072d8a71d15b6/bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f2a9b0ed49307cc2758a6bcecd71f0f5293df8cfffad1025be28ac9e0bc2a339",
"md5": "cff13d54dc2502cddadf1db1319c240c",
"sha256": "f22d1e1e474d400f6dc0325956551e0fa777de67c194d5e4baa2cc178fd5e2e8"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "cff13d54dc2502cddadf1db1319c240c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 383364,
"upload_time": "2024-12-10T14:13:32",
"upload_time_iso_8601": "2024-12-10T14:13:32.733798Z",
"url": "https://files.pythonhosted.org/packages/f2/a9/b0ed49307cc2758a6bcecd71f0f5293df8cfffad1025be28ac9e0bc2a339/bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "deeb5b093b1f79a2cc63b34d53266c6867b4bf9791fe50101881e14e3af93304",
"md5": "4b0b4959e2107a3644e1ef5249d01a91",
"sha256": "0d006b1c54767ad5936c3f4c59454d9b250d9a88a38805956ce01dc28b16f580"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4b0b4959e2107a3644e1ef5249d01a91",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 420336,
"upload_time": "2024-12-10T14:13:46",
"upload_time_iso_8601": "2024-12-10T14:13:46.440906Z",
"url": "https://files.pythonhosted.org/packages/de/eb/5b093b1f79a2cc63b34d53266c6867b4bf9791fe50101881e14e3af93304/bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d57133b07e5dcd404cf9ebf4e75a415962df1bc12018d401d8f87ad100d71202",
"md5": "83fef8cca178067c9b895f3861265f0f",
"sha256": "cc6a3d9333960d742a6c4c1d16c0217e48f842593abc8adb6a7175cfcafdcbc3"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "83fef8cca178067c9b895f3861265f0f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 460487,
"upload_time": "2024-12-10T14:14:00",
"upload_time_iso_8601": "2024-12-10T14:14:00.531606Z",
"url": "https://files.pythonhosted.org/packages/d5/71/33b07e5dcd404cf9ebf4e75a415962df1bc12018d401d8f87ad100d71202/bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b08af72910c61b603ca1f3c131b30cfb31b268ec50bb453ebb9fe8d1cf98cc01",
"md5": "7aeb29cc5883bfd9e48a964279d188d9",
"sha256": "c85ce68d712a9406595337def4b810ad2cb490240c6f41e92d09cc2c14f42235"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7aeb29cc5883bfd9e48a964279d188d9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 382684,
"upload_time": "2024-12-10T14:14:21",
"upload_time_iso_8601": "2024-12-10T14:14:21.532945Z",
"url": "https://files.pythonhosted.org/packages/b0/8a/f72910c61b603ca1f3c131b30cfb31b268ec50bb453ebb9fe8d1cf98cc01/bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9764ec850e81de277d12809c77250bb3a89afe939ccbdb73cc41e06c5a4d3a2",
"md5": "9db19fea80cf30126129023b0993219d",
"sha256": "14ed9644ed08e30482271436ec711713d612ece29ecc7ba2ac18606fd11486ee"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "9db19fea80cf30126129023b0993219d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 405623,
"upload_time": "2024-12-10T14:14:10",
"upload_time_iso_8601": "2024-12-10T14:14:10.198047Z",
"url": "https://files.pythonhosted.org/packages/a9/76/4ec850e81de277d12809c77250bb3a89afe939ccbdb73cc41e06c5a4d3a2/bulletin_board_client-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8b38164e77961652d64e633381a44d9ceaa085b477f885f4837860b54800ad5",
"md5": "43c4d8172c929a779a4df48db869bb31",
"sha256": "bb458fc9c833c1d0b2df160016eae1596257655e5e86ef7b42294ca53b058b8f"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "43c4d8172c929a779a4df48db869bb31",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 547917,
"upload_time": "2024-12-10T14:14:44",
"upload_time_iso_8601": "2024-12-10T14:14:44.892388Z",
"url": "https://files.pythonhosted.org/packages/c8/b3/8164e77961652d64e633381a44d9ceaa085b477f885f4837860b54800ad5/bulletin_board_client-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d277b42da40ff1e4ca408198042f7883e478ae4594c3fc042465a7da03452ab9",
"md5": "8db47aa6f00997a48c4e88b658934eec",
"sha256": "23a67bb7f7236040f683f15dfec2b252ddbe1e72a5382633d8cffd25bc30f4bc"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "8db47aa6f00997a48c4e88b658934eec",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 645936,
"upload_time": "2024-12-10T14:14:59",
"upload_time_iso_8601": "2024-12-10T14:14:59.917579Z",
"url": "https://files.pythonhosted.org/packages/d2/77/b42da40ff1e4ca408198042f7883e478ae4594c3fc042465a7da03452ab9/bulletin_board_client-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4ed74de16e030ae86f446793551f458b69e81aad531d030d67ad0e96f20d868",
"md5": "c89d047f6d8020fe06d52dc13b1c1fc1",
"sha256": "259908282f43ae6a092c499582e03857b0f3279caeeeff580370ca2821e8d65e"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c89d047f6d8020fe06d52dc13b1c1fc1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 578069,
"upload_time": "2024-12-10T14:15:15",
"upload_time_iso_8601": "2024-12-10T14:15:15.844319Z",
"url": "https://files.pythonhosted.org/packages/c4/ed/74de16e030ae86f446793551f458b69e81aad531d030d67ad0e96f20d868/bulletin_board_client-0.3.2-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6cbb80ab4c7b70f812c241d95f2d19ee83d3e632166831a3ccc6bb9c0b239c9",
"md5": "f6c2f5c3b2c532d221e1591ffebeddeb",
"sha256": "f741c8455ae414fbb4e77f629f4f8e20bc86f463a724ae3dc86d2888c91e4518"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f6c2f5c3b2c532d221e1591ffebeddeb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 553051,
"upload_time": "2024-12-10T14:15:57",
"upload_time_iso_8601": "2024-12-10T14:15:57.735059Z",
"url": "https://files.pythonhosted.org/packages/f6/cb/b80ab4c7b70f812c241d95f2d19ee83d3e632166831a3ccc6bb9c0b239c9/bulletin_board_client-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bb73a109963cc6720f1ec274d243eb3124ee4746e3fce0a3dc504ac93625205b",
"md5": "739ebf70b8a641cb7b4cf369151f8f4d",
"sha256": "7cda965d07eefa0f3b8b9bc4ecdfbb5e5458278edb3964a7a668298f0ccb53dd"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "739ebf70b8a641cb7b4cf369151f8f4d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 212717,
"upload_time": "2024-12-10T14:16:20",
"upload_time_iso_8601": "2024-12-10T14:16:20.646495Z",
"url": "https://files.pythonhosted.org/packages/bb/73/a109963cc6720f1ec274d243eb3124ee4746e3fce0a3dc504ac93625205b/bulletin_board_client-0.3.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a876f47861714a9ee7c229f8c296ac1768a9ab563816aca475adc2cd8d831e01",
"md5": "af7d5af6f52b4c49238878639812bd4c",
"sha256": "066eec225a995242a9ff44d8a0d6134f9062f3a648304c20474ec207cfc3d29a"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "af7d5af6f52b4c49238878639812bd4c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 222069,
"upload_time": "2024-12-10T14:16:12",
"upload_time_iso_8601": "2024-12-10T14:16:12.866473Z",
"url": "https://files.pythonhosted.org/packages/a8/76/f47861714a9ee7c229f8c296ac1768a9ab563816aca475adc2cd8d831e01/bulletin_board_client-0.3.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc170ba6c8de4a1e6be1f1e5482e447bda2df06d7374e96488b2ef1314f2be86",
"md5": "5dcee2ec0a94438dd24ae4336e479607",
"sha256": "bd6f0bdbf24894c7e59150f252a9fe5fe6ba755f6275045bb28274004db9dd3f"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5dcee2ec0a94438dd24ae4336e479607",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 371229,
"upload_time": "2024-12-10T14:13:16",
"upload_time_iso_8601": "2024-12-10T14:13:16.524857Z",
"url": "https://files.pythonhosted.org/packages/dc/17/0ba6c8de4a1e6be1f1e5482e447bda2df06d7374e96488b2ef1314f2be86/bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05e98f251fc783897a096e7919d266f3bfda875a1312cc9079531bcd2b266f66",
"md5": "32a54c756476cc077f9abd2fcfaa5ba9",
"sha256": "88f69c264a1e89c4da584555da56e0f01211c54c97e262a9346ae072fc05daa1"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "32a54c756476cc077f9abd2fcfaa5ba9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 384252,
"upload_time": "2024-12-10T14:13:33",
"upload_time_iso_8601": "2024-12-10T14:13:33.862278Z",
"url": "https://files.pythonhosted.org/packages/05/e9/8f251fc783897a096e7919d266f3bfda875a1312cc9079531bcd2b266f66/bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a42748fd0e4f8e8a28bd7d8607545db5ec6e2ffab434474f89ecebe56220899e",
"md5": "60d55392eafd55147b06a61f8e49f590",
"sha256": "c51ee847fb57991ca88ff5372620a616026aa1958adcb01d90f288f74ff64699"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "60d55392eafd55147b06a61f8e49f590",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 420655,
"upload_time": "2024-12-10T14:13:47",
"upload_time_iso_8601": "2024-12-10T14:13:47.687458Z",
"url": "https://files.pythonhosted.org/packages/a4/27/48fd0e4f8e8a28bd7d8607545db5ec6e2ffab434474f89ecebe56220899e/bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "768e6da3cac9ab3be1e512264b5ae0b6db056f7f45b94c148744e5b9dc188147",
"md5": "d22a080e7cc847376607e021327a154f",
"sha256": "db951bcb17abebb2448a565ba14fe6b15473173b0309f65670ea443442cf4264"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d22a080e7cc847376607e021327a154f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 460948,
"upload_time": "2024-12-10T14:14:01",
"upload_time_iso_8601": "2024-12-10T14:14:01.847391Z",
"url": "https://files.pythonhosted.org/packages/76/8e/6da3cac9ab3be1e512264b5ae0b6db056f7f45b94c148744e5b9dc188147/bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "934930ab8a59559e14f34da2ac9b34097764e68a15ec901b5aebbb63cb96ab18",
"md5": "85d9171fd4d7a996b70dbacf6ac7130c",
"sha256": "20028c127590f9367c86d2e96620a613d347016be9cb9beaefaaa321a78084c8"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "85d9171fd4d7a996b70dbacf6ac7130c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 383146,
"upload_time": "2024-12-10T14:14:22",
"upload_time_iso_8601": "2024-12-10T14:14:22.828231Z",
"url": "https://files.pythonhosted.org/packages/93/49/30ab8a59559e14f34da2ac9b34097764e68a15ec901b5aebbb63cb96ab18/bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02e20d52908aa1225236bd4ba2d8d14a92830be0d817d525f714505c2c50bfb4",
"md5": "e68f061e0cb4b560d26565761c3700a9",
"sha256": "308cf1b461a60be1c0e19a23fb8ccd101b607298a16f178f0d35e6dcf13d1b10"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e68f061e0cb4b560d26565761c3700a9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 406024,
"upload_time": "2024-12-10T14:14:11",
"upload_time_iso_8601": "2024-12-10T14:14:11.341040Z",
"url": "https://files.pythonhosted.org/packages/02/e2/0d52908aa1225236bd4ba2d8d14a92830be0d817d525f714505c2c50bfb4/bulletin_board_client-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "722ad9cafe3bf1f5027c022a49817315db248ef8c4142a3615202388d4ee13eb",
"md5": "1cdaef5922401a452db8586fb0c754d4",
"sha256": "a1322702f2cc70ae9b6da3bcadf37150edc4a6d637383032f33cb9fd5538f1eb"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1cdaef5922401a452db8586fb0c754d4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 548434,
"upload_time": "2024-12-10T14:14:46",
"upload_time_iso_8601": "2024-12-10T14:14:46.218002Z",
"url": "https://files.pythonhosted.org/packages/72/2a/d9cafe3bf1f5027c022a49817315db248ef8c4142a3615202388d4ee13eb/bulletin_board_client-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f1e28bab68cbbdf33d7714fd0b6df578f984a9fe72a432c3613db7df31d5202a",
"md5": "60ce0130fbd414c8b9d908255f2d5246",
"sha256": "1e8951ad597b23e8e6500b5f05f582d36a3cc9a57336c45fdb0372f814e09dbc"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "60ce0130fbd414c8b9d908255f2d5246",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 646022,
"upload_time": "2024-12-10T14:15:01",
"upload_time_iso_8601": "2024-12-10T14:15:01.235287Z",
"url": "https://files.pythonhosted.org/packages/f1/e2/8bab68cbbdf33d7714fd0b6df578f984a9fe72a432c3613db7df31d5202a/bulletin_board_client-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74db27c4513963e9f1a894510ee4a8736eac70e191237be9e56ffecaaca1e398",
"md5": "f66ceb7f5a00da57350edf214302868b",
"sha256": "da02b59348764f399f310b9f6a855d069539a08b3d430ab9b0f4f1a530796b51"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f66ceb7f5a00da57350edf214302868b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 578433,
"upload_time": "2024-12-10T14:15:17",
"upload_time_iso_8601": "2024-12-10T14:15:17.227728Z",
"url": "https://files.pythonhosted.org/packages/74/db/27c4513963e9f1a894510ee4a8736eac70e191237be9e56ffecaaca1e398/bulletin_board_client-0.3.2-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8210115d32e9743e87e890171f7af995beccfacf7969dd97bb3fbecd5292edca",
"md5": "8e8d4c6cc08d0f93e076116fab98bc44",
"sha256": "8f4ab88473c64fba99d1401ca4fe0a983e44ec75623e827b2aba53cb916a7554"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8e8d4c6cc08d0f93e076116fab98bc44",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 553299,
"upload_time": "2024-12-10T14:15:59",
"upload_time_iso_8601": "2024-12-10T14:15:59.431142Z",
"url": "https://files.pythonhosted.org/packages/82/10/115d32e9743e87e890171f7af995beccfacf7969dd97bb3fbecd5292edca/bulletin_board_client-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38a981d0cee0f9689b1286fd7727cbef3b03cc92baeb1a7583753a9f2c6d5e51",
"md5": "6ea215d7ddab47501fb8047373c27e43",
"sha256": "352d86feee547b6e5f7f0a2eff89d8d42c63ec5d1fbff1814b0d6080bf371d53"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "6ea215d7ddab47501fb8047373c27e43",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 212856,
"upload_time": "2024-12-10T14:16:22",
"upload_time_iso_8601": "2024-12-10T14:16:22.127013Z",
"url": "https://files.pythonhosted.org/packages/38/a9/81d0cee0f9689b1286fd7727cbef3b03cc92baeb1a7583753a9f2c6d5e51/bulletin_board_client-0.3.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f5a9a952dc819d8a992bbce5cca06391507073859b55c0f31becb23edf84113",
"md5": "14d42a3d70282ccec84b0a6393f1a085",
"sha256": "086acec9cf80355cb8b3e57a3c15ef9d6540ce9545e67aae3e492bc89f7648bf"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "14d42a3d70282ccec84b0a6393f1a085",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 222015,
"upload_time": "2024-12-10T14:16:14",
"upload_time_iso_8601": "2024-12-10T14:16:14.319150Z",
"url": "https://files.pythonhosted.org/packages/9f/5a/9a952dc819d8a992bbce5cca06391507073859b55c0f31becb23edf84113/bulletin_board_client-0.3.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18373d9f385f643185237de77123d3bbb9ddbec3101a9572f6347bb3a693362a",
"md5": "9cfa96e43984eaddd409a95cf16bff08",
"sha256": "64f157390ae6adb6abf56ed22765ca27a1606cd4247ae5e30d66180d95a0dff8"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9cfa96e43984eaddd409a95cf16bff08",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 372336,
"upload_time": "2024-12-10T14:13:17",
"upload_time_iso_8601": "2024-12-10T14:13:17.874741Z",
"url": "https://files.pythonhosted.org/packages/18/37/3d9f385f643185237de77123d3bbb9ddbec3101a9572f6347bb3a693362a/bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "744ed7c34d19b102b376384cb7fd66db2a4fdaa1dcaa200588edb1b87a387058",
"md5": "ffcc1ae49348bfdd90ddbadd8087df32",
"sha256": "bdf1aecf81ca0cc5530d8f69768243806fdad11f97f709178a2b597948657726"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ffcc1ae49348bfdd90ddbadd8087df32",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 385761,
"upload_time": "2024-12-10T14:13:37",
"upload_time_iso_8601": "2024-12-10T14:13:37.265287Z",
"url": "https://files.pythonhosted.org/packages/74/4e/d7c34d19b102b376384cb7fd66db2a4fdaa1dcaa200588edb1b87a387058/bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "926dc9d10654cff4ec35fac9b869ac6b56d7da5332fc26191edcbdb6c69b6939",
"md5": "73b59539d5dd9a2de428fdb89f7d6ba4",
"sha256": "dacc8fd8775c2c0e42b3f271e6884a50bbb769b5db0f0eb534c255f22211c42d"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "73b59539d5dd9a2de428fdb89f7d6ba4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 421827,
"upload_time": "2024-12-10T14:13:49",
"upload_time_iso_8601": "2024-12-10T14:13:49.006920Z",
"url": "https://files.pythonhosted.org/packages/92/6d/c9d10654cff4ec35fac9b869ac6b56d7da5332fc26191edcbdb6c69b6939/bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e7dd1b387de658f2d0b72aab719fdab5f2b52282979ef2fdf939fc0f1f1ee09",
"md5": "b5852b9b4395542c47cd55d95789632b",
"sha256": "1c8efce01b9d1e4b9b331ec712665eba16d51a5479d7a9774184b0a70d93f52d"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b5852b9b4395542c47cd55d95789632b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 463038,
"upload_time": "2024-12-10T14:14:03",
"upload_time_iso_8601": "2024-12-10T14:14:03.076081Z",
"url": "https://files.pythonhosted.org/packages/7e/7d/d1b387de658f2d0b72aab719fdab5f2b52282979ef2fdf939fc0f1f1ee09/bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27329e40bb050a75e9fb6eaf2b83045a0ef51fd4d298c5b8657722148386373c",
"md5": "501fe0dd27509984229c26b1fe64ae97",
"sha256": "23794326ba31648d190b19c0679656b62ebba6718757f813bf1cee2621a49725"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "501fe0dd27509984229c26b1fe64ae97",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 384408,
"upload_time": "2024-12-10T14:14:24",
"upload_time_iso_8601": "2024-12-10T14:14:24.046205Z",
"url": "https://files.pythonhosted.org/packages/27/32/9e40bb050a75e9fb6eaf2b83045a0ef51fd4d298c5b8657722148386373c/bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86dce88a9acd4b9c0cbe709ce7fe3bfd30a1f0cd324f44fa75ff0661cbd79226",
"md5": "acd1835b04b13db3dbb7b43dd8204e62",
"sha256": "211901c4fe5be5ea8d274ed526db0edf9a5297fd011523d28780b73841ee9611"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "acd1835b04b13db3dbb7b43dd8204e62",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 408654,
"upload_time": "2024-12-10T14:14:12",
"upload_time_iso_8601": "2024-12-10T14:14:12.717116Z",
"url": "https://files.pythonhosted.org/packages/86/dc/e88a9acd4b9c0cbe709ce7fe3bfd30a1f0cd324f44fa75ff0661cbd79226/bulletin_board_client-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80f00a58b811fb6af83c9433fc2723b2e0c17204c92f5cfa642b12b212cf3551",
"md5": "077a339d55553a547d7eccbe3e48d7ca",
"sha256": "c9f4a3669b6dd7b5ed0a89c53a894236872e7c7c82061748fdf442fcd6502423"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "077a339d55553a547d7eccbe3e48d7ca",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 549752,
"upload_time": "2024-12-10T14:14:47",
"upload_time_iso_8601": "2024-12-10T14:14:47.656051Z",
"url": "https://files.pythonhosted.org/packages/80/f0/0a58b811fb6af83c9433fc2723b2e0c17204c92f5cfa642b12b212cf3551/bulletin_board_client-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "991a78cd1fd1dba4a65ae10990865a9e91cf4435ca74b2d4d647a22140369ac2",
"md5": "afc8af45792b09f8f7c7b3a9fbc580f1",
"sha256": "9ca289b0207a689579103541c54a5e0930f45000a02475f12b7144850eca06d5"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "afc8af45792b09f8f7c7b3a9fbc580f1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 647438,
"upload_time": "2024-12-10T14:15:03",
"upload_time_iso_8601": "2024-12-10T14:15:03.181077Z",
"url": "https://files.pythonhosted.org/packages/99/1a/78cd1fd1dba4a65ae10990865a9e91cf4435ca74b2d4d647a22140369ac2/bulletin_board_client-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68b6b6705c6a40b42d19991ce485bdf30ff8c17293cf828ca5e4117c70f87fc2",
"md5": "a9d996a5711dd864d12e312770f82357",
"sha256": "cafd7806cb1b0ddf4e7d00e2f7617edf8e0c46e9439d0d5763153ebc3e56e38d"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a9d996a5711dd864d12e312770f82357",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 579804,
"upload_time": "2024-12-10T14:15:19",
"upload_time_iso_8601": "2024-12-10T14:15:19.708114Z",
"url": "https://files.pythonhosted.org/packages/68/b6/b6705c6a40b42d19991ce485bdf30ff8c17293cf828ca5e4117c70f87fc2/bulletin_board_client-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "224f086cc82750a62ef7fab2d0e6b507bd7da685d7ff88ac960c94d0619cfb4a",
"md5": "b8c7c4b2d080231f99643e8a2b8eba2d",
"sha256": "9d804b5729bb9d489908693cd0b9e80d720cfae5f28d985bf41d3257641b7931"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b8c7c4b2d080231f99643e8a2b8eba2d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 554578,
"upload_time": "2024-12-10T14:16:02",
"upload_time_iso_8601": "2024-12-10T14:16:02.127534Z",
"url": "https://files.pythonhosted.org/packages/22/4f/086cc82750a62ef7fab2d0e6b507bd7da685d7ff88ac960c94d0619cfb4a/bulletin_board_client-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a8df69be0f1202eb766ac923a015e6402e5faca4bfc3e47d5d9eb2180ae5d00",
"md5": "679f5d44d0b38bf824b5fc20d05244c4",
"sha256": "51b5c31fc7d29479706a9c7b4d3a48c5a6b33762de41ba9bc75786760b876e0a"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "679f5d44d0b38bf824b5fc20d05244c4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 372636,
"upload_time": "2024-12-10T14:13:19",
"upload_time_iso_8601": "2024-12-10T14:13:19.378089Z",
"url": "https://files.pythonhosted.org/packages/2a/8d/f69be0f1202eb766ac923a015e6402e5faca4bfc3e47d5d9eb2180ae5d00/bulletin_board_client-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5f2fd5964b7ae860524ed875ba5cfc8fe56efdaa18b18aa08f537f3d7023486",
"md5": "cbbe770368eb0c39b2f80dbd2391686a",
"sha256": "a3db5fb641623b4f54f94429e279bdde64d997a492bbc9b8890087fd95eb4d91"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "cbbe770368eb0c39b2f80dbd2391686a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 385573,
"upload_time": "2024-12-10T14:13:38",
"upload_time_iso_8601": "2024-12-10T14:13:38.603023Z",
"url": "https://files.pythonhosted.org/packages/c5/f2/fd5964b7ae860524ed875ba5cfc8fe56efdaa18b18aa08f537f3d7023486/bulletin_board_client-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84a05dfb4db766a447f939a5ff3985519c95a2ad8c7ca893fa9d11ea2b8b29ce",
"md5": "167ee14c4aea922d9bfa4dd94d445f07",
"sha256": "826c0f6b32026941f55d17f9f34d5cdebb109144bb04100f07fe8f467e725464"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "167ee14c4aea922d9bfa4dd94d445f07",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 421841,
"upload_time": "2024-12-10T14:13:50",
"upload_time_iso_8601": "2024-12-10T14:13:50.173381Z",
"url": "https://files.pythonhosted.org/packages/84/a0/5dfb4db766a447f939a5ff3985519c95a2ad8c7ca893fa9d11ea2b8b29ce/bulletin_board_client-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23ab1fd2cfda14e3e450ba2e8ebbc6a634c338e27b9b17b92423967b9ee68c2c",
"md5": "f2a06a22ab536e0d0065f924eb4b8261",
"sha256": "1982adeae995c8d9143c836d0831ca11557a42551a668ad67adc1ea935d49501"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f2a06a22ab536e0d0065f924eb4b8261",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 463024,
"upload_time": "2024-12-10T14:14:04",
"upload_time_iso_8601": "2024-12-10T14:14:04.226121Z",
"url": "https://files.pythonhosted.org/packages/23/ab/1fd2cfda14e3e450ba2e8ebbc6a634c338e27b9b17b92423967b9ee68c2c/bulletin_board_client-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f397b6244ad8ddcf8a39faa587e93b6910cb4c28e51e8171982867e5393c2a7f",
"md5": "e3519957dce019e9f28e5694981cb371",
"sha256": "853be5f33da89d2166aec3a13f7447785948cc7e5edefa048f6334f8d2e105de"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e3519957dce019e9f28e5694981cb371",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 549993,
"upload_time": "2024-12-10T14:14:48",
"upload_time_iso_8601": "2024-12-10T14:14:48.875123Z",
"url": "https://files.pythonhosted.org/packages/f3/97/b6244ad8ddcf8a39faa587e93b6910cb4c28e51e8171982867e5393c2a7f/bulletin_board_client-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89a8eb29da96ca71e763890b3ac67e0c00215ca52fb2244a5e053edea4d64251",
"md5": "1fa6817a6ff0e3fd6589f46a19761d99",
"sha256": "335fb2ead0d2fb34c7e22f36fa1cae9a6e943c37188c238d89a8eae238e218aa"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1fa6817a6ff0e3fd6589f46a19761d99",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 647585,
"upload_time": "2024-12-10T14:15:05",
"upload_time_iso_8601": "2024-12-10T14:15:05.689541Z",
"url": "https://files.pythonhosted.org/packages/89/a8/eb29da96ca71e763890b3ac67e0c00215ca52fb2244a5e053edea4d64251/bulletin_board_client-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84cbf3a1407d59c07d153ae00cda37aff37d8ea5bb892e8cc5e2fbc3abe7b43f",
"md5": "e618b5bde7d3f3c7053e7b6fade244d5",
"sha256": "ceaac17ac8929199db7f2eb23096d3e3556b7000f58dc0445f738a142e50c440"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e618b5bde7d3f3c7053e7b6fade244d5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 580002,
"upload_time": "2024-12-10T14:15:21",
"upload_time_iso_8601": "2024-12-10T14:15:21.141523Z",
"url": "https://files.pythonhosted.org/packages/84/cb/f3a1407d59c07d153ae00cda37aff37d8ea5bb892e8cc5e2fbc3abe7b43f/bulletin_board_client-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d903f5e2622ec5f4ede74e49d94d52cedd031fb7d2a5fcc4046075ca8eb719b6",
"md5": "17379fa80fc038f72ef4b83b6f8ba7f5",
"sha256": "46e9bdbeb56d1f4824dc97e41bd19aae3d61bca3d9ea69f979040474cdfd58ab"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "17379fa80fc038f72ef4b83b6f8ba7f5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 554577,
"upload_time": "2024-12-10T14:16:03",
"upload_time_iso_8601": "2024-12-10T14:16:03.531282Z",
"url": "https://files.pythonhosted.org/packages/d9/03/f5e2622ec5f4ede74e49d94d52cedd031fb7d2a5fcc4046075ca8eb719b6/bulletin_board_client-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "70d7fb4a924c62a6c99d0324ed903540d37f1cab3b46ee5d37c4cf7a096a22cb",
"md5": "6672be8eb93286f8beb24ebca9273b2b",
"sha256": "097498541a177b0141ca425d2b98faa489c2c7de22a690da82706c22a7bb8996"
},
"downloads": -1,
"filename": "bulletin_board_client-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "6672be8eb93286f8beb24ebca9273b2b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 8053,
"upload_time": "2024-12-10T14:16:05",
"upload_time_iso_8601": "2024-12-10T14:16:05.142853Z",
"url": "https://files.pythonhosted.org/packages/70/d7/fb4a924c62a6c99d0324ed903540d37f1cab3b46ee5d37c4cf7a096a22cb/bulletin_board_client-0.3.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-10 14:16:05",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "YShoji-HEP",
"github_project": "BulletinBoard",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "bulletin-board-client"
}