Metadata-Version: 2.1
Name: git-search-command
Version: 1.0.1
Summary: A simple tool to search the expression in the project scope for GitLab and GitHub repositories.
Home-page: https://github.com/nguyen-ngoc-thach/git-search-command
Author: Nguyen Ngoc Thach
Author-email: thachnguyen1989@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/nguyen-ngoc-thach/git-search-command/issues
Project-URL: Source, https://github.com/nguyen-ngoc-thach/git-search-command
Keywords: gitlab,search,command line,python,git,github
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: License :: OSI Approved :: Apache Software 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.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
Provides-Extra: develop
License-File: LICENSE

# GITLAB SEARCH COMMAND TOOLS

[![PyPI](https://img.shields.io/pypi/v/git-search-command)](https://pypi.org/project/git-search-command/)
[![Last commit](https://img.shields.io/github/last-commit/nguyen-ngoc-thach/git-search-command?color=yellow)](https://github.com/nguyen-ngoc-thach/git-search-command/commits/main)
[![Code style](https://img.shields.io/badge/code%20style-black-blue)](https://github.com/psf/black)
[![Code Quality](https://img.shields.io/github/workflow/status/nguyen-ngoc-thach/git-search-command/Code%20Quality?label=pylint)](https://github.com/nguyen-ngoc-thach/git-search-command/actions)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
[![License](https://img.shields.io/badge/license-Apache-orange)](https://github.com/nguyen-ngoc-thach/git-search-command/blob/main/LICENSE)

A simple tool to search the expression in the project scope for GitLab and GitHub repositories.

## Prerequisites

1. Install [Python3+](https://www.python.org/downloads/).
2. Create a [personal GitLab access token](https://docs.gitlab.com/ee/user/project/settings/project_access_tokens.html) and store it in a secure place.

## Installation

```
python -m pip install --upgrade pip
python -m pip install git-search-command
```

## Environment

After finishing the installation you need to create new environment for searching

```
gsc gl env --new <environment_name>
```

Then input your host name and personal token as following

![](./resources/gsc_setup_env.gif)

See more

```
gsc gl env --help

Usage: gsc gl env [OPTIONS]

  Setup the environment for searching, support multiple environments.

Options:
  -n, --new <environment>      Create new or override the env information if
                               it was existed.
  -d, --default <environment>  Set the environment as default.
  -r, --remove <environment>   Remove the environment.
  -i, --info <environment>     Display the environment info.
  -l, --list                   List all environment.
  -h, --help                   Show this message and exit.
```

## Usage

### Search in project

![](./resources/gsc_search_project.gif)

```
gsc gl search <keywork> --project <project_id>
```

You can find project ID as below image

![](./resources/gsc_find_project_id.png)

### Search in group

![](./resources/gsc_search_group.gif)

```
gsc gl search <keywork> --group <group_id_or_group_path>
```

You can search in group using id or path name. You refer the below image to get them.

![](./resources/gsc_find_group_id.png)

See more

```
$ gsc gl search --help

Usage: gsc gl search [OPTIONS] <keyword>

  Search the content in GitLab repositories.

Options:
  -g, --group <int>           Search in the specified project group, input
                              group id or group path.
  -p, --project <int>         Search in the specified project, input project
                              id.
  -e, --environment <string>  Select the environment for searching, if not
                              declare, default environment has been used.
  -v                          Show result preview, available only when
                              searching project, not in group.
  -o, --output <file_path>    Export the search result to file, only support
                              text file.
  -h, --help                  Show this message and exit.
```

## Development

### Environments

1. [Python 3.7+](https://www.python.org)
2. [Visual Studio Code](https://code.visualstudio.com) with [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) extension.

### Setup

#### Terminal

Create and activate the virtual environment

```
python -m venv .venv
source .venv/bin/activate
```

Then install the dependencies for development environment

```
python -m pip install -e .[develop]
```

#### Vscode task

1. `Ctrl Shift B` to select `Tasks: Run Task`
2. Run `Install DEV environment` task

### Build

#### Terminal

```
python setup.py -v build install
```

#### Vscode task

Run `Build Project` task.

## License

[Apache](https://github.com/nguyen-ngoc-thach/git-search-command/blob/main/LICENSE)

## Reference documents

### GitLab

- [API Project](https://docs.gitlab.com/ee/api/projects.html)
- [API Group](https://docs.gitlab.com/ee/api/groups.html)
- [API Search](https://docs.gitlab.com/ee/api/search.html)

