FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonAuto/createTravelerUsers.py at master · thundercrawl/pythonAuto · GitHub
thundercrawl
/
pythonAuto
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonAuto
/
createTravelerUsers.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (15 loc) · 668 Bytes
Breadcrumbs
pythonAuto
/
createTravelerUsers.py
Copy path
File metadata and controls
21 lines (15 loc) · 668 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
print
'Generarting user list start-------------------->'
mail_user_prefix
=
'mail'
mail_user_start_Num
=
'2501'
mail_user_total
=
'2500'
mail_password
=
'passw0rd'
mail_serverDomain
=
'icssvtbv55013/ibm'
mail_folder
=
'mail'
mail_domain
=
'ibm'
mail_template
=
'mail9.ntf'
fHandle
=
open
(
'c:
\\
userList'
+
mail_user_start_Num
+
'.txt'
,
'w+'
)
for
each
in
range
(
int
(
mail_user_start_Num
),
int
(
mail_user_total
)
+
int
(
mail_user_start_Num
)):
fHandle
.
write
(
mail_user_prefix
+
str
(
each
)
+
';;;;'
+
mail_password
+
';;;'
+
mail_serverDomain
+
';'
+
mail_folder
+
';;;;;;'
+
mail_user_prefix
+
str
(
each
)
+
'@'
+
mail_domain
+
';;;;'
+
mail_template
+
'
\n
'
)
fHandle
.
close
()
print
'done!'
Back
|
FazBrowse Home
|
New Git URL