Metadata-Version: 2.4
Name: stripechargev2
Version: 0.1.0
Summary: A professional CLI tool for simulating Stripe $2 charge checks with detailed card and BIN information.
Home-page: https://github.com/GunYamazakii/stripechargev2
Author: GunYamazakii
Author-email: gunyamazakii@example.com
License: MIT
Keywords: stripe,charge,checker,bin,payment,cli
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: rich

# StripeChargeV2

A professional command-line interface (CLI) tool for simulating Stripe $2 charge checks. This tool is designed to parse card details, perform a simulated BIN lookup, and provide a clear, formatted response for "Approved" or "Declined" statuses.

## Features

*   **Card Parsing:** Accepts card details in the `cc|mm|yy|cvv` format.
*   **Simulated BIN Lookup:** Provides mock details for the card's Bank Identification Number (BIN).
*   **Professional Output:** Uses the `rich` library for clean, color-coded terminal output.
*   **Charge Simulation:** Simulates a $2 charge attempt, returning a clear status.

## Installation

```bash
pip install stripechargev2
```

## Usage

The tool is run directly from the command line:

```bash
stripechargev2 <card_details>
```

**Example:**

```bash
stripechargev2 4000000000000000|12|25|123
```

## Disclaimer

**This tool provides a SIMULATED charge check.** It does not connect to the live Stripe API by default. The core logic is designed to be easily extended by the user to integrate with a secure, server-side Stripe implementation. **DO NOT** use this tool for any illegal or unauthorized activities.
