# Edge Python API
API to connect to dRISK Edge.
### Useful Edge Links
Some useful links for new edge users:
- Log in to edge: [demo.drisk.ai](https://demo.drisk.ai/)
- Documentation: [demo.drisk.ai/docs](https://demo.drisk.ai/docs/)
## Installation
```
pip install drisk_api
```
## Basic Usage
The API supports the basic building blocs for Create/Read/Update/Delete operations on the graph. For example:
```python
from drisk_api import GraphClient
token = "<edge_auth_token>"
# create or conntect to a graph
new_graph = GraphClient.create_graph("a graph", token)
graph = GraphClient("graph_id", token)
# make a new node
node_id = graph.create_node(label="a node")
# get a node
node = graph.get_node(node_id)
# get the successors of the node
successors = graph.get_successors(node_id)
# update the node
graph.update_node(node_id, label="new label", size=3)
# add edges in batch
other_id = graph.create_node(label="another node")
with graph.batch():
graph.create_edge(node_id, other, weight=5.)
```
## More Examples
We can use these building blocks to create whatever graphs we are most interested in. Below are some examples:
### Wikepedia Crawler
In this example we will scrape the main url links for a given wikipedia page and create a graph out of it.
Most of the code will be leveraging the [wikipedia api](https://pypi.org/project/wikipedia/) and is not particularly important.
What is more interesting is how we can use the `api` to convert the corresponding information into a graph to then explore it in edge.
First load the relevant module
```python
import wikipedia
from wikipedia import PageError, DisambiguationError, search, WikipediaPage
from tqdm import tqdm
from drisk_api import GraphClient
```
Let's define some helper functions that will help us create a graph of wikipedia urls for a given page.
The main function to pay attention to is `wiki_scraper` which will find the 'most important' links in a
given page and add them to the graph, linking back to the original page.
It will do this recursively for each node until a terminal condition is reached (e.g. a max recursion depth).
```python
def find_page(title):
"""Find the wikipedia page."""
results, suggestion = search(title, results=1, suggestion=True)
try:
title = results[0] or suggestion
page = WikipediaPage(title, redirect=True, preload=False)
except IndexError:
raise PageError(title)
return page
def top_links(links, text, top_n):
"""Find most important links in a wikipedia page."""
link_occurrences = {}
for link in links:
link_occurrences[link] = text.lower().count(link.lower())
sorted_links = sorted(link_occurrences.items(), key=lambda x: x[1], reverse=True)
top_n_relevant_links = [link for link, count in sorted_links[:top_n]]
return top_n_relevant_links
def wiki_scraper(
graph,
page_node,
page_name,
string_cache,
visited_pages,
max_depth=3,
current_depth=0,
max_links=10,
first_depth_max_links=100,
):
try:
page = find_page(title=page_name)
except (DisambiguationError, PageError) as e:
return
# add the url to the page_node (and make sure label is right)
graph.update_node(page_node, label=page_name, url=page.url)
if page_name in visited_pages or current_depth >= max_depth:
return
links = top_links(page.links, page.content, first_depth_max_links if current_depth == 0 else max_links)
if current_depth == 0:
tqdm_bar = tqdm(total=len(links), desc="wiki scraping")
for link in links:
if current_depth == 0:
tqdm_bar.update(1)
# see if we have already visted the page
new_page_node = None
if link in string_cache:
new_page_node = string_cache[link]
else:
# if we haven't add a new node and add to cache
new_page_node = graph.create_node(label=link)
string_cache[link] = new_page_node
# link this original page to the new one
graph.create_edge(page_node, new_page_node, 1.)
# repeat for new link
wiki_scraper(
graph,
new_page_node,
link,
string_cache,
visted_pages,
current_depth=current_depth + 1,
max_links=max_links,
first_depth_max_links=first_depth_max_links,
)
visited_pages.add(page_name)
```
Then we can connect to our graph (or make one):
```python
TOKEN = "<edge_auth_token>"
graph_id = "graph_id"
home_view = "view_id"
g = GraphClient(graph_id, TOKEN)
```
and run the scraper:
```python
page_name = "Napoleon"
string_cache = {}
visted_pages = set()
page_node = g.create_node(label=page_name)
g.add_nodes_to_view(home_view, [page_node], [(0., 0.)])
with g.batch():
wiki_scraper(
g,
page_node,
page_name,
string_cache,
visted_pages,
max_depth=3,
current_depth=0,
max_links=3,
first_depth_max_links=2,
)
```
We can then head to edge to interact with the graph:
<p align="center">
<img src="https://github.com/driskai/drisk_api/blob/main/docs/images/Napoleon-graph.png" width="80%">
</p>
![](![](![](![]())))
Raw data
{
"_id": null,
"home_page": "https://github.com/driskai/drisk_api",
"name": "drisk-api",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "drisk",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/bd/74/76dc78fa567de17ed8e54ba07bf6bc9da3d6c982d5b213f7e1f7145caa69/drisk_api-0.0.9.tar.gz",
"platform": null,
"description": "# Edge Python API\nAPI to connect to dRISK Edge.\n\n### Useful Edge Links\nSome useful links for new edge users:\n\n- Log in to edge: [demo.drisk.ai](https://demo.drisk.ai/)\n- Documentation: [demo.drisk.ai/docs](https://demo.drisk.ai/docs/)\n\n\n\n## Installation\n```\npip install drisk_api\n```\n\n## Basic Usage\n\nThe API supports the basic building blocs for Create/Read/Update/Delete operations on the graph. For example:\n\n\n```python\nfrom drisk_api import GraphClient\n\ntoken = \"<edge_auth_token>\"\n\n# create or conntect to a graph\nnew_graph = GraphClient.create_graph(\"a graph\", token)\ngraph = GraphClient(\"graph_id\", token)\n\n# make a new node\nnode_id = graph.create_node(label=\"a node\")\n\n# get a node\nnode = graph.get_node(node_id)\n\n# get the successors of the node\nsuccessors = graph.get_successors(node_id)\n\n# update the node\ngraph.update_node(node_id, label=\"new label\", size=3)\n\n# add edges in batch\nother_id = graph.create_node(label=\"another node\")\nwith graph.batch():\n graph.create_edge(node_id, other, weight=5.)\n\n```\n\n## More Examples\n\nWe can use these building blocks to create whatever graphs we are most interested in. Below are some examples:\n\n\n### Wikepedia Crawler\n\nIn this example we will scrape the main url links for a given wikipedia page and create a graph out of it.\n\n\nMost of the code will be leveraging the [wikipedia api](https://pypi.org/project/wikipedia/) and is not particularly important.\nWhat is more interesting is how we can use the `api` to convert the corresponding information into a graph to then explore it in edge.\n\n\nFirst load the relevant module\n\n```python\nimport wikipedia\nfrom wikipedia import PageError, DisambiguationError, search, WikipediaPage\nfrom tqdm import tqdm\nfrom drisk_api import GraphClient\n```\n\nLet's define some helper functions that will help us create a graph of wikipedia urls for a given page.\nThe main function to pay attention to is `wiki_scraper` which will find the 'most important' links in a\ngiven page and add them to the graph, linking back to the original page.\nIt will do this recursively for each node until a terminal condition is reached (e.g. a max recursion depth).\n\n\n```python\n\ndef find_page(title):\n \"\"\"Find the wikipedia page.\"\"\"\n results, suggestion = search(title, results=1, suggestion=True)\n try:\n title = results[0] or suggestion\n page = WikipediaPage(title, redirect=True, preload=False)\n except IndexError:\n raise PageError(title)\n return page\n\n\ndef top_links(links, text, top_n):\n \"\"\"Find most important links in a wikipedia page.\"\"\"\n link_occurrences = {}\n for link in links:\n link_occurrences[link] = text.lower().count(link.lower())\n\n sorted_links = sorted(link_occurrences.items(), key=lambda x: x[1], reverse=True)\n\n top_n_relevant_links = [link for link, count in sorted_links[:top_n]]\n\n return top_n_relevant_links\n\n\n\ndef wiki_scraper(\n graph,\n page_node,\n page_name,\n string_cache,\n visited_pages,\n max_depth=3,\n current_depth=0,\n max_links=10,\n first_depth_max_links=100,\n):\n try:\n page = find_page(title=page_name)\n except (DisambiguationError, PageError) as e:\n return\n\n # add the url to the page_node (and make sure label is right)\n graph.update_node(page_node, label=page_name, url=page.url)\n\n if page_name in visited_pages or current_depth >= max_depth:\n return\n\n links = top_links(page.links, page.content, first_depth_max_links if current_depth == 0 else max_links)\n\n if current_depth == 0:\n tqdm_bar = tqdm(total=len(links), desc=\"wiki scraping\")\n\n for link in links:\n if current_depth == 0:\n tqdm_bar.update(1)\n\n # see if we have already visted the page\n new_page_node = None\n if link in string_cache:\n new_page_node = string_cache[link]\n else:\n # if we haven't add a new node and add to cache\n new_page_node = graph.create_node(label=link)\n string_cache[link] = new_page_node\n\n # link this original page to the new one\n graph.create_edge(page_node, new_page_node, 1.)\n\n # repeat for new link\n wiki_scraper(\n graph,\n new_page_node,\n link,\n string_cache,\n visted_pages,\n current_depth=current_depth + 1,\n max_links=max_links,\n first_depth_max_links=first_depth_max_links,\n )\n\n visited_pages.add(page_name)\n\n```\n\nThen we can connect to our graph (or make one):\n\n```python\nTOKEN = \"<edge_auth_token>\"\ngraph_id = \"graph_id\"\nhome_view = \"view_id\"\ng = GraphClient(graph_id, TOKEN)\n```\n\nand run the scraper:\n\n```python\n\npage_name = \"Napoleon\"\nstring_cache = {}\nvisted_pages = set()\n\npage_node = g.create_node(label=page_name)\ng.add_nodes_to_view(home_view, [page_node], [(0., 0.)])\n\nwith g.batch():\n wiki_scraper(\n g,\n page_node,\n page_name,\n string_cache,\n visted_pages,\n max_depth=3,\n current_depth=0,\n max_links=3,\n first_depth_max_links=2,\n )\n\n```\n\nWe can then head to edge to interact with the graph:\n\n<p align=\"center\">\n<img src=\"https://github.com/driskai/drisk_api/blob/main/docs/images/Napoleon-graph.png\" width=\"80%\">\n</p>\n\n![](![](![](![]())))\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "drisk_api - API to connect to dRISK Edge.",
"version": "0.0.9",
"project_urls": {
"Edge": "https://demo.drisk.ai/",
"Edge Docs": "https://demo.drisk.ai/docs/",
"Homepage": "https://github.com/driskai/drisk_api/tree/main"
},
"split_keywords": [
"drisk"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "b587c0227f74fad785785474fa9a3b78507b06e06c33be25e24bb7455f79d30d",
"md5": "3a7f868eee0b22b3861c5a06c0b15c89",
"sha256": "6869b5dd50fdf3885d6a9205a78f267ed27aeb6e5785414a723c6b3ba85d9cc0"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "3a7f868eee0b22b3861c5a06c0b15c89",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 326082,
"upload_time": "2024-08-27T12:51:35",
"upload_time_iso_8601": "2024-08-27T12:51:35.566668Z",
"url": "https://files.pythonhosted.org/packages/b5/87/c0227f74fad785785474fa9a3b78507b06e06c33be25e24bb7455f79d30d/drisk_api-0.0.9-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a31dfe4297d72bb3896c289c409bfd300e8d86fd451e4afba78d3d1198d3ebf",
"md5": "097c844a1bb549bd1c8bc732cff6695c",
"sha256": "6b37e0b56fa17672492b9c7dd21235efc7d1a5978c6c4fbfacc5797e049d8d8f"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "097c844a1bb549bd1c8bc732cff6695c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 318821,
"upload_time": "2024-08-27T12:51:29",
"upload_time_iso_8601": "2024-08-27T12:51:29.198320Z",
"url": "https://files.pythonhosted.org/packages/7a/31/dfe4297d72bb3896c289c409bfd300e8d86fd451e4afba78d3d1198d3ebf/drisk_api-0.0.9-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c71e2c6a3bfc3e54a355424e79a2feb1e73b596377017e26cccb980a5e28fd4",
"md5": "4ec20f4b09176ea5e8eeeb4db6f899ca",
"sha256": "75c956f5a85ee784d7612206f12c71dda65332d4e512a1cbfbcb9ad95d9f39b3"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4ec20f4b09176ea5e8eeeb4db6f899ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 366365,
"upload_time": "2024-08-27T12:50:28",
"upload_time_iso_8601": "2024-08-27T12:50:28.768163Z",
"url": "https://files.pythonhosted.org/packages/5c/71/e2c6a3bfc3e54a355424e79a2feb1e73b596377017e26cccb980a5e28fd4/drisk_api-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "356b54b28bad288d5d81082fb994c3cc91280c56d1b1a7192679e76a4e4f4770",
"md5": "2bc3d2880f1ae6f03ec229093b798a2d",
"sha256": "91f751e77da260cd099e9e96a9c65be648790ea95025309b18336d231e18726b"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2bc3d2880f1ae6f03ec229093b798a2d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 371759,
"upload_time": "2024-08-27T12:50:40",
"upload_time_iso_8601": "2024-08-27T12:50:40.367881Z",
"url": "https://files.pythonhosted.org/packages/35/6b/54b28bad288d5d81082fb994c3cc91280c56d1b1a7192679e76a4e4f4770/drisk_api-0.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acbd9eb6d869cb5cf4d52a08012e560b7263842a28b9b0928a0048bfdb82e45e",
"md5": "7a649a0b9a6e1caf3de60eb3280dc8a4",
"sha256": "ed6b85125e0eee1fe59ea8f03e836fe1dd3ea2c20b38dd1ad38ff8fb73661870"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7a649a0b9a6e1caf3de60eb3280dc8a4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 402001,
"upload_time": "2024-08-27T12:50:51",
"upload_time_iso_8601": "2024-08-27T12:50:51.497463Z",
"url": "https://files.pythonhosted.org/packages/ac/bd/9eb6d869cb5cf4d52a08012e560b7263842a28b9b0928a0048bfdb82e45e/drisk_api-0.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffbafb12e8d48850430a051d71e6da47aead68178dcb03407fba924c4ce988fe",
"md5": "939566b5990b695aa54432c74ad4e2c3",
"sha256": "0e893abedf067a4725f9789d59b41764508440b8684474726d7167f5a7348827"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "939566b5990b695aa54432c74ad4e2c3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 447722,
"upload_time": "2024-08-27T12:51:01",
"upload_time_iso_8601": "2024-08-27T12:51:01.689519Z",
"url": "https://files.pythonhosted.org/packages/ff/ba/fb12e8d48850430a051d71e6da47aead68178dcb03407fba924c4ce988fe/drisk_api-0.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "198bb4d4dd1e5bb3a83bfb0e5bddf352b26ee2d3e5486fac7f72ab013989c601",
"md5": "ae16d5ea75b4a83984d1449048fafe1a",
"sha256": "33cb4dd3122e0507e2b231b64457f8f442322e77b23372ba69944244c66954ad"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ae16d5ea75b4a83984d1449048fafe1a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 359415,
"upload_time": "2024-08-27T12:51:21",
"upload_time_iso_8601": "2024-08-27T12:51:21.345911Z",
"url": "https://files.pythonhosted.org/packages/19/8b/b4d4dd1e5bb3a83bfb0e5bddf352b26ee2d3e5486fac7f72ab013989c601/drisk_api-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d86f7ff59755011d054cf654afe5a4a9a91fb4e9af16e3ea89464242b2c668a",
"md5": "e25b614b2203545f1c57b8141b4e8b18",
"sha256": "faf89852ad84ca88cd52c6f4e0e23a97493afd879746c5c4e2897122a7629f02"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e25b614b2203545f1c57b8141b4e8b18",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 377118,
"upload_time": "2024-08-27T12:51:11",
"upload_time_iso_8601": "2024-08-27T12:51:11.413567Z",
"url": "https://files.pythonhosted.org/packages/2d/86/f7ff59755011d054cf654afe5a4a9a91fb4e9af16e3ea89464242b2c668a/drisk_api-0.0.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "073e2ac28b008ed6ea4ac70612fd5f1d7d9be4d31ccd40d306dd982adb3eadaa",
"md5": "34300ba228aceb7be1c07770c3a678de",
"sha256": "94bd652968fe10a254f05df8e7af163e2aeb2aa810af95cbc25250322b893a43"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "34300ba228aceb7be1c07770c3a678de",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 211855,
"upload_time": "2024-08-27T12:51:50",
"upload_time_iso_8601": "2024-08-27T12:51:50.205496Z",
"url": "https://files.pythonhosted.org/packages/07/3e/2ac28b008ed6ea4ac70612fd5f1d7d9be4d31ccd40d306dd982adb3eadaa/drisk_api-0.0.9-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0dd94ab484d398b7f86920f3c92c93bd2c42c325a5b8feb5e7fe648596d63f1e",
"md5": "8d47870a802873a7934dc8dbc445b623",
"sha256": "499c23bb3606c31c6170d23df3490a77ce0601b6790af90704f3312a465b5a41"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "8d47870a802873a7934dc8dbc445b623",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 218705,
"upload_time": "2024-08-27T12:51:43",
"upload_time_iso_8601": "2024-08-27T12:51:43.518479Z",
"url": "https://files.pythonhosted.org/packages/0d/d9/4ab484d398b7f86920f3c92c93bd2c42c325a5b8feb5e7fe648596d63f1e/drisk_api-0.0.9-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c5379e58193de8a2a8427c93f271e79c583bc08fbe3d459fbcf04a6de42f39f",
"md5": "ac519f9cae53ed0a114c7c87a5a0fb7e",
"sha256": "1567100dd7ca445cc9736e0783abc667ec37bf6ce24a6e0620137a462e93bc08"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ac519f9cae53ed0a114c7c87a5a0fb7e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 325911,
"upload_time": "2024-08-27T12:51:37",
"upload_time_iso_8601": "2024-08-27T12:51:37.358007Z",
"url": "https://files.pythonhosted.org/packages/7c/53/79e58193de8a2a8427c93f271e79c583bc08fbe3d459fbcf04a6de42f39f/drisk_api-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "abd3d4decd569c4a2c6a56dd183fe4136ecf52c67cfc0c20e076d0fea520db1d",
"md5": "cb9b34dc560d13f3f687046e4da2a752",
"sha256": "045cc481b2112d6097f229888b34ff818ccc430807b30a983a18c7fdc2bed631"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cb9b34dc560d13f3f687046e4da2a752",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 318461,
"upload_time": "2024-08-27T12:51:30",
"upload_time_iso_8601": "2024-08-27T12:51:30.267201Z",
"url": "https://files.pythonhosted.org/packages/ab/d3/d4decd569c4a2c6a56dd183fe4136ecf52c67cfc0c20e076d0fea520db1d/drisk_api-0.0.9-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a065eb39495f95d896265bc99a434898ef572e6bfd158c97506366369056bda0",
"md5": "26fbec6bc6889d907644d7559d659881",
"sha256": "d98629f827ee4ef93cd5874209f0ac693a6348495d5e441dc0d95864fcd44f68"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "26fbec6bc6889d907644d7559d659881",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 365673,
"upload_time": "2024-08-27T12:50:30",
"upload_time_iso_8601": "2024-08-27T12:50:30.637853Z",
"url": "https://files.pythonhosted.org/packages/a0/65/eb39495f95d896265bc99a434898ef572e6bfd158c97506366369056bda0/drisk_api-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b987eb964584db6cf029d0f839873123fc4878a4cde524d7997a3bc709d05de3",
"md5": "d950b8e7ba1cbfcf45436701c7a15bf7",
"sha256": "b5e0a3d73db4295bbe9c2cc723b0fb5af6b59c8fd4afa1e3473bb0807f4119a5"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d950b8e7ba1cbfcf45436701c7a15bf7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 370915,
"upload_time": "2024-08-27T12:50:41",
"upload_time_iso_8601": "2024-08-27T12:50:41.424575Z",
"url": "https://files.pythonhosted.org/packages/b9/87/eb964584db6cf029d0f839873123fc4878a4cde524d7997a3bc709d05de3/drisk_api-0.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34bad225825e88c28e3a6bd035da6594fb95e2367dc3786b29e2e7c54d0c6239",
"md5": "65202aebd90037dba507ccad4aaf21ce",
"sha256": "ed4f9e4065fd984cd9d70398bb5309e99859b0f45e6520670f18f228488855ce"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "65202aebd90037dba507ccad4aaf21ce",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 402046,
"upload_time": "2024-08-27T12:50:52",
"upload_time_iso_8601": "2024-08-27T12:50:52.661916Z",
"url": "https://files.pythonhosted.org/packages/34/ba/d225825e88c28e3a6bd035da6594fb95e2367dc3786b29e2e7c54d0c6239/drisk_api-0.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4ac48f97c7701e194644e35042d7826738362c87bbfef066862f74e045c10c5",
"md5": "20a050ad0b547f44f6611215bf91c7b6",
"sha256": "0ec8d1d4bd7bd4ce0f9a5193a0ffb78d27bdcc6a7f1300d38bc38155b1201ae9"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "20a050ad0b547f44f6611215bf91c7b6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 447336,
"upload_time": "2024-08-27T12:51:03",
"upload_time_iso_8601": "2024-08-27T12:51:03.215572Z",
"url": "https://files.pythonhosted.org/packages/c4/ac/48f97c7701e194644e35042d7826738362c87bbfef066862f74e045c10c5/drisk_api-0.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89dc9784d987085eb2aed822dbf4b1471e40f247078d855b2a40a211c68f516c",
"md5": "d07e7ef8186b33caad68e448a469e79a",
"sha256": "6b324da1724f1021b947f95cbdb5774ed5f54f94f5762de9613b4488d7155657"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d07e7ef8186b33caad68e448a469e79a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 359058,
"upload_time": "2024-08-27T12:51:22",
"upload_time_iso_8601": "2024-08-27T12:51:22.431682Z",
"url": "https://files.pythonhosted.org/packages/89/dc/9784d987085eb2aed822dbf4b1471e40f247078d855b2a40a211c68f516c/drisk_api-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc5db148916931c27c909c8a65068144786ad41942addccb5cc67cac0a68cb4d",
"md5": "f6ca4019642d8e782207479b9236b51f",
"sha256": "f9c554927e68f6c7aa9c0e415e63f204ea7b3571f0d3c79d556d4fd6beab4e8c"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f6ca4019642d8e782207479b9236b51f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 378083,
"upload_time": "2024-08-27T12:51:12",
"upload_time_iso_8601": "2024-08-27T12:51:12.504792Z",
"url": "https://files.pythonhosted.org/packages/fc/5d/b148916931c27c909c8a65068144786ad41942addccb5cc67cac0a68cb4d/drisk_api-0.0.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "afe9adb2c3f32f0257f7d73648f87f5a91bc590b7b8b7468f4561637e00ca25b",
"md5": "58998b1f1942643b596d12752fceabc1",
"sha256": "e2235a6d851bda832d0a4b45aeb02ab971e760e5685a7a331d83e1034e253264"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "58998b1f1942643b596d12752fceabc1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 211788,
"upload_time": "2024-08-27T12:51:51",
"upload_time_iso_8601": "2024-08-27T12:51:51.267778Z",
"url": "https://files.pythonhosted.org/packages/af/e9/adb2c3f32f0257f7d73648f87f5a91bc590b7b8b7468f4561637e00ca25b/drisk_api-0.0.9-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48e1d30210579a160e876d5bcfb9edad657575b7c28d7659d01d1551cdf9c668",
"md5": "130716f50d10219e9e032debdd9f1474",
"sha256": "31d04d73272e4c76d373e6a97ee6d789e58a57cb2fdc2d7654c449f9f769bd22"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "130716f50d10219e9e032debdd9f1474",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 218555,
"upload_time": "2024-08-27T12:51:45",
"upload_time_iso_8601": "2024-08-27T12:51:45.160126Z",
"url": "https://files.pythonhosted.org/packages/48/e1/d30210579a160e876d5bcfb9edad657575b7c28d7659d01d1551cdf9c668/drisk_api-0.0.9-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d4ce6aee8188460a46c8ca240800f652b899e971b5b1e9ece773eb7a504746c",
"md5": "0eb3eae6c96c4e9e61b02f250b262e2d",
"sha256": "f14f16569b79e9a67b0763e6f35f12fb07efb559f05545b02a4eef06c5dfc7aa"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "0eb3eae6c96c4e9e61b02f250b262e2d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 325231,
"upload_time": "2024-08-27T12:51:38",
"upload_time_iso_8601": "2024-08-27T12:51:38.680150Z",
"url": "https://files.pythonhosted.org/packages/4d/4c/e6aee8188460a46c8ca240800f652b899e971b5b1e9ece773eb7a504746c/drisk_api-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f3da778c20339eebb217a99d061d814aa6a0d4418c6775c66e79011281cbb79",
"md5": "453c971fc2f781943b1f9a7af13c94e1",
"sha256": "72e53685c909dd622bcd3ac422d8fe87fad032dc0220584de432f4db7e5b4d71"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "453c971fc2f781943b1f9a7af13c94e1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 318824,
"upload_time": "2024-08-27T12:51:31",
"upload_time_iso_8601": "2024-08-27T12:51:31.497488Z",
"url": "https://files.pythonhosted.org/packages/6f/3d/a778c20339eebb217a99d061d814aa6a0d4418c6775c66e79011281cbb79/drisk_api-0.0.9-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d52e91856b5eb56f6f5974a294cdc9543e403341ff7c72877c6c684c2283879",
"md5": "614133abe6be1f6bc53d0a9b5fe10751",
"sha256": "0d51e77de3c020a7c9a11ae04ac334d5e90c4a15e4eaa2f852990b58b0fff0ca"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "614133abe6be1f6bc53d0a9b5fe10751",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 365831,
"upload_time": "2024-08-27T12:50:32",
"upload_time_iso_8601": "2024-08-27T12:50:32.090080Z",
"url": "https://files.pythonhosted.org/packages/7d/52/e91856b5eb56f6f5974a294cdc9543e403341ff7c72877c6c684c2283879/drisk_api-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7a7452f5946484881edf8cad323b192946eb3784e4f3a4f3c49dd9998c6eff1",
"md5": "941952d36b5a3f2c35892dc802df8507",
"sha256": "819e499d615332f650ae3006f92355ad9c456a15940ef88430004eccaa6c4dbd"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "941952d36b5a3f2c35892dc802df8507",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 370562,
"upload_time": "2024-08-27T12:50:42",
"upload_time_iso_8601": "2024-08-27T12:50:42.857719Z",
"url": "https://files.pythonhosted.org/packages/b7/a7/452f5946484881edf8cad323b192946eb3784e4f3a4f3c49dd9998c6eff1/drisk_api-0.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a24ef9ebb2ca51196650dc4922f9cd9e1f5df5ac74bce0205f5c7e81c336c0c",
"md5": "cd9b3378832705dc5eca40c23ed9a74b",
"sha256": "66078199e96a4be39f2d01650b85e1131a4d9871d783335f6a9ac2d29ca8cd43"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cd9b3378832705dc5eca40c23ed9a74b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 401416,
"upload_time": "2024-08-27T12:50:53",
"upload_time_iso_8601": "2024-08-27T12:50:53.868512Z",
"url": "https://files.pythonhosted.org/packages/9a/24/ef9ebb2ca51196650dc4922f9cd9e1f5df5ac74bce0205f5c7e81c336c0c/drisk_api-0.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "69c60ddb341fec51d132f2716a5e09970a325c8030be2fade21735a904d57dd5",
"md5": "cb5cebbd2742d3b4a01f42564a7c1d0d",
"sha256": "3723398ceb28630eaa590ac5525e3ce59b3e6f0392e2bcb12e41f9ea2ee83ad9"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "cb5cebbd2742d3b4a01f42564a7c1d0d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 438543,
"upload_time": "2024-08-27T12:51:04",
"upload_time_iso_8601": "2024-08-27T12:51:04.313384Z",
"url": "https://files.pythonhosted.org/packages/69/c6/0ddb341fec51d132f2716a5e09970a325c8030be2fade21735a904d57dd5/drisk_api-0.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89db5796b0c94d7cf969d483a80dc45c5b0544d6299c63589a00dfd29cb2d3ca",
"md5": "9ca0d90da0434018473fa5d0e629d9a8",
"sha256": "3372a2f0341ae038b5239e559b5e7a7b8a65d68d8b02c9393fa846e07bbf86cd"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9ca0d90da0434018473fa5d0e629d9a8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 358672,
"upload_time": "2024-08-27T12:51:23",
"upload_time_iso_8601": "2024-08-27T12:51:23.627353Z",
"url": "https://files.pythonhosted.org/packages/89/db/5796b0c94d7cf969d483a80dc45c5b0544d6299c63589a00dfd29cb2d3ca/drisk_api-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "877166c40e993bfb4ef6c57cce88972f46716af3fd69b763b52296cae54044bf",
"md5": "19a53b0c6c72c501b420060eced8559e",
"sha256": "e5ce723b79a2698086d8809a4df34d79b488eda8d98ad95cdb31145da9bdfcf9"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "19a53b0c6c72c501b420060eced8559e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 376714,
"upload_time": "2024-08-27T12:51:14",
"upload_time_iso_8601": "2024-08-27T12:51:14.242016Z",
"url": "https://files.pythonhosted.org/packages/87/71/66c40e993bfb4ef6c57cce88972f46716af3fd69b763b52296cae54044bf/drisk_api-0.0.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53fff3d71ad384a2b473c96d84ca7ed948dad46e50598b7ead728206135c9862",
"md5": "65397cd441be2226783813418b6b65f6",
"sha256": "3d0dd97cd25e49a724bd9ca275b440ef84a927e08c60325aa26417fd18a8dc05"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "65397cd441be2226783813418b6b65f6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 211365,
"upload_time": "2024-08-27T12:51:52",
"upload_time_iso_8601": "2024-08-27T12:51:52.943126Z",
"url": "https://files.pythonhosted.org/packages/53/ff/f3d71ad384a2b473c96d84ca7ed948dad46e50598b7ead728206135c9862/drisk_api-0.0.9-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4615a2ed0463ba3d6e8ddb94e80f144d72fb5053a92225786e646b75828038e4",
"md5": "cb2a822f87c0a92b4a5ad74971474bb1",
"sha256": "f160d95119da50f06b99e4dc65dfc7ecf7a0f2782853cc56dcab5e026bbe4ebf"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "cb2a822f87c0a92b4a5ad74971474bb1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 218863,
"upload_time": "2024-08-27T12:51:46",
"upload_time_iso_8601": "2024-08-27T12:51:46.280874Z",
"url": "https://files.pythonhosted.org/packages/46/15/a2ed0463ba3d6e8ddb94e80f144d72fb5053a92225786e646b75828038e4/drisk_api-0.0.9-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f308a18638c2e80a69aa4092edbc4af0d535df45515c31d300677842b5a1367",
"md5": "fe2b3c1fd45c9ab7bf2693807840a559",
"sha256": "f7deea84904109c1988b57372416331fd2c0f985cf01538b1e86cbd29ca85e45"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "fe2b3c1fd45c9ab7bf2693807840a559",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 327041,
"upload_time": "2024-08-27T12:51:40",
"upload_time_iso_8601": "2024-08-27T12:51:40.596153Z",
"url": "https://files.pythonhosted.org/packages/2f/30/8a18638c2e80a69aa4092edbc4af0d535df45515c31d300677842b5a1367/drisk_api-0.0.9-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a09f4438fcaf1eeef6733a71d945db2f38062250ba1a51f1bcdb15edbc254a9",
"md5": "2709a1d36a904698695ab9d35d58e23f",
"sha256": "56eee0f68ad16072caf4fd6f397077f8c3f9d439ecee1191c9d9b6f3991a563b"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2709a1d36a904698695ab9d35d58e23f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 319423,
"upload_time": "2024-08-27T12:51:32",
"upload_time_iso_8601": "2024-08-27T12:51:32.657111Z",
"url": "https://files.pythonhosted.org/packages/4a/09/f4438fcaf1eeef6733a71d945db2f38062250ba1a51f1bcdb15edbc254a9/drisk_api-0.0.9-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51fcc84a25e008938fe7c83457e1f35d8d00fed3e57116f27aa3e61d0bbebbca",
"md5": "60d7af314e0720945b46a781211d6b60",
"sha256": "823b2bcc517731258628515346f70f24e56b628db6e3cada11e3cafaebe8536c"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "60d7af314e0720945b46a781211d6b60",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 367298,
"upload_time": "2024-08-27T12:50:33",
"upload_time_iso_8601": "2024-08-27T12:50:33.547388Z",
"url": "https://files.pythonhosted.org/packages/51/fc/c84a25e008938fe7c83457e1f35d8d00fed3e57116f27aa3e61d0bbebbca/drisk_api-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c586ece7d1b6522285abca5eda9406cd0911357207bdbadf9e501660c66580c2",
"md5": "0f18acb3788ae13d559d3bad12a8bdfa",
"sha256": "3eb25b366ca9fcafcc133e134a4679e708533adff28c8f91b40f666c6cdb2ba5"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0f18acb3788ae13d559d3bad12a8bdfa",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 371997,
"upload_time": "2024-08-27T12:50:43",
"upload_time_iso_8601": "2024-08-27T12:50:43.933610Z",
"url": "https://files.pythonhosted.org/packages/c5/86/ece7d1b6522285abca5eda9406cd0911357207bdbadf9e501660c66580c2/drisk_api-0.0.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "70d275466bfcb67aee8ddb6e5a003bed9e8f17b61531710ddbe4b2a866506b2b",
"md5": "368fbd5396ff8a3465e3b784b18012db",
"sha256": "b6aa06abf7e25fd33ec2349c020c4f5d308bd2f97a8dab5704f3c3bd39fe0f3a"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "368fbd5396ff8a3465e3b784b18012db",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 402565,
"upload_time": "2024-08-27T12:50:55",
"upload_time_iso_8601": "2024-08-27T12:50:55.574951Z",
"url": "https://files.pythonhosted.org/packages/70/d2/75466bfcb67aee8ddb6e5a003bed9e8f17b61531710ddbe4b2a866506b2b/drisk_api-0.0.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d325a6ddfd42592ac84557de983ccf5bf30c0e6beb183fe28df65fdad1f2a19",
"md5": "1208c9fe45bb0fd0c0ef305e4a3dfa85",
"sha256": "45a713a69ba9129d1032fc33872b56db188c8d2d5c160c5abb5c00d9d3760095"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1208c9fe45bb0fd0c0ef305e4a3dfa85",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 448356,
"upload_time": "2024-08-27T12:51:05",
"upload_time_iso_8601": "2024-08-27T12:51:05.423801Z",
"url": "https://files.pythonhosted.org/packages/2d/32/5a6ddfd42592ac84557de983ccf5bf30c0e6beb183fe28df65fdad1f2a19/drisk_api-0.0.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce22c2e1bdcb1d0ba0271b3cb2d4be4f4b246abd17fa3756c221e54a50e1661b",
"md5": "14db86a0f9fd3f4be2132131663d5bb5",
"sha256": "50fc5bb9cdb3528bb1732c871ebadd5f3522f52793c2c351a343feaa698ba340"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "14db86a0f9fd3f4be2132131663d5bb5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 360386,
"upload_time": "2024-08-27T12:51:24",
"upload_time_iso_8601": "2024-08-27T12:51:24.743188Z",
"url": "https://files.pythonhosted.org/packages/ce/22/c2e1bdcb1d0ba0271b3cb2d4be4f4b246abd17fa3756c221e54a50e1661b/drisk_api-0.0.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f938ce2e2b57d1db373ce849566bf7aaa18af3efaab366962bb8e5514beb49f",
"md5": "9c8ab51e2b0e2d30e870079c84802ee9",
"sha256": "4c61ec0da67d442dc7e6285f0cf3f5ef6c6ea0d5f1c3ea6311a0f35d829b6c39"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "9c8ab51e2b0e2d30e870079c84802ee9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 380551,
"upload_time": "2024-08-27T12:51:16",
"upload_time_iso_8601": "2024-08-27T12:51:16.083080Z",
"url": "https://files.pythonhosted.org/packages/8f/93/8ce2e2b57d1db373ce849566bf7aaa18af3efaab366962bb8e5514beb49f/drisk_api-0.0.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2329645f114be5f95d992c5508b1eaa7988b3e46de14a6d8eaeb666cc7a5c8e",
"md5": "3efea134814259d3cb7d0f8da59d5caa",
"sha256": "7f142a7269886aff8605476f3ff9e0925b288836cc941031010cfd5df4764f25"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "3efea134814259d3cb7d0f8da59d5caa",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 212413,
"upload_time": "2024-08-27T12:51:54",
"upload_time_iso_8601": "2024-08-27T12:51:54.619834Z",
"url": "https://files.pythonhosted.org/packages/c2/32/9645f114be5f95d992c5508b1eaa7988b3e46de14a6d8eaeb666cc7a5c8e/drisk_api-0.0.9-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8480305e41a972cdcda39cede5d03ad2cedea833e0983f7d59669bac2eb5455e",
"md5": "4afed81c442e7cd615e864921957d5b9",
"sha256": "430fc77be15185cd445c1df1de72fa2301e84de864302c429a1af3823eb28928"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "4afed81c442e7cd615e864921957d5b9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 219019,
"upload_time": "2024-08-27T12:51:47",
"upload_time_iso_8601": "2024-08-27T12:51:47.961572Z",
"url": "https://files.pythonhosted.org/packages/84/80/305e41a972cdcda39cede5d03ad2cedea833e0983f7d59669bac2eb5455e/drisk_api-0.0.9-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f0f89ea025c35f42d4abc4b6826e6e988153d153718df65aa5445df3c4988f6c",
"md5": "ed310269089d2bd5633a806664a4c931",
"sha256": "4cf8759f375133e35236b4534820f6427075dea375a05c984f2d34df4f23808e"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ed310269089d2bd5633a806664a4c931",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 327361,
"upload_time": "2024-08-27T12:51:41",
"upload_time_iso_8601": "2024-08-27T12:51:41.694912Z",
"url": "https://files.pythonhosted.org/packages/f0/f8/9ea025c35f42d4abc4b6826e6e988153d153718df65aa5445df3c4988f6c/drisk_api-0.0.9-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f75cb2b91a862aa14669d8f9dc1fa3321e64419c983d026685d16b8fe2a8579",
"md5": "28bd1568e6b131ee51896bb867e1b3b2",
"sha256": "6c48b6f512d52b8026b32c04724061b6184378c8541a3e45e6727571733a43a2"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "28bd1568e6b131ee51896bb867e1b3b2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 320368,
"upload_time": "2024-08-27T12:51:34",
"upload_time_iso_8601": "2024-08-27T12:51:34.006293Z",
"url": "https://files.pythonhosted.org/packages/9f/75/cb2b91a862aa14669d8f9dc1fa3321e64419c983d026685d16b8fe2a8579/drisk_api-0.0.9-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29515f92788c2bfbc9f4cf284da041e23e50b24084498a477a6bd230ab7cdb2d",
"md5": "2672e30decafe4ecaf9d5a0be4016552",
"sha256": "5934aabf42b081280adfbfffe64da5d666cca69162de006351384f2a2d3f21db"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2672e30decafe4ecaf9d5a0be4016552",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 368188,
"upload_time": "2024-08-27T12:50:35",
"upload_time_iso_8601": "2024-08-27T12:50:35.114036Z",
"url": "https://files.pythonhosted.org/packages/29/51/5f92788c2bfbc9f4cf284da041e23e50b24084498a477a6bd230ab7cdb2d/drisk_api-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0bdaca7a38f3409344d7d6173cea2fa6d7f27f3e2e6d84bfdf0710d33601047",
"md5": "e749638b61007ab16e7c1efc4b8e733a",
"sha256": "e993d48e3c56712b43e87e6ac3932f7bca44dc95a730254fc760ecfeaf705cb4"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e749638b61007ab16e7c1efc4b8e733a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 371741,
"upload_time": "2024-08-27T12:50:45",
"upload_time_iso_8601": "2024-08-27T12:50:45.020354Z",
"url": "https://files.pythonhosted.org/packages/d0/bd/aca7a38f3409344d7d6173cea2fa6d7f27f3e2e6d84bfdf0710d33601047/drisk_api-0.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd49607d3342dc64a284db7f7ee3ea45825dbaec2741806b6cbe50a4c0e3a3e3",
"md5": "f5d971c41359b8ee736897f869253a75",
"sha256": "5d2a0ee9853676c71db2f209559fcf0534febcb3a194090fa43d15b2d3d29a94"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f5d971c41359b8ee736897f869253a75",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 402783,
"upload_time": "2024-08-27T12:50:57",
"upload_time_iso_8601": "2024-08-27T12:50:57.167072Z",
"url": "https://files.pythonhosted.org/packages/fd/49/607d3342dc64a284db7f7ee3ea45825dbaec2741806b6cbe50a4c0e3a3e3/drisk_api-0.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9070cce38331ede9b9c30f70155a5b3b5c5c9699458f9b5308bfde74bd52e046",
"md5": "ef1a6280c4741cb316772e86fe72c56b",
"sha256": "41a0520612a90fb6d5b78385cf582ddb38d0a8539647e537a493560c4a57e4d4"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ef1a6280c4741cb316772e86fe72c56b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 450498,
"upload_time": "2024-08-27T12:51:06",
"upload_time_iso_8601": "2024-08-27T12:51:06.583698Z",
"url": "https://files.pythonhosted.org/packages/90/70/cce38331ede9b9c30f70155a5b3b5c5c9699458f9b5308bfde74bd52e046/drisk_api-0.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4efe40d0d2dd99ce3fde968e3dab5266689039f4a92b7fb71e4a400184f5908d",
"md5": "5505d50d40cee7ff07aac9bfb8eff1b8",
"sha256": "b51b5ace42d2d97d2d8dcd7dac4a262048d65c9c4f55846acc777e4927ed8f20"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5505d50d40cee7ff07aac9bfb8eff1b8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 361205,
"upload_time": "2024-08-27T12:51:25",
"upload_time_iso_8601": "2024-08-27T12:51:25.870899Z",
"url": "https://files.pythonhosted.org/packages/4e/fe/40d0d2dd99ce3fde968e3dab5266689039f4a92b7fb71e4a400184f5908d/drisk_api-0.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de10e62323adab68fa4149e3eb1c5028fa491d4e2dcfbbe4e46c67e9096d5330",
"md5": "40018202d12787bc88c2e537901bcfd9",
"sha256": "2e61f576001ceaadad5bc6ee8af599b19be0fdb12ebf706f322e2856e70521de"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "40018202d12787bc88c2e537901bcfd9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 378763,
"upload_time": "2024-08-27T12:51:17",
"upload_time_iso_8601": "2024-08-27T12:51:17.504007Z",
"url": "https://files.pythonhosted.org/packages/de/10/e62323adab68fa4149e3eb1c5028fa491d4e2dcfbbe4e46c67e9096d5330/drisk_api-0.0.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad4deb40d8b97f0c680c8694d7797d2f753f59c8e1497943434774e5e6b60d79",
"md5": "fa238e820dc0079ece15271350a44f0f",
"sha256": "d844596a3029a2dbffc8d01b77dc72b95951b36704b5dd0d44eb3b76016f20e3"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "fa238e820dc0079ece15271350a44f0f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 211634,
"upload_time": "2024-08-27T12:51:55",
"upload_time_iso_8601": "2024-08-27T12:51:55.930744Z",
"url": "https://files.pythonhosted.org/packages/ad/4d/eb40d8b97f0c680c8694d7797d2f753f59c8e1497943434774e5e6b60d79/drisk_api-0.0.9-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "504408b22b024d2da9c373511339056c595197c5d88f0554c595dd30a8b06b3e",
"md5": "2e8284e42a75580b35c8a78079e6c2fc",
"sha256": "56a5fa2e27837091b0838daecd251065ba61809980471dae72bd190d7a891bf2"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "2e8284e42a75580b35c8a78079e6c2fc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 219437,
"upload_time": "2024-08-27T12:51:49",
"upload_time_iso_8601": "2024-08-27T12:51:49.124621Z",
"url": "https://files.pythonhosted.org/packages/50/44/08b22b024d2da9c373511339056c595197c5d88f0554c595dd30a8b06b3e/drisk_api-0.0.9-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79769eacea06a2983482e3bf8817cee97fdad8bbde1bb14ce4812614b618f192",
"md5": "a2832e9d4ab2b801106829cd009f89db",
"sha256": "1be75d4b09ee26afd3ccabb968bfc4fcc16d936cd9050bf85b2f0064a644977b"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a2832e9d4ab2b801106829cd009f89db",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 367051,
"upload_time": "2024-08-27T12:50:36",
"upload_time_iso_8601": "2024-08-27T12:50:36.559460Z",
"url": "https://files.pythonhosted.org/packages/79/76/9eacea06a2983482e3bf8817cee97fdad8bbde1bb14ce4812614b618f192/drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1546bd78e71a5cc3a369af3960b1eca04f8f88f5780d51d668038ce54a9d36ee",
"md5": "69799f4e99a1ef5ad2206a4edea1deae",
"sha256": "7b2088635d745b4ade9b5d0a64779b6221b996dcfb8e05e7285436eaf5a1b90b"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "69799f4e99a1ef5ad2206a4edea1deae",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 371439,
"upload_time": "2024-08-27T12:50:46",
"upload_time_iso_8601": "2024-08-27T12:50:46.342953Z",
"url": "https://files.pythonhosted.org/packages/15/46/bd78e71a5cc3a369af3960b1eca04f8f88f5780d51d668038ce54a9d36ee/drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9dadd6042ac1d62caf2275d93a4e105dd88cb4516498a705b32b1237ccd078ea",
"md5": "15e56774c4b61d02baaa1f0214531ee8",
"sha256": "28e32dcad48c46ab1b6dd7d399edc54f666bddc60acae7479457b5c00c52ae8d"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "15e56774c4b61d02baaa1f0214531ee8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 402770,
"upload_time": "2024-08-27T12:50:58",
"upload_time_iso_8601": "2024-08-27T12:50:58.272506Z",
"url": "https://files.pythonhosted.org/packages/9d/ad/d6042ac1d62caf2275d93a4e105dd88cb4516498a705b32b1237ccd078ea/drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7933b1bf013870e38c5046d6e56194ef608ec9ee60acc1ecce51fef267f78d9f",
"md5": "6582d050202aae99bed01868e6bd4945",
"sha256": "2ce5833b6bff48e9399475f420909282864d5c4e00a228f743b769bcf0113768"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6582d050202aae99bed01868e6bd4945",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 451675,
"upload_time": "2024-08-27T12:51:07",
"upload_time_iso_8601": "2024-08-27T12:51:07.690578Z",
"url": "https://files.pythonhosted.org/packages/79/33/b1bf013870e38c5046d6e56194ef608ec9ee60acc1ecce51fef267f78d9f/drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4da61c84552089837d43402ff4cd1ce735cd03ead4fe586cdb127e759748a43a",
"md5": "7a58fe71cf5cdcba3c2dc9279735f216",
"sha256": "920a7ac926e16d6b9d383ea13d17410ad9b616ce054de5af7c3144a71cbf17ab"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7a58fe71cf5cdcba3c2dc9279735f216",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 359815,
"upload_time": "2024-08-27T12:51:27",
"upload_time_iso_8601": "2024-08-27T12:51:27.003141Z",
"url": "https://files.pythonhosted.org/packages/4d/a6/1c84552089837d43402ff4cd1ce735cd03ead4fe586cdb127e759748a43a/drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec17d7fcd365e054120c1a33270c713c42e5e474108d924f1e9e912794398d93",
"md5": "b3975e4df44cc7b990a282aa7c8cfe1a",
"sha256": "6d9b30c7fb8905121e1a848b305e0c4ad0cdff60760eb66995d8bef4963a05b2"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b3975e4df44cc7b990a282aa7c8cfe1a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 377740,
"upload_time": "2024-08-27T12:51:18",
"upload_time_iso_8601": "2024-08-27T12:51:18.630059Z",
"url": "https://files.pythonhosted.org/packages/ec/17/d7fcd365e054120c1a33270c713c42e5e474108d924f1e9e912794398d93/drisk_api-0.0.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "495f52a56f88056e4ffac715fa5e6d3a6b09a7b0774173b6b422afdf89d7c348",
"md5": "a78414c66a98350a6f5d954c5b0c107e",
"sha256": "8466bcdead2d80036a349b8303b1267f67a2e79f566599afc28f872f05d4f8e5"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a78414c66a98350a6f5d954c5b0c107e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 368274,
"upload_time": "2024-08-27T12:50:37",
"upload_time_iso_8601": "2024-08-27T12:50:37.756044Z",
"url": "https://files.pythonhosted.org/packages/49/5f/52a56f88056e4ffac715fa5e6d3a6b09a7b0774173b6b422afdf89d7c348/drisk_api-0.0.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4489f342b0f5bf42e9a3d8288aaef54a285d84007837807c32139bd44c76f028",
"md5": "2c06807fbd8f75f725c401edf4439f3c",
"sha256": "fb592812095560828ee5158695709f383b303cd0ac74ed2f1d0036835c9b1499"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2c06807fbd8f75f725c401edf4439f3c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 373297,
"upload_time": "2024-08-27T12:50:47",
"upload_time_iso_8601": "2024-08-27T12:50:47.459567Z",
"url": "https://files.pythonhosted.org/packages/44/89/f342b0f5bf42e9a3d8288aaef54a285d84007837807c32139bd44c76f028/drisk_api-0.0.9-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63ff11c8f2f573c233d2982a9f62b972822e7e2052874b70c659257f27170dda",
"md5": "648504b5f53cb61a2a01e34560ddf63c",
"sha256": "e7a914d0c99e68409e28c9daeb77bf07e1200a5b15dfb211bad10e30c7624fef"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "648504b5f53cb61a2a01e34560ddf63c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 403526,
"upload_time": "2024-08-27T12:50:59",
"upload_time_iso_8601": "2024-08-27T12:50:59.409585Z",
"url": "https://files.pythonhosted.org/packages/63/ff/11c8f2f573c233d2982a9f62b972822e7e2052874b70c659257f27170dda/drisk_api-0.0.9-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86f559da4b4b91dd05dfc7c9d09a61883208f6f15dfe3ac32554457045d8ee86",
"md5": "6578bbb3d9a9dfb58561301e3ea0f177",
"sha256": "95b6df9467fd881e9ad9f5c7b87c152d4258d4179ad77458493e1910a48a74dd"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6578bbb3d9a9dfb58561301e3ea0f177",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 453322,
"upload_time": "2024-08-27T12:51:09",
"upload_time_iso_8601": "2024-08-27T12:51:09.089770Z",
"url": "https://files.pythonhosted.org/packages/86/f5/59da4b4b91dd05dfc7c9d09a61883208f6f15dfe3ac32554457045d8ee86/drisk_api-0.0.9-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "37565ce8de0683f799dc6faa24701650a2f001a113ef8a651be7546fb4d97f3e",
"md5": "53ff11e4e1033c4cdc18904043ad0894",
"sha256": "560d031c8187e5e4f01a4eeea93e9b5dfe6e8cb986f1003dbfce74281c80415d"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "53ff11e4e1033c4cdc18904043ad0894",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 367997,
"upload_time": "2024-08-27T12:50:38",
"upload_time_iso_8601": "2024-08-27T12:50:38.878046Z",
"url": "https://files.pythonhosted.org/packages/37/56/5ce8de0683f799dc6faa24701650a2f001a113ef8a651be7546fb4d97f3e/drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36a972f20bfa9e2a8940ee0ecd161c8dce50c6812a04d9b293b3025b6e23f5e7",
"md5": "fe412ac1354d5379eeb8068fa6bb402d",
"sha256": "c5a7264f9855b3469dcffdb8af6f6bfaa7a1265213f57b86495d7f9012d6e8a3"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "fe412ac1354d5379eeb8068fa6bb402d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 373334,
"upload_time": "2024-08-27T12:50:48",
"upload_time_iso_8601": "2024-08-27T12:50:48.702351Z",
"url": "https://files.pythonhosted.org/packages/36/a9/72f20bfa9e2a8940ee0ecd161c8dce50c6812a04d9b293b3025b6e23f5e7/drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "015ba2ee017c82c1aa59713ddb388e3a71358cb9c950d60ac61512edfe1ace23",
"md5": "f39781d3894ed5ea27483ab0f9062cb4",
"sha256": "ee732070c9f1c8161ab49efd15bbd3c2fe425249da2899cc3e2bbd664b5e955e"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f39781d3894ed5ea27483ab0f9062cb4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 403534,
"upload_time": "2024-08-27T12:51:00",
"upload_time_iso_8601": "2024-08-27T12:51:00.586529Z",
"url": "https://files.pythonhosted.org/packages/01/5b/a2ee017c82c1aa59713ddb388e3a71358cb9c950d60ac61512edfe1ace23/drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89dbe972df6140ece51ce4f4115bb6441b4b62244d3564d9cd1fc846c163782f",
"md5": "f7e551f0a675085f37a10134742fd813",
"sha256": "37e80916e3567e63ba98a7caf8ebc22d0957b0b0b51985314c6ce8d4418c81fe"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f7e551f0a675085f37a10134742fd813",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 453716,
"upload_time": "2024-08-27T12:51:10",
"upload_time_iso_8601": "2024-08-27T12:51:10.224046Z",
"url": "https://files.pythonhosted.org/packages/89/db/e972df6140ece51ce4f4115bb6441b4b62244d3564d9cd1fc846c163782f/drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87e91a8c394b954591e191e7d14b26b48db455807abad859b5276d6babe8c97e",
"md5": "df2eb9968bc90da4dd6ee85a86d452d9",
"sha256": "051cf80ac1061f2c253c15bd37fa41b6b20be164b8faf27ba0626e78c0855142"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "df2eb9968bc90da4dd6ee85a86d452d9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 361007,
"upload_time": "2024-08-27T12:51:28",
"upload_time_iso_8601": "2024-08-27T12:51:28.104661Z",
"url": "https://files.pythonhosted.org/packages/87/e9/1a8c394b954591e191e7d14b26b48db455807abad859b5276d6babe8c97e/drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a306d4af7d745f47f86373d3047cff971fd584cf001836b65ee5a63978a0682d",
"md5": "0b50841219d4f59e363c2f0a016ae95f",
"sha256": "f96f1adee47da2cc0d05ac119b238ed96177a1993027206bfa0c0ff5d826876c"
},
"downloads": -1,
"filename": "drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0b50841219d4f59e363c2f0a016ae95f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 380292,
"upload_time": "2024-08-27T12:51:19",
"upload_time_iso_8601": "2024-08-27T12:51:19.684822Z",
"url": "https://files.pythonhosted.org/packages/a3/06/d4af7d745f47f86373d3047cff971fd584cf001836b65ee5a63978a0682d/drisk_api-0.0.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd7476dc78fa567de17ed8e54ba07bf6bc9da3d6c982d5b213f7e1f7145caa69",
"md5": "8f3e293dc1077628b096f804bfd35822",
"sha256": "68a1334263158e625f04a256ae44a4ab9838151dee7a7d9b8072de43daf51f5e"
},
"downloads": -1,
"filename": "drisk_api-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "8f3e293dc1077628b096f804bfd35822",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 20096,
"upload_time": "2024-08-27T12:51:42",
"upload_time_iso_8601": "2024-08-27T12:51:42.726355Z",
"url": "https://files.pythonhosted.org/packages/bd/74/76dc78fa567de17ed8e54ba07bf6bc9da3d6c982d5b213f7e1f7145caa69/drisk_api-0.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-27 12:51:42",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "driskai",
"github_project": "drisk_api",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "drisk-api"
}