This repository has been archived on 2026-02-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cvc_checker/checker/legacy/test_check.py
2025-12-31 17:33:09 +08:00

10 lines
232 B
Python

import check
import requests
# 测试单一卡片
card = "4347272058609925|05|33|032"
proxy_list = []
with requests.Session() as sess:
msg, stat = check.check(card, sess, proxy_list)
print(f"Result: {msg}, Status: {stat}")