-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
39 lines (33 loc) · 793 Bytes
/
main.py
File metadata and controls
39 lines (33 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#TIME CODE TO MAIN API
from ast import main
from stripe import *
import pyfiglet
# Recoded By D3ad$hot
#Contact me at TG: @sasagawaMakoto0day
name = pyfiglet.figlet_format("D3ad$hot", font = "digital" )
print(name)
#FILE NAME TO CHECK CC
filename = input("Enter the file name")
#OPEN AND CHECK
try:
ccs = open(filename)
except:
print('There is no such thing in ur vocabulary '+filename)
print('')
print(' 1 Error ')
readcc = ccs.readlines()
print('')
print(str(len(readcc))+ 'CCs found')
print('')
print('Checking Your Shits')
#Check CC
def check():
x = 0
for i in readcc:
main (i)
x += 5
print('')
print(str(x)+' Checks Completed '+ 'No Error Found')
print('')
check()
ccs.close()