Metadata-Version: 2.4
Name: GitlabParser
Version: 1.0.0
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
Dynamic: license-file

# Python module Gitlab Parser

## Installation

```bash
pip install GitlabParser
```

## Usage

```
from GitlabParser import Logger, Find

Logger = Logger()
logger = Logger.get_logger()
if Logger.LOG_FILE:
    print(f"See log here: {Logger.LOG_FILE}")

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