Metadata-Version: 2.1
Name: pygitlabapi
Version: 1.0.1
Summary: pygitlabapi facilitates the usage of gitlab apis inside a python module or in command line
Home-page: https://github.com/stormalf/pygitlabapi
Author: Stormalf
Author-email: stormalf.dev@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/stormalf/pygitlabapi/issues
Project-URL: Source, https://github.com/stormalf/pygitlabapi
Keywords: pygitlabapi
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# pygitlabapi

pygitlabapi contains some functions to facilitate the usage of gitlab apis inside python modules or in command line.

[The source for this project is available here][src].

---

Example of importing gitlabapi inside a python module :

    import os
    from pygitlabapi import gitlabApi

    iurl = "https://gitlab.com/api/v4"
    ijson = "project.json"
    imethod="POST"
    iapi = "/projects"
    iuser= os.environ.get("GITLAB_USER")
    itoken = os.environ.get("GITLAB_TOKEN")
    message= gitlabApi.rungitlabApi(api=iapi, method=imethod, url=iurl, user=iuser, token=itoken, json=ijson )
    print(message)

---

[packaging guide]: https://packaging.python.org
[distribution tutorial]: https://packaging.python.org/tutorials/packaging-projects/
[src]: https://github.com/stormalf/pygitlabapi
[rst]: http://docutils.sourceforge.net/rst.html
[md]: https://tools.ietf.org/html/rfc7764#section-3.5 "CommonMark variant"
[md use]: https://packaging.python.org/specifications/core-metadata/#description-content-type-optional

## Release notes 

1.0.0 Initial version

1.0.1 Managing http error codes

