Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update Documentation #1

Merged
merged 2 commits into from
Nov 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,19 @@ Vulnerability Manager (GVM).

.. note:: **python-gvm** requires at least Python 3.5. Python 2 is not supported.

User Guide
----------

This sections explains how to install python-gvm and shows example use cases.

.. toctree::
:maxdepth: 2

install
userguide
usage

The API Documentation / Guide
-----------------------------
The API Documentation
---------------------

If you are looking for information on a specific function, class, or method,
this part of the documentation is for you.
Expand Down
42 changes: 40 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,42 @@
.. _install:

Installation
============
Installation of python-gvm
==========================

Using pip
---------

You can install the latest stable release of python-gvm from the Python Package
Index using `pip`_::

pip install gvm


Using pipenv
------------

If you are developing an application or library that uses **python-gvm**
internally it is often better to choose `pipenv`_ for handling your
dependencies.::

pipenv install gvm

If you aren't using `pipenv`_ yet head over to the pipenv website for
installation instructions.

Getting the Source
------------------

The source code of python-gvm can be found at
`Github <https://github.com/greenbone/python-gvm>`_.

To clone the public repository run::

git clone git://github.com/greenbone/python-gvm

Once you have a copy of the source, you can embed it in your own application::

pip install -e /path/to/python-gvm

.. _pip: https://pip.pypa.io/
.. _pipenv: http://pipenv.org/
6 changes: 3 additions & 3 deletions docs/userguide.rst → docs/usage.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _userguide:
.. _usage:

Userguide
=========
Usage
=====

Introduction
------------
Expand Down