supracodes / cli-venmo-account-checker
There is no license information available for the latest version (v1.0.2) of this package.
A command-line application for efficiently checking multiple Venmo accounts.
v1.0.2
2023-06-13 16:24 UTC
Requires
- php: ^8.1
- spatie/fork: ^1.2
Requires (Dev)
- guzzlehttp/guzzle: ^7.5
- illuminate/http: ^10.0
- laravel-zero/framework: ^10.0.2
- laravel/pint: ^1.8
- mockery/mockery: ^1.5.1
- nunomaduro/termwind: ^1.15.1
- pestphp/pest: ^2.5
This package is not auto-updated.
Last update: 2025-04-03 00:01:25 UTC
README
Performs a bulk validation of Venmo accounts. Validates if each account in the provided list is a legitimate Venmo account.
Usage
venmo [--accountList=list.txt] [--proxy=PROXY] [--threadCount=10]
Options
--accountList=list.txt
: Path to the file containing the list of Venmo accounts to validate. (default: list.txt)--proxy=PROXY
: Proxy configuration to use. Use [random(length)] to generate a random string. Example: socks5: //user-s-[random(10)]:pass@host:port--threadCount=10
: Number of concurrent threads to use during validation. (default: 10)
Description
This command initiates the process to validate Venmo accounts by performing bulk validation. It takes a list of Venmo accounts as input and checks if each account is a legitimate Venmo account.
Examples
Validate Venmo accounts using the default list file:
venmo
Validate Venmo accounts using a custom list file:
venmo --accountList=custom_list.txt
Validate Venmo accounts using a proxy configuration:
venmo --proxy=socks5://user:pass@host:port
Validate Venmo accounts with a specific number of concurrent threads:
venmo --threadCount=5