-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatas.py
More file actions
35 lines (27 loc) · 858 Bytes
/
datas.py
File metadata and controls
35 lines (27 loc) · 858 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
from program import posts, verified, followers, following, bio, followers_nameList, follow_nameList, private, business, business_type
import time
datass = f'''
Number of Posts = {posts}
Number of Followers = {followers}
Number of Following = {following}
Biography Content = {bio}
Profile is Private ? = {private}
Is Business Account ? = {business}
What is Category of Business Account ? = {business_type}
Is Profile Verified ? = {verified}
'''
print(datass)
print("[+] Saving...")
time.sleep(2)
with open("datas.txt", "w") as file:
file.write(datass)
time.sleep(3)
print("Save Successful!")
file.close()
with open("followers.txt", "w") as file2:
for names in followers_nameList:
file2.write(names + "\n")
file2.write("*"*20 + "\n")
for fname in follow_nameList:
file2.write(fname + "\n")
file2.close()