forked from y0un355/Edu.Emails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_me.py
21 lines (17 loc) · 799 Bytes
/
run_me.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from pages.accountDetails import AccountDetail
from pages.costa import Costa
print('''
Welcome, Hope you are having a good day.
By: Anwar MEQOR
''')
print("|=================================|")
print("| |")
print("| PLEASE USE 'USA' VPN |")
print("| |")
print("|=================================|")
email = input("Enter your email (do not enter Fake) : ")
accountdetails = AccountDetail()
info = accountdetails.getInfo()
print(info)
costa = Costa(info, email)
costa.start_process()