Metadata-Version: 2.2
Name: mlcoder
Version: 0.1.3
Summary: MLCoder is a Python package that provides a collection of frequently used code snippets for Machine Learning, offering a command-line interface (CLI) to search and copy files from its built-in repository. Users can easily install it via PyPI or GitHub and leverage its simple commands to quickly access useful scripts.
Home-page: https://github.com/hissain/mlcoder
Author: Md. Sazzad Hissain Khan
Author-email: hissain.khan@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# MLCoder

MLCoder is a Python package that provides a collection of frequently used code snippets for Machine Learning, offering a command-line interface (CLI) to search and copy files from its built-in repository. Users can easily install it via PyPI or GitHub and leverage its simple commands to quickly access useful scripts.

## Installation

You can install MLCoder from PyPI:

```sh
pip install mlcoder
```

Alternatively, install it directly from GitHub:

```sh
pip install git+https://github.com/hissain/mlcoder.git
```

## Usage

MLCoder provides a CLI utility to search and copy files from the package's `files` directory.

### Commands

- **`search`**: Search for files in the package's `files` directory.
- **`copy`**: Copy a specified file from the package's `files` directory to the current working directory.

### Examples

#### Search for a file

To search for files containing a specific term:

```sh
mlcoder search <search_term>
```

**Example:**

```sh
mlcoder search pretty
```

#### Copy a file

To copy a file from the package's `files` directory to the current working directory:

**Example:**

```sh
mlcoder copy pretty_print.py
```

## Project Links

- **GitHub:** [MLCoder Repository](https://github.com/hissain/mlcoder)
- **PyPI:** [MLCoder Package](https://pypi.org/project/mlcoder)

## License

This project is licensed under the MIT License.

