Metadata-Version: 2.4
Name: GitlabParser
Version: 1.0.4
Summary: Gitlab Parser
Author-email: Vitaly Kargin <super_set@mail.ru>
License: MIT
Project-URL: Homepage, https://github.com/superset1/Python_module_Gitlab-Parser
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Requires-Dist: packaging>=20.0
Requires-Dist: cozy_logger>=1.0
Provides-Extra: test
Requires-Dist: pytest>=7.0.0; extra == "test"
Requires-Dist: pytest-cov>=4.0.0; extra == "test"
Dynamic: license-file

# Python module Gitlab Parser

## Installation

```bash
pip install GitlabParser
```

## Usage

```
from GitlabParser import Find

finder = Find(gitlab_token="your_token")
groups = finder.find_all_groups(group_ids=[1, 2, 3])
```
