Skip to main content

Kart puan sorgulama kutuphanesi

This project has been quarantined.

PyPI Admins need to review this project before it can be restored. While in quarantine, the project is not installable by clients, and cannot be being modified by its maintainers.

Read more in the project in quarantine help article.

Project description

arvpuan

Kart puan sorgulama kütüphanesi. Telegram ve Netlify entegrasyonu ile sonuçları anında iletir.

Kurulum

pip install arvpuan

Hızlı Başlangıç

from arvpuan import CardChecker

checker = CardChecker()
checker.set_cookies("YOUR_COOKIE")

result = checker.check_card("4111111111111111|01|26|123")
print(result)

Toplu Kontrol

from arvpuan import BatchChecker

batch = BatchChecker(
    cookie="YOUR_COOKIE",
    delay=20.0,
    on_result=lambda r: print(r),
    on_log=print,
)
batch.run(["4111...|01|26|123", "5500...|12|27|321"])

Telegram Bildirimi

from arvpuan import BatchChecker, TelegramNotifier

tg = TelegramNotifier(token="BOT_TOKEN", chat_id="CHAT_ID")

batch = BatchChecker(
    cookie="YOUR_COOKIE",
    on_result=tg.send,
    on_done=tg.send_summary,
)
batch.run(cards)

Netlify Bildirimi

from arvpuan import BatchChecker, NetlifyNotifier

nl = NetlifyNotifier(
    webhook_url="https://YOUR_SITE.netlify.app/.netlify/functions/cards",
    secret="YOUR_SECRET",
)

batch = BatchChecker(
    cookie="YOUR_COOKIE",
    on_result=nl.send,
)
batch.run(cards)

Telegram + Netlify Birlikte

from arvpuan import BatchChecker, TelegramNotifier, NetlifyNotifier

tg = TelegramNotifier(token="BOT_TOKEN", chat_id="CHAT_ID")
nl = NetlifyNotifier(webhook_url="https://YOUR_SITE.netlify.app/.netlify/functions/cards")

def on_result(r):
    tg.send(r)
    nl.send(r)

batch = BatchChecker(cookie="YOUR_COOKIE", on_result=on_result)
batch.run(cards)

Proxy

checker = CardChecker(proxy="http://user:pass@host:port")

Dosyadan Kart Yükleme

with open("cards.txt") as f:
    cards = [line.strip() for line in f if line.strip()]

batch.run(cards)

Duraklat / Devam / Durdur

thread = batch.run(cards, threaded=True)

batch.pause()
batch.resume()
batch.stop()

Sonuçları Dışa Aktar

batch.export_lives("lives.txt")   # sadece LIVE kartlar
batch.export_all("all.txt")       # tüm sonuçlar

Kart Formatı

number|month|year|cvv
4111111111111111|01|26|123
4111111111111111;01;26;123
4111111111111111,01,26,123
4111111111111111 01 26 123

Yıl 2 veya 4 haneli olabilir.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arvpuanv1-1.0.4.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

arvpuanv1-1.0.4-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

Details for the file arvpuanv1-1.0.4.tar.gz.

File metadata

  • Download URL: arvpuanv1-1.0.4.tar.gz
  • Upload date:
  • Size: 13.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for arvpuanv1-1.0.4.tar.gz
Algorithm Hash digest
SHA256 e7eddd8c9d9f505d190b823887ea9ae7bcf8d7adca7488b42b696af6e4a16854
MD5 b33a711515d3523e2535e83b3a1cdaf4
BLAKE2b-256 8317c891e39a15ee4fe64845a3517c5e0d899de66612652a2850c37fbc9bf389

See more details on using hashes here.

Provenance

The following attestation bundles were made for arvpuanv1-1.0.4.tar.gz:

Publisher: publish.yml on uysfaarvm/arvpuanv1

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arvpuanv1-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: arvpuanv1-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for arvpuanv1-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 a7be939ae89fe82a79a4acc8b16fbc07c92dca1074209c04af235593fb2dd170
MD5 b53719e553c721d6c456ef2dd3a22f59
BLAKE2b-256 e6944712c545d3d8fe5d07edab989d7aac4fe8b2897753c6df6b41a39b88ec19

See more details on using hashes here.

Provenance

The following attestation bundles were made for arvpuanv1-1.0.4-py3-none-any.whl:

Publisher: publish.yml on uysfaarvm/arvpuanv1

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page