raphtory


Nameraphtory JSON
Version 0.8.0 PyPI version JSON
download
home_pagehttps://github.com/Raphtory/raphtory/
SummaryPython package for raphtory, a temporal graph library
upload_time2024-04-16 00:07:47
maintainerNone
docs_urlNone
authorPometry
requires_python>=3.8
licenseGPL-3.0
keywords graph temporal-graph temporal
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <br>
<p align="center">
  <img src="https://user-images.githubusercontent.com/6665739/130641943-fa7fcdb8-a0e7-4aa4-863f-3df61b5de775.png" alt="Raphtory" height="100"/>
</p>
<p align="center">
</p>

<p align="center">
<a href="https://github.com/Raphtory/Raphtory/actions/workflows/test.yml/badge.svg">
<img alt="Test and Build" src="https://github.com/Raphtory/Raphtory/actions/workflows/test.yml/badge.svg" />
</a>
<a href="https://github.com/Raphtory/Raphtory/releases">
<img alt="Latest Release" src="https://img.shields.io/github/v/release/Raphtory/Raphtory?color=brightgreen&include_prereleases" />
</a>
<a href="https://github.com/Raphtory/Raphtory/issues">
<img alt="Issues" src="https://img.shields.io/github/issues/Raphtory/Raphtory?color=brightgreen" />
</a>
<a href="https://crates.io/crates/raphtory">
<img alt="Crates.io" src="https://img.shields.io/crates/v/raphtory">
</a>
<a href="https://pypi.org/project/raphtory/">
<img alt="PyPI" src="https://img.shields.io/pypi/v/raphtory">
</a>
<a href="https://pypi.org/project/raphtory/#history">
<img alt="PyPI Downloads" src="https://img.shields.io/pypi/dm/raphtory.svg">
</a>
<a href="https://mybinder.org/v2/gh/Raphtory/Raphtory/master?labpath=examples%2Fpy%2Flotr%2Flotr.ipynb">
<img alt="Launch Notebook" src="https://mybinder.org/badge_logo.svg" />
</a>
</p>
<p align="center">
<a href="https://www.raphtory.com">🌍 Website </a>
&nbsp
<a href="https://docs.raphtory.com/">πŸ“’ Documentation</a>
&nbsp 
<a href="https://www.pometry.com"><img src="https://user-images.githubusercontent.com/6665739/202438989-2859f8b8-30fb-4402-820a-563049e1fdb3.png" height="20" align="center"/> Pometry</a> 
&nbsp
<a href="https://www.raphtory.com/user-guide/installation/">πŸ§™Tutorial</a> 
&nbsp
<a href="https://github.com/Raphtory/Raphtory/issues">πŸ› Report a Bug</a> 
&nbsp
<a href="https://join.slack.com/t/raphtory/shared_invite/zt-xbebws9j-VgPIFRleJFJBwmpf81tvxA"><img src="https://user-images.githubusercontent.com/6665739/154071628-a55fb5f9-6994-4dcf-be03-401afc7d9ee0.png" height="20" align="center"/> Join Slack</a> 
</p>

<br>

Raphtory is an in-memory vectorised graph database written in Rust with friendly Python APIs on top. It is blazingly fast, scales to hundreds of millions of edges 
on your laptop, and can be dropped into your existing pipelines with a simple `pip install raphtory`.  

It supports time traveling, full-text search, multilayer modelling, and advanced analytics beyond simple querying like automatic risk detection, dynamic scoring, and temporal motifs.

If you wish to contribute, check out the open [list of issues](https://github.com/Pometry/Raphtory/issues), [bounty board](https://github.com/Raphtory/Raphtory/discussions/categories/bounty-board) or hit us up directly on [slack](https://join.slack.com/t/raphtory/shared_invite/zt-xbebws9j-VgPIFRleJFJBwmpf81tvxA). Successful contributions will be reward with swizzling swag!

## Installing Raphtory

Raphtory is available for Python and Rust. 

For python you must be using version 3.8 or higher and can install via pip:
```bash
pip install raphtory
``` 
For Rust, Raphtory is hosted on [crates](https://crates.io/crates/raphtory) for Rust version 1.75 or higher and can be included in your project via `cargo add`:
```bash
cargo add raphtory
```

## Running a basic example
Below is a small example of how Raphtory looks and feels when using our Python APIs. If you like what you see, you can dive into a full tutorial [here](https://www.raphtory.com/user-guide/ingestion/1_creating-a-graph/).
```python
from raphtory import Graph
from raphtory import algorithms as algo
import pandas as pd

# Create a new graph
graph = Graph()

# Add some data to your graph
graph.add_node(timestamp=1, id="Alice")
graph.add_node(timestamp=1, id="Bob")
graph.add_node(timestamp=1, id="Charlie")
graph.add_edge(timestamp=2, src="Bob", dst="Charlie", properties={"weight": 5.0})
graph.add_edge(timestamp=3, src="Alice", dst="Bob", properties={"weight": 10.0})
graph.add_edge(timestamp=3, src="Bob", dst="Charlie", properties={"weight": -15.0})

# Check the number of unique nodes/edges in the graph and earliest/latest time seen.
print(graph)

results = [["earliest_time", "name", "out_degree", "in_degree"]]

# Collect some simple node metrics Ran across the history of your graph with a rolling window
for graph_view in graph.rolling(window=1):
    for v in graph_view.nodes:
        results.append(
            [graph_view.earliest_time, v.name, v.out_degree(), v.in_degree()]
        )

# Print the results
print(pd.DataFrame(results[1:], columns=results[0]))

# Grab an edge, explore the history of its 'weight'
cb_edge = graph.edge("Bob", "Charlie")
weight_history = cb_edge.properties.temporal.get("weight").items()
print(
    "The edge between Bob and Charlie has the following weight history:", weight_history
)

# Compare this weight between time 2 and time 3
weight_change = cb_edge.at(2)["weight"] - cb_edge.at(3)["weight"]
print(
    "The weight of the edge between Bob and Charlie has changed by",
    weight_change,
    "pts",
)

# Run pagerank and ask for the top ranked node
top_node = algo.pagerank(graph).top_k(1)
print(
    "The most important node in the graph is",
    top_node[0][0],
    "with a score of",
    top_node[0][1],
)
```
### Output:
```a
Graph(number_of_edges=2, number_of_nodes=3, earliest_time=1, latest_time=3)

|   | earliest_time | name    | out_degree | in_degree |
|---|---------------|---------|------------|-----------|
| 0 | 1             | Alice   | 0          | 0         |
| 1 | 1             | Bob     | 0          | 0         |
| 2 | 1             | Charlie | 0          | 0         |
| 3 | 2             | Bob     | 1          | 0         |
| 4 | 2             | Charlie | 0          | 1         |
| 5 | 3             | Alice   | 1          | 0         |
| 6 | 3             | Bob     | 1          | 1         |
| 7 | 3             | Charlie | 0          | 1         |

The edge between Bob and Charlie has the following weight history: [(2, 5.0), (3, -15.0)]

The weight of the edge between Bob and Charlie has changed by 20.0 pts

The top node in the graph is Charlie with a score of 0.4744116163405977
```

## GraphQL

As part of the python APIs you can host your data within Raphtory's GraphQL server. This makes it super easy to integrate your graphy analytics with web applications.

Below is a small example creating a graph, running a server hosting this data, and directly querying it with our GraphQL client.

```python
from raphtory import Graph
from raphtory.graphql import RaphtoryServer
import pandas as pd

# URL for lord of the rings data from our main tutorial
url = "https://raw.githubusercontent.com/Raphtory/Data/main/lotr-with-header.csv"
df = pd.read_csv(url)

# Load the lord of the rings graph from the dataframe
graph = Graph.load_from_pandas(df,"src_id","dst_id","time")

#Create a dictionary of queryable graphs and start the graphql server with it. This returns a client we can query with
client = RaphtoryServer({"lotr_graph":graph}).start()

#Wait until the server has started up
client.wait_for_online()

#Run a basic query to get the names of the characters + their degree
results = client.query("""{
             graph(name: "lotr_graph") {
                 nodes {
                     name
                     degree
                    }
                 }
             }""")

print(results)
```

### Output:
```bash
Loading edges: 100%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 2.65K/2.65K [00:00<00:00, 984Kit/s]
Playground: http://localhost:1736
{'graph': 
    {'nodes': 
        [{'name': 'Gandalf', 'degree': 49}, 
         {'name': 'Elrond', 'degree': 32}, 
         {'name': 'Frodo', 'degree': 51}, 
         {'name': 'Bilbo', 'degree': 21}, 
         ...
        ]
    }
}
```
### GraphQL Playground
When you host a Raphtory GraphQL server you get a web playground bundled in, accessible on the same port within your browser (defaulting to 1736). Here you can experiment with queries on your graphs and explore the schema. An example of the playground can be seen below, running the same query as in the python example above.

![GraphQL Playground](https://i.imgur.com/p0HH6v3.png)

## Getting started
To get you up and running with Raphtory we provide a full set of tutorials on the [Raphtory website](https://raphtory.com):

* [Getting Data into Raphtory](https://www.raphtory.com/user-guide/ingestion/1_creating-a-graph/)
* [Basic Graph Queries](https://www.raphtory.com/user-guide/querying/1_intro/)
* [Time Travelling and Graph views](https://www.raphtory.com/user-guide/views/1_intro/)
* [Running algorithms](https://www.raphtory.com/user-guide/algorithms/1_intro/)
* [Integrating with other tools](https://www.raphtory.com/user-guide/export/1_intro/)

If API documentation is more your thing, you can dive straight in [here](https://docs.raphtory.com/)!

### Online notebook sandbox
Want to give this a go, but can't install? Check out Raphtory in action with our interactive Jupyter Notebooks! Just click the badge below to launch a Raphtory sandbox online, no installation needed.

 [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Raphtory/Raphtory/master?labpath=examples%2Fpy%2Flotr%2Flotr.ipynb) 

## Community

Join the growing community of open-source enthusiasts using Raphtory to power their graph analysis!

- Follow [![Slack](https://img.shields.io/twitter/follow/raphtory?label=@raphtory)](https://twitter.com/raphtory) for the latest Raphtory news and development

- Join our [![Slack](https://img.shields.io/badge/community-Slack-red)](https://join.slack.com/t/raphtory/shared_invite/zt-xbebws9j-VgPIFRleJFJBwmpf81tvxA) to chat with us and get answers to your questions!

### Contributors

<a href="https://github.com/raphtory/raphtory/graphs/contributors"><img src="https://contrib.rocks/image?repo=raphtory/raphtory"/></a>

### Bounty board

Raphtory is currently offering rewards for contributions, such as new features or algorithms. Contributors will receive swag and prizes!

To get started, check out our list of [desired algorithms](https://github.com/Raphtory/Raphtory/discussions/categories/bounty-board) which include some low hanging fruit (πŸ‡) that are easy to implement.


## Benchmarks

We host a page which triggers and saves the result of two benchmarks upon every push to the master branch.  View this [here](https://pometry.github.io/Raphtory/dev/bench/)

## License  

Raphtory is licensed under the terms of the GNU General Public License v3.0 (check out our LICENSE file).





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Raphtory/raphtory/",
    "name": "raphtory",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "graph, temporal-graph, temporal",
    "author": "Pometry",
    "author_email": null,
    "download_url": null,
    "platform": null,
    "description": "<br>\n<p align=\"center\">\n  <img src=\"https://user-images.githubusercontent.com/6665739/130641943-fa7fcdb8-a0e7-4aa4-863f-3df61b5de775.png\" alt=\"Raphtory\" height=\"100\"/>\n</p>\n<p align=\"center\">\n</p>\n\n<p align=\"center\">\n<a href=\"https://github.com/Raphtory/Raphtory/actions/workflows/test.yml/badge.svg\">\n<img alt=\"Test and Build\" src=\"https://github.com/Raphtory/Raphtory/actions/workflows/test.yml/badge.svg\" />\n</a>\n<a href=\"https://github.com/Raphtory/Raphtory/releases\">\n<img alt=\"Latest Release\" src=\"https://img.shields.io/github/v/release/Raphtory/Raphtory?color=brightgreen&include_prereleases\" />\n</a>\n<a href=\"https://github.com/Raphtory/Raphtory/issues\">\n<img alt=\"Issues\" src=\"https://img.shields.io/github/issues/Raphtory/Raphtory?color=brightgreen\" />\n</a>\n<a href=\"https://crates.io/crates/raphtory\">\n<img alt=\"Crates.io\" src=\"https://img.shields.io/crates/v/raphtory\">\n</a>\n<a href=\"https://pypi.org/project/raphtory/\">\n<img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/raphtory\">\n</a>\n<a href=\"https://pypi.org/project/raphtory/#history\">\n<img alt=\"PyPI Downloads\" src=\"https://img.shields.io/pypi/dm/raphtory.svg\">\n</a>\n<a href=\"https://mybinder.org/v2/gh/Raphtory/Raphtory/master?labpath=examples%2Fpy%2Flotr%2Flotr.ipynb\">\n<img alt=\"Launch Notebook\" src=\"https://mybinder.org/badge_logo.svg\" />\n</a>\n</p>\n<p align=\"center\">\n<a href=\"https://www.raphtory.com\">\ud83c\udf0d Website </a>\n&nbsp\n<a href=\"https://docs.raphtory.com/\">\ud83d\udcd2 Documentation</a>\n&nbsp \n<a href=\"https://www.pometry.com\"><img src=\"https://user-images.githubusercontent.com/6665739/202438989-2859f8b8-30fb-4402-820a-563049e1fdb3.png\" height=\"20\" align=\"center\"/> Pometry</a> \n&nbsp\n<a href=\"https://www.raphtory.com/user-guide/installation/\">\ud83e\uddd9Tutorial</a> \n&nbsp\n<a href=\"https://github.com/Raphtory/Raphtory/issues\">\ud83d\udc1b Report a Bug</a> \n&nbsp\n<a href=\"https://join.slack.com/t/raphtory/shared_invite/zt-xbebws9j-VgPIFRleJFJBwmpf81tvxA\"><img src=\"https://user-images.githubusercontent.com/6665739/154071628-a55fb5f9-6994-4dcf-be03-401afc7d9ee0.png\" height=\"20\" align=\"center\"/> Join Slack</a> \n</p>\n\n<br>\n\nRaphtory is an in-memory vectorised graph database written in Rust with friendly Python APIs on top. It is blazingly fast, scales to hundreds of millions of edges \non your laptop, and can be dropped into your existing pipelines with a simple `pip install raphtory`.  \n\nIt supports time traveling, full-text search, multilayer modelling, and advanced analytics beyond simple querying like automatic risk detection, dynamic scoring, and temporal motifs.\n\nIf you wish to contribute, check out the open [list of issues](https://github.com/Pometry/Raphtory/issues), [bounty board](https://github.com/Raphtory/Raphtory/discussions/categories/bounty-board) or hit us up directly on [slack](https://join.slack.com/t/raphtory/shared_invite/zt-xbebws9j-VgPIFRleJFJBwmpf81tvxA). Successful contributions will be reward with swizzling swag!\n\n## Installing Raphtory\n\nRaphtory is available for Python and Rust. \n\nFor python you must be using version 3.8 or higher and can install via pip:\n```bash\npip install raphtory\n``` \nFor Rust, Raphtory is hosted on [crates](https://crates.io/crates/raphtory) for Rust version 1.75 or higher and can be included in your project via `cargo add`:\n```bash\ncargo add raphtory\n```\n\n## Running a basic example\nBelow is a small example of how Raphtory looks and feels when using our Python APIs. If you like what you see, you can dive into a full tutorial [here](https://www.raphtory.com/user-guide/ingestion/1_creating-a-graph/).\n```python\nfrom raphtory import Graph\nfrom raphtory import algorithms as algo\nimport pandas as pd\n\n# Create a new graph\ngraph = Graph()\n\n# Add some data to your graph\ngraph.add_node(timestamp=1, id=\"Alice\")\ngraph.add_node(timestamp=1, id=\"Bob\")\ngraph.add_node(timestamp=1, id=\"Charlie\")\ngraph.add_edge(timestamp=2, src=\"Bob\", dst=\"Charlie\", properties={\"weight\": 5.0})\ngraph.add_edge(timestamp=3, src=\"Alice\", dst=\"Bob\", properties={\"weight\": 10.0})\ngraph.add_edge(timestamp=3, src=\"Bob\", dst=\"Charlie\", properties={\"weight\": -15.0})\n\n# Check the number of unique nodes/edges in the graph and earliest/latest time seen.\nprint(graph)\n\nresults = [[\"earliest_time\", \"name\", \"out_degree\", \"in_degree\"]]\n\n# Collect some simple node metrics Ran across the history of your graph with a rolling window\nfor graph_view in graph.rolling(window=1):\n    for v in graph_view.nodes:\n        results.append(\n            [graph_view.earliest_time, v.name, v.out_degree(), v.in_degree()]\n        )\n\n# Print the results\nprint(pd.DataFrame(results[1:], columns=results[0]))\n\n# Grab an edge, explore the history of its 'weight'\ncb_edge = graph.edge(\"Bob\", \"Charlie\")\nweight_history = cb_edge.properties.temporal.get(\"weight\").items()\nprint(\n    \"The edge between Bob and Charlie has the following weight history:\", weight_history\n)\n\n# Compare this weight between time 2 and time 3\nweight_change = cb_edge.at(2)[\"weight\"] - cb_edge.at(3)[\"weight\"]\nprint(\n    \"The weight of the edge between Bob and Charlie has changed by\",\n    weight_change,\n    \"pts\",\n)\n\n# Run pagerank and ask for the top ranked node\ntop_node = algo.pagerank(graph).top_k(1)\nprint(\n    \"The most important node in the graph is\",\n    top_node[0][0],\n    \"with a score of\",\n    top_node[0][1],\n)\n```\n### Output:\n```a\nGraph(number_of_edges=2, number_of_nodes=3, earliest_time=1, latest_time=3)\n\n|   | earliest_time | name    | out_degree | in_degree |\n|---|---------------|---------|------------|-----------|\n| 0 | 1             | Alice   | 0          | 0         |\n| 1 | 1             | Bob     | 0          | 0         |\n| 2 | 1             | Charlie | 0          | 0         |\n| 3 | 2             | Bob     | 1          | 0         |\n| 4 | 2             | Charlie | 0          | 1         |\n| 5 | 3             | Alice   | 1          | 0         |\n| 6 | 3             | Bob     | 1          | 1         |\n| 7 | 3             | Charlie | 0          | 1         |\n\nThe edge between Bob and Charlie has the following weight history: [(2, 5.0), (3, -15.0)]\n\nThe weight of the edge between Bob and Charlie has changed by 20.0 pts\n\nThe top node in the graph is Charlie with a score of 0.4744116163405977\n```\n\n## GraphQL\n\nAs part of the python APIs you can host your data within Raphtory's GraphQL server. This makes it super easy to integrate your graphy analytics with web applications.\n\nBelow is a small example creating a graph, running a server hosting this data, and directly querying it with our GraphQL client.\n\n```python\nfrom raphtory import Graph\nfrom raphtory.graphql import RaphtoryServer\nimport pandas as pd\n\n# URL for lord of the rings data from our main tutorial\nurl = \"https://raw.githubusercontent.com/Raphtory/Data/main/lotr-with-header.csv\"\ndf = pd.read_csv(url)\n\n# Load the lord of the rings graph from the dataframe\ngraph = Graph.load_from_pandas(df,\"src_id\",\"dst_id\",\"time\")\n\n#Create a dictionary of queryable graphs and start the graphql server with it. This returns a client we can query with\nclient = RaphtoryServer({\"lotr_graph\":graph}).start()\n\n#Wait until the server has started up\nclient.wait_for_online()\n\n#Run a basic query to get the names of the characters + their degree\nresults = client.query(\"\"\"{\n             graph(name: \"lotr_graph\") {\n                 nodes {\n                     name\n                     degree\n                    }\n                 }\n             }\"\"\")\n\nprint(results)\n```\n\n### Output:\n```bash\nLoading edges: 100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 2.65K/2.65K [00:00<00:00, 984Kit/s]\nPlayground: http://localhost:1736\n{'graph': \n    {'nodes': \n        [{'name': 'Gandalf', 'degree': 49}, \n         {'name': 'Elrond', 'degree': 32}, \n         {'name': 'Frodo', 'degree': 51}, \n         {'name': 'Bilbo', 'degree': 21}, \n         ...\n        ]\n    }\n}\n```\n### GraphQL Playground\nWhen you host a Raphtory GraphQL server you get a web playground bundled in, accessible on the same port within your browser (defaulting to 1736). Here you can experiment with queries on your graphs and explore the schema. An example of the playground can be seen below, running the same query as in the python example above.\n\n![GraphQL Playground](https://i.imgur.com/p0HH6v3.png)\n\n## Getting started\nTo get you up and running with Raphtory we provide a full set of tutorials on the [Raphtory website](https://raphtory.com):\n\n* [Getting Data into Raphtory](https://www.raphtory.com/user-guide/ingestion/1_creating-a-graph/)\n* [Basic Graph Queries](https://www.raphtory.com/user-guide/querying/1_intro/)\n* [Time Travelling and Graph views](https://www.raphtory.com/user-guide/views/1_intro/)\n* [Running algorithms](https://www.raphtory.com/user-guide/algorithms/1_intro/)\n* [Integrating with other tools](https://www.raphtory.com/user-guide/export/1_intro/)\n\nIf API documentation is more your thing, you can dive straight in [here](https://docs.raphtory.com/)!\n\n### Online notebook sandbox\nWant to give this a go, but can't install? Check out Raphtory in action with our interactive Jupyter Notebooks! Just click the badge below to launch a Raphtory sandbox online, no installation needed.\n\n [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Raphtory/Raphtory/master?labpath=examples%2Fpy%2Flotr%2Flotr.ipynb) \n\n## Community\n\nJoin the growing community of open-source enthusiasts using Raphtory to power their graph analysis!\n\n- Follow [![Slack](https://img.shields.io/twitter/follow/raphtory?label=@raphtory)](https://twitter.com/raphtory) for the latest Raphtory news and development\n\n- Join our [![Slack](https://img.shields.io/badge/community-Slack-red)](https://join.slack.com/t/raphtory/shared_invite/zt-xbebws9j-VgPIFRleJFJBwmpf81tvxA) to chat with us and get answers to your questions!\n\n### Contributors\n\n<a href=\"https://github.com/raphtory/raphtory/graphs/contributors\"><img src=\"https://contrib.rocks/image?repo=raphtory/raphtory\"/></a>\n\n### Bounty board\n\nRaphtory is currently offering rewards for contributions, such as new features or algorithms. Contributors will receive swag and prizes!\n\nTo get started, check out our list of [desired algorithms](https://github.com/Raphtory/Raphtory/discussions/categories/bounty-board) which include some low hanging fruit (\ud83c\udf47) that are easy to implement.\n\n\n## Benchmarks\n\nWe host a page which triggers and saves the result of two benchmarks upon every push to the master branch.  View this [here](https://pometry.github.io/Raphtory/dev/bench/)\n\n## License  \n\nRaphtory is licensed under the terms of the GNU General Public License v3.0 (check out our LICENSE file).\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "GPL-3.0",
    "summary": "Python package for raphtory, a temporal graph library",
    "version": "0.8.0",
    "project_urls": {
        "Homepage": "https://github.com/Raphtory/raphtory/",
        "documentation": "https://docs.raphtory.com/",
        "homepage": "https://github.com/pometry/raphtory",
        "repository": "https://github.com/pometry/raphtory",
        "slack": "https://join.slack.com/t/raphtory/shared_invite/zt-xbebws9j-VgPIFRleJFJBwmpf81tvxA",
        "twitter": "https://twitter.com/raphtory/",
        "youtube": "https://www.youtube.com/@pometry8546/videos"
    },
    "split_keywords": [
        "graph",
        " temporal-graph",
        " temporal"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26789ba403f4f89e4591ad49cb23b01794c82db3d78e69a29449b1619462cfac",
                "md5": "3342764bd51f1caa5c742db4ed3197f2",
                "sha256": "cebcdfd33252206d2cf73cc4bd4784fc75b1d04a4cd90d9545da7b45a1b80940"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3342764bd51f1caa5c742db4ed3197f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 12085779,
            "upload_time": "2024-04-16T00:07:47",
            "upload_time_iso_8601": "2024-04-16T00:07:47.279471Z",
            "url": "https://files.pythonhosted.org/packages/26/78/9ba403f4f89e4591ad49cb23b01794c82db3d78e69a29449b1619462cfac/raphtory-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "901d2e541faf1c2aa717c8b42a5940c7580d39ed40714ee9f799982df2a66441",
                "md5": "79b98efc5dc90da6d9530ac7979d0171",
                "sha256": "b85a067fb5a42e05325be71f198683d301ef25b001f248c572db70078789bf8b"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "79b98efc5dc90da6d9530ac7979d0171",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 11391180,
            "upload_time": "2024-04-16T00:07:51",
            "upload_time_iso_8601": "2024-04-16T00:07:51.317676Z",
            "url": "https://files.pythonhosted.org/packages/90/1d/2e541faf1c2aa717c8b42a5940c7580d39ed40714ee9f799982df2a66441/raphtory-0.8.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77443be074fe436e6848d99fdd07fcf558a909314882b218efc14c1bf250c339",
                "md5": "3d87462df30a8d5b90777af3571d8798",
                "sha256": "c5404e84104b4e0e340a2952221b9f3161d3d524f7e34e11109a1be8b8f60bbf"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d87462df30a8d5b90777af3571d8798",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 14502509,
            "upload_time": "2024-04-16T00:07:54",
            "upload_time_iso_8601": "2024-04-16T00:07:54.697305Z",
            "url": "https://files.pythonhosted.org/packages/77/44/3be074fe436e6848d99fdd07fcf558a909314882b218efc14c1bf250c339/raphtory-0.8.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef54ca15f969ece094a85382bf5201ff08103c9cb3bbbf0ece8bdcf3f331f6f7",
                "md5": "e3738cee696203c5e6f640ccae86e51c",
                "sha256": "b73c5399f2d3083533ddb7573cfb722df01977e1f81e84c20f2b7488c16cfc8d"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3738cee696203c5e6f640ccae86e51c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 14962815,
            "upload_time": "2024-04-16T00:07:57",
            "upload_time_iso_8601": "2024-04-16T00:07:57.564878Z",
            "url": "https://files.pythonhosted.org/packages/ef/54/ca15f969ece094a85382bf5201ff08103c9cb3bbbf0ece8bdcf3f331f6f7/raphtory-0.8.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fda04624dd854334cac96a62256f5b09fac6b358a3baa41a09c80a893547b33e",
                "md5": "0884be177bd0e70d76bde77b51d1ae65",
                "sha256": "d4699f4f2db9497c454189ea8d293302454a9b333d73957d61c9a683300e7ed5"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0884be177bd0e70d76bde77b51d1ae65",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 10621503,
            "upload_time": "2024-04-16T00:08:00",
            "upload_time_iso_8601": "2024-04-16T00:08:00.399446Z",
            "url": "https://files.pythonhosted.org/packages/fd/a0/4624dd854334cac96a62256f5b09fac6b358a3baa41a09c80a893547b33e/raphtory-0.8.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "015658f97990cc4a51b287188d7ddd34a77cde18bd27848507f3aea589dfbe4f",
                "md5": "f3270a03bc495c54a02b79d5636e1ff0",
                "sha256": "8bcc4fa882373a40f84c8fc2bb89887933b5a87186d62e21db71739a1f1d4d1d"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3270a03bc495c54a02b79d5636e1ff0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 12085813,
            "upload_time": "2024-04-16T00:08:03",
            "upload_time_iso_8601": "2024-04-16T00:08:03.944464Z",
            "url": "https://files.pythonhosted.org/packages/01/56/58f97990cc4a51b287188d7ddd34a77cde18bd27848507f3aea589dfbe4f/raphtory-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb98250f07cbe6acfc84ad1528fb42276623927712b19784fbbf2ede22a3981b",
                "md5": "c3d53f932d6d52e16b14bfd613d6f8f4",
                "sha256": "b3578cdfe3d56356731b503c8ea46355026cdb399aba0a14a996cf165b65c14c"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c3d53f932d6d52e16b14bfd613d6f8f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11391699,
            "upload_time": "2024-04-16T00:08:06",
            "upload_time_iso_8601": "2024-04-16T00:08:06.799483Z",
            "url": "https://files.pythonhosted.org/packages/bb/98/250f07cbe6acfc84ad1528fb42276623927712b19784fbbf2ede22a3981b/raphtory-0.8.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f5ba599e0d0645ed6836e0c4dd3e79771e02a7b937c080b048fd92187b9da27",
                "md5": "e3f70c44c1d178791af78e4c82f4d0a0",
                "sha256": "60fe003a0d1b2cf98d7fa3d4268dc38b7eb0683761ade535623b9a15ddd2eae6"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e3f70c44c1d178791af78e4c82f4d0a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 14503517,
            "upload_time": "2024-04-16T00:08:10",
            "upload_time_iso_8601": "2024-04-16T00:08:10.358235Z",
            "url": "https://files.pythonhosted.org/packages/1f/5b/a599e0d0645ed6836e0c4dd3e79771e02a7b937c080b048fd92187b9da27/raphtory-0.8.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0923588be57915b151f4b1a483794cc4a9c8672d621485fffdba562e7a482b9",
                "md5": "ac96feaec5a6823b5452f5f89c6f0e5f",
                "sha256": "54ec6a577800534f3524f0c56aa2c6b0a0e9be2a63709067bd611f781e7d5898"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac96feaec5a6823b5452f5f89c6f0e5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 14961944,
            "upload_time": "2024-04-16T00:08:13",
            "upload_time_iso_8601": "2024-04-16T00:08:13.236717Z",
            "url": "https://files.pythonhosted.org/packages/e0/92/3588be57915b151f4b1a483794cc4a9c8672d621485fffdba562e7a482b9/raphtory-0.8.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dffa0d5b04504077637e882d15d5cbb189694794128f4a14a4954add4d0b455",
                "md5": "7dcf33e877dbf0f8cb5d78e443252783",
                "sha256": "d62c236ecb9c6803f47a0dfcd5c73eab12d25bcc72e04cac3af9bce3046a6f15"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7dcf33e877dbf0f8cb5d78e443252783",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 10622316,
            "upload_time": "2024-04-16T00:08:16",
            "upload_time_iso_8601": "2024-04-16T00:08:16.435828Z",
            "url": "https://files.pythonhosted.org/packages/5d/ff/a0d5b04504077637e882d15d5cbb189694794128f4a14a4954add4d0b455/raphtory-0.8.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f69e66a8ba70a1b8663f22a3aa516eb87bfacd5ee550079890e0d40eb940b909",
                "md5": "b31d657209f8ffcc1054d138e1bdbc30",
                "sha256": "8c91450e4f38f0d96ba1c619ca51f6150d0253d77ae57aee9a6793eac154b33b"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b31d657209f8ffcc1054d138e1bdbc30",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 12092905,
            "upload_time": "2024-04-16T00:08:19",
            "upload_time_iso_8601": "2024-04-16T00:08:19.917200Z",
            "url": "https://files.pythonhosted.org/packages/f6/9e/66a8ba70a1b8663f22a3aa516eb87bfacd5ee550079890e0d40eb940b909/raphtory-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c179df436dd96bdca40fc183d5e346bc2d8577bee6f409c1ea456005a01829e2",
                "md5": "6f0408af0eee7623499f8a542a63f0ae",
                "sha256": "43bff2c3877e4ced957a340888923067404afbccd83d6acf6b52a94b5093aeb2"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6f0408af0eee7623499f8a542a63f0ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 11391855,
            "upload_time": "2024-04-16T00:08:23",
            "upload_time_iso_8601": "2024-04-16T00:08:23.456093Z",
            "url": "https://files.pythonhosted.org/packages/c1/79/df436dd96bdca40fc183d5e346bc2d8577bee6f409c1ea456005a01829e2/raphtory-0.8.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ba1211ae5b5a87cca7f06cea044ed91ae7f569203d447df69726d83d41dcf1a",
                "md5": "0c6700919d8aba53542c37ba80dfd246",
                "sha256": "ec4b9a60af8a55d36ecf4258fb876a68e3e1638f1da6c5e1fcd246fa10ec0d4f"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c6700919d8aba53542c37ba80dfd246",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 14507856,
            "upload_time": "2024-04-16T00:08:26",
            "upload_time_iso_8601": "2024-04-16T00:08:26.306475Z",
            "url": "https://files.pythonhosted.org/packages/2b/a1/211ae5b5a87cca7f06cea044ed91ae7f569203d447df69726d83d41dcf1a/raphtory-0.8.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9ce49a0e95e06673c8eb74d3b821968e4ccb88e20450c8e9592915530de9259",
                "md5": "216a01a6cfec5132f64734564b12926b",
                "sha256": "858d056348b5d41cc460362e0573298ca4966c417953f011cc6166195534bf43"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "216a01a6cfec5132f64734564b12926b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 14969305,
            "upload_time": "2024-04-16T00:08:29",
            "upload_time_iso_8601": "2024-04-16T00:08:29.197669Z",
            "url": "https://files.pythonhosted.org/packages/d9/ce/49a0e95e06673c8eb74d3b821968e4ccb88e20450c8e9592915530de9259/raphtory-0.8.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afe92f752a6a7b595844b5e79b96afb381dea9a8e70727659195bc7007cb55f7",
                "md5": "f0d57cf6572fd4c844b3080668ba00c3",
                "sha256": "2db513d13ff67c7d91eb1be4cf95c2114b6b4c41df92bf66c72be7274315626e"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f0d57cf6572fd4c844b3080668ba00c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 10632118,
            "upload_time": "2024-04-16T00:08:31",
            "upload_time_iso_8601": "2024-04-16T00:08:31.959901Z",
            "url": "https://files.pythonhosted.org/packages/af/e9/2f752a6a7b595844b5e79b96afb381dea9a8e70727659195bc7007cb55f7/raphtory-0.8.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b64abc3b8234099efbafbd5dfded8748fa318b11ceba547f77afb69ef598cbc1",
                "md5": "5a3f1f1058cb24f4d33f8e194bda405a",
                "sha256": "121a9d556809ac21c740a04f70d7c81ce32d4b169d97d65ad1df16badee9ec88"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a3f1f1058cb24f4d33f8e194bda405a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 12089212,
            "upload_time": "2024-04-16T00:08:35",
            "upload_time_iso_8601": "2024-04-16T00:08:35.302790Z",
            "url": "https://files.pythonhosted.org/packages/b6/4a/bc3b8234099efbafbd5dfded8748fa318b11ceba547f77afb69ef598cbc1/raphtory-0.8.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5785c26ce9463afe616a28623144fa36f101f3ac5f8352f62ee2c1925bbd463",
                "md5": "7c63419e704143a99c5e547298972bbe",
                "sha256": "b48fae701194ca4b5eb73f6c93ebdde1e13e648faf1f729fe791f94cd32b42a6"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7c63419e704143a99c5e547298972bbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 11392237,
            "upload_time": "2024-04-16T00:08:38",
            "upload_time_iso_8601": "2024-04-16T00:08:38.354639Z",
            "url": "https://files.pythonhosted.org/packages/c5/78/5c26ce9463afe616a28623144fa36f101f3ac5f8352f62ee2c1925bbd463/raphtory-0.8.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da7c5b659212d63327cd38c4f2e899db860e7cb235663ccd0f0844b84de552ce",
                "md5": "6577b2377ae144c4051fe69c0f63ba36",
                "sha256": "977d9f6b9909758893fe379ac5f3c9516bc5f50e2b93aec3c2cdc7a251b0df74"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6577b2377ae144c4051fe69c0f63ba36",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 14504874,
            "upload_time": "2024-04-16T00:08:40",
            "upload_time_iso_8601": "2024-04-16T00:08:40.889829Z",
            "url": "https://files.pythonhosted.org/packages/da/7c/5b659212d63327cd38c4f2e899db860e7cb235663ccd0f0844b84de552ce/raphtory-0.8.0-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1eb163a7b49f7557f59daeea32b56ddb8f28ea40a408f9cb083c9b69c42204eb",
                "md5": "d399321fc53ab96e683d34ac4846d0be",
                "sha256": "0de4a2a7deae544d6edaf42e59f4e05fbceb3e3e05fb65556fe234296ffc1749"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d399321fc53ab96e683d34ac4846d0be",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 14964416,
            "upload_time": "2024-04-16T00:08:44",
            "upload_time_iso_8601": "2024-04-16T00:08:44.453153Z",
            "url": "https://files.pythonhosted.org/packages/1e/b1/63a7b49f7557f59daeea32b56ddb8f28ea40a408f9cb083c9b69c42204eb/raphtory-0.8.0-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2afe30d55c87bc1d8c2fcefc96ca73899bf9bb0ff70e0d28d85eb5865502b9b1",
                "md5": "98ceb086400406dbcc64328a438e9f2f",
                "sha256": "f8a098185137c11ba2d2d7dac0eec92168779e3acb64486a41c93991c734e57b"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "98ceb086400406dbcc64328a438e9f2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 10626300,
            "upload_time": "2024-04-16T00:08:47",
            "upload_time_iso_8601": "2024-04-16T00:08:47.981540Z",
            "url": "https://files.pythonhosted.org/packages/2a/fe/30d55c87bc1d8c2fcefc96ca73899bf9bb0ff70e0d28d85eb5865502b9b1/raphtory-0.8.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74e22c909499a1a11fbe3d80ae7e55545f46ff39eaeea553545d5686beee7f3b",
                "md5": "1bdb447d0081f839748f7553001edcec",
                "sha256": "f60d4fbddbc2bd964c987bab9699289427efcccb2bdd2337e7e76f0e0feb9de3"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1bdb447d0081f839748f7553001edcec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 12086766,
            "upload_time": "2024-04-16T00:08:50",
            "upload_time_iso_8601": "2024-04-16T00:08:50.712759Z",
            "url": "https://files.pythonhosted.org/packages/74/e2/2c909499a1a11fbe3d80ae7e55545f46ff39eaeea553545d5686beee7f3b/raphtory-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "486888b095ededafc57233d9e25463cb01c7cf2073bfb5a8f4dd29c7a8ab56ba",
                "md5": "0b7e681900e3567242ee583c3401b014",
                "sha256": "8eea31906df3e48ad1a1dcb13223fd03b4caf44fee84e30d79d95c6941f579b0"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0b7e681900e3567242ee583c3401b014",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 11392579,
            "upload_time": "2024-04-16T00:08:54",
            "upload_time_iso_8601": "2024-04-16T00:08:54.165630Z",
            "url": "https://files.pythonhosted.org/packages/48/68/88b095ededafc57233d9e25463cb01c7cf2073bfb5a8f4dd29c7a8ab56ba/raphtory-0.8.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1ee91112b8d4952b34f3be8c86971a8e9313baaeef7968a6f6e13f724fa5413",
                "md5": "3ade6f266726e1531a4593e5f7c805c7",
                "sha256": "7d40127636dab81f21e665534559781429e08385de8ea953a788f58f14875a09"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ade6f266726e1531a4593e5f7c805c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 14502461,
            "upload_time": "2024-04-16T00:08:56",
            "upload_time_iso_8601": "2024-04-16T00:08:56.709640Z",
            "url": "https://files.pythonhosted.org/packages/c1/ee/91112b8d4952b34f3be8c86971a8e9313baaeef7968a6f6e13f724fa5413/raphtory-0.8.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ba81e723d8842a45b8e0a05162fa5b5c2b52b8991011ff13f795067714c9501",
                "md5": "45843f99bfee98a6eb4eee303cd63e7a",
                "sha256": "a75e3f94bf2f20c34b5471266b69d81046f97e46e2265d9b66ef5268c2341b12"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45843f99bfee98a6eb4eee303cd63e7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 14962248,
            "upload_time": "2024-04-16T00:08:59",
            "upload_time_iso_8601": "2024-04-16T00:08:59.407195Z",
            "url": "https://files.pythonhosted.org/packages/4b/a8/1e723d8842a45b8e0a05162fa5b5c2b52b8991011ff13f795067714c9501/raphtory-0.8.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c7657cdedb1ab957af1edeb2c275fdcc37fee6961731cff2238508578eb8c8b",
                "md5": "72f1197b12e6765550f8f87037f68552",
                "sha256": "3c49982de168a282d0cda269dfb071c5e45014eb7de0c7b816a8a258c8e91673"
            },
            "downloads": -1,
            "filename": "raphtory-0.8.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "72f1197b12e6765550f8f87037f68552",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 10622260,
            "upload_time": "2024-04-16T00:09:03",
            "upload_time_iso_8601": "2024-04-16T00:09:03.433206Z",
            "url": "https://files.pythonhosted.org/packages/4c/76/57cdedb1ab957af1edeb2c275fdcc37fee6961731cff2238508578eb8c8b/raphtory-0.8.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-16 00:07:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Raphtory",
    "github_project": "raphtory",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "raphtory"
}
        
Elapsed time: 0.25043s