Gitlab-API
==============

Gitlab API Generated from Gitlab Docs with Gitlab-API-Generator project

Gitlab-API is distributed under the Apache License, version 2.0.

***************
Installation
***************
pip install gl-api or pip install gl-api==version

***************
Basic Usage
***************

$ python

>> from glapi import GlAPI

>> gl = GlAPI("gitlab_host_with_http_or_https")

>> gl.login(login="username", password="password")

>> gl.get_projects()


