Metadata-Version: 2.4
Name: autopypack
Version: 1.0.1
Summary: Automatically installs missing Python libraries when running your code.
Home-page: https://github.com/harshRaj1601/AutoPyPack
Author: Harsh Jaiswal
Author-email: harshrajjaiswal16012003@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: setuptools
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# AutoPyPack

AutoPyPack is a tool that automatically installs missing Python libraries in your projects.

## Features

- Scans your Python project for imports
- Detects missing packages
- Automatically installs missing packages using pip
- Uses a comprehensive mapping of import names to package names
- Works as both a CLI tool and an importable module

## Installation

```bash
pip install autopypack
```

Or install from source:

```bash
git clone https://github.com/harshRaj1601/AutoPyPack
cd autopypack
pip install -e .
```

## Usage

### Method 1: As an importable module (recommended)

Simply import AutoPyPack at the top of your Python file, and it will automatically scan for imports and install missing packages:

```python
import AutoPyPack

# Rest of your code with imports
import numpy as np
import pandas as pd
# ...
```

You can also use AutoPyPack programmatically:

```python
import AutoPyPack

# Scan and install packages for the current directory
AutoPyPack.install()

# Scan and install packages for a specific directory
AutoPyPack.install('/path/to/your/project')

# Scan and install packages for a specific file
AutoPyPack.scan_file('/path/to/your/file.py')
```

### Method 2: Using the CLI

AutoPyPack provides two main commands through its CLI: `install` and `list`.

#### Install all missing packages in a project

```bash
autopypack install
```

Or use the short form:

```bash
autopypack i
```

Options:
- `--dir`, `-d`: Specify a different directory to scan (default: current directory)
- `--quiet`, `-q`: Suppress informational output

Example:
```bash
autopypack install --dir /path/to/your/project --quiet
```

#### List all external packages used in a project

```bash
autopypack list
```

Or use the short form:

```bash
autopypack l
```

Options:
- `--dir`, `-d`: Specify a different directory to scan (default: current directory)
- `--quiet`, `-q`: Only output package names without additional info (useful for generating requirements.txt)

Example:
```bash
# List packages with detailed output
autopypack list --dir /path/to/your/project

# Generate requirements.txt
autopypack list --quiet > requirements.txt
```





## How it works

1. AutoPyPack scans all Python files in your project
2. It extracts all import statements and identifies unique module names
3. It checks if each module is available in your Python environment
4. For missing modules, it determines the correct package name using a mapping system
5. It installs missing packages using pip

## License

MIT
