NetworkX is a very popular Python library, that handles various use-cases of the Graph Data Structure.
This project intends to provide a working alternative to the Ruby community, by closely mimicing as many features as possible.
- install it yourself as:
$ gem install networkx
- Or use Bundler & Gemfile
- add this line to your application's Gemfile:
gem 'networkx'
- And then execute:
$ bundle install
require 'networkx'
g = NetworkX::Graph.new
g.add_edge('start', 'stop')
You can read Document for this library.
Your contributions are always welcome!
Please have a look at the contribution guidelines first. 🎉
The MIT License 2017 - Athitya Kumar.
Please have a look at the LICENSE.md for more details.