🚧 ARCHIVED! These stubs were moved into the core Raphtory library 🚧
Type stubs for the Raphtory library.
raphtory-stubs
provides type information for the Raphtory library, enabling better IDE support and static type checking when using Raphtory in your Python projects.
You can install raphtory-stubs
using pip:
pip install raphtory-stubs
After installation, your type checker and IDE should automatically recognize the type information for Raphtory. You don't need to change your import statements; just import Raphtory as usual:
from raphtory import Graph, Node, Edge
# Your IDE should now provide better autocompletion and type information
graph = Graph()
To run type checking on your project that uses Raphtory, you can use a tool like mypy:
mypy your_script.py
This stubs package is compatible with Raphtory version 0.9.3. Please ensure you're using a compatible version of Raphtory.
Contributions to improve the type stubs are welcome! Please submit a pull request or open an issue on the GitHub repository.
This project is licensed under the MIT License - see the LICENSE file for details.
This package contains type stubs to support static typing. It does not contain the actual implementation of Raphtory. Please refer to the official Raphtory documentation for usage information.
If you have any questions or issues, please open an issue on the GitHub repository.