A command-line tool and library for checking VBV status and performing BIN lookups.
Project description
VBV Status Checker (vbvstatus)
A simple Python package for checking VBV (Verified by Visa) status and performing BIN (Bank Identification Number) lookups directly from your command line or Python script.
Features
- Command Line Interface (CLI): Quickly check status using the
vbvstatuscommand. - Library Integration: Easily integrate the checking logic into your Python applications.
- VBV Status: Checks VBV status against a local, bundled database.
- BIN Lookup: Uses the
https://bins.antipublic.cc/API for detailed bank information. - Owner Credit: Includes the owner's credit (
@unik_xd) in the response.
Installation
You can install the package using pip:
```bash pip install vbvstatus ```
Usage
Command Line
Run the vbvstatus command followed by the card details in the format cc|mm|yy|cvv:
```bash vbvstatus 4000050000000000|12|25|123 ```
Example Output:
```json { "status": "SUCCESS", "cc_bin": "400005", "vbv_status": "3D TRUE ❌", "bin_lookup": { "bin": "400005", "brand": "VISA", "type": "DEBIT", "level": "CLASSIC", "country": "UNITED STATES", "country_code": "US", "bank": "WELLS FARGO BANK, N.A.", "url": "www.wellsfargo.com", "phone": "1-800-869-3557" }, "owner": "@unik_xd", "time_taken": "0.54s" } ```
Python Library
You can import the check function directly into your Python code:
```python from vbvstatus import check
cc_data = "4000050000000000|12|25|123" result = check(cc_data)
import json print(json.dumps(result, indent=4)) ```
Data Source
The VBV status data is bundled with the package in vbvbin.txt. The BIN lookup is performed via the external API: https://bins.antipublic.cc/.
Disclaimer
This tool is provided for educational and authorized testing purposes only. Use responsibly. ```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vbvstatus-0.1.0.tar.gz.
File metadata
- Download URL: vbvstatus-0.1.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e257d036bb7441fe227457fd5acc874b3324343fbeea1e3eaff7d7f9f29e49df
|
|
| MD5 |
e081f866ab6317e91e3a1f4f0c36fa68
|
|
| BLAKE2b-256 |
8582c259da30be43b92cfcaf41efa65ba8e4a0f4e00ce79cfa15bed95eda070c
|
File details
Details for the file vbvstatus-0.1.0-py3-none-any.whl.
File metadata
- Download URL: vbvstatus-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a5081ada6f5db8401f9e17376ca61bb54318a2bf8ba19bde34381224dddb73f
|
|
| MD5 |
877e0856f8ef5422723b38857357304f
|
|
| BLAKE2b-256 |
0b10a623833c6e1438a5d08121584231a0e4070c4085a2162eac53edfe3983e5
|