-
Notifications
You must be signed in to change notification settings - Fork 12.5k
/
Copy pathcli_master.py
136 lines (119 loc) · 3.37 KB
/
cli_master.py
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import os
import sys
from pprint import pprint
import sys
sys.path.append(os.path.realpath("."))
import inquirer # noqa
# Take authentication input from the user
questions = [
inquirer.List(
"authentication", # This is the key
message="Choose an option",
choices=["Login", "Sign up", "Exit"],
),
]
answers = inquirer.prompt(questions)
# Just making pipelines
class Validation:
def phone_validation():
# Think over how to make a validation for phone number?
pass
def email_validation():
pass
def password_validation():
pass
def username_validation():
pass
def country_validation():
# All the countries in the world???
# JSON can be used.
# Download the file
def state_validation():
# All the states in the world??
# The state of the selected country only.
pass
def city_validation():
# All the cities in the world??
# JSON can be used.
pass
# Have an option to go back.
# How can I do it?
if answers["authentication"] == "Login":
print("Login")
questions = [
inquirer.Text(
"username",
message="What's your username?",
validate=Validation.login_username,
),
inquirer.Text(
"password",
message="What's your password?",
validate=Validation.login_password,
),
]
elif answers["authentication"] == "Sign up":
print("Sign up")
questions = [
inquirer.Text(
"name",
message="What's your first name?",
validate=Validation.fname_validation,
),
inquirer.Text(
"surname",
message="What's your last name(surname)?, validate=Validation.lname), {name}?",
),
inquirer.Text(
"phone",
message="What's your phone number",
validate=Validation.phone_validation,
),
inquirer.Text(
"email",
message="What's your email",
validate=Validation.email_validation,
),
inquirer.Text(
"password",
message="What's your password",
validate=Validation.password_validation,
),
inquirer.Text(
"password",
message="Confirm your password",
validate=Validation.password_confirmation,
),
inquirer.Text(
"username",
message="What's your username",
validate=Validation.username_validation,
),
inquirer.Text(
"country",
message="What's your country",
validate=Validation.country_validation,
),
inquirer.Text(
"state",
message="What's your state",
validate=Validation.state_validation,
),
inquirer.Text(
"city",
message="What's your city",
validate=Validation.city_validation,
),
inquirer.Text(
"address",
message="What's your address",
validate=Validation.address_validation,
),
]
# Also add optional in the above thing.
# Have string manipulation for the above thing.
# How to add authentication of google to command line?
elif answers["authentication"] == "Exit":
print("Exit")
sys.exit()
pprint(answers)