Metadata-Version: 2.1
Name: gograph
Version: 0.0.11
Summary: gograph simplifies graph analysis using modern best practices
Home-page: https://github.com/rossheat/gograph
Author: Ross Heaton
Author-email: gographorg@gmail.com
License: Apache Software License 2.0
Keywords: graph network analysis analytics edge vertex
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

Welcome to gograph
================

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Install

``` sh
pip install gograph

conda install gograph
```

## How to use

The lib provides a `Graph` class that you can use create and analyse
graphs!

``` python
g = Graph(vertices=['u', 'v', 'z'], edges=['uv', 'uz', 'zz'])
g.n_vertices()
```

    3
