-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClass.py
109 lines (95 loc) · 2.85 KB
/
Class.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
import pickle
from update_file import render
import os
import msvcrt as m
def wait():
print("\nEnter to continue .... ")
m.getch()
class Person:
def __init__(self,name="",number=None, desc=""):
p=None
try:
with open("ID.txt","r") as f:
p=f.read()
p=int(p)+1
#print(p,"H")
except:
p=1
with open("ID.txt","w") as f:
f.write(str(p))
self.id=p #None
self.name=name
self.number=number
self.desc=desc
self.followers=[]
self.following=[]
self.visited=False
def get_followers_count(self):
return len(self.followers)
def get_following_count(self):
return len(self.following)
def display_details(self):
print("\n\n Name - ",self.name,"\n",
"Number - ",self.number ,"\n\n",
"Description \n\n",self.desc,"\n\n",
"Followers - ",self.get_followers_count(),"\n",
"Following - ",self.get_following_count(),"\n\n")
def display_followers(self):
print("Followers Count - ",self.get_followers_count())
A=render(self.followers)
for i in A:
wait()
os.system('cls')
print("Followers Count - ",self.get_followers_count())
i.display_details()
self.mutual_followers(i)
self.mutual_following(i)
def display_following(self):
print("Following Count - ",self.get_following_count())
A=render(self.following)
#print(len(A))
for i in A:
wait()
os.system('cls')
print("Followers Count - ",self.get_followers_count())
i.display_details()
self.mutual_followers(i)
self.mutual_following(i)
def mutual_followers(self,obj):
P=[]
#A=render(self.followers)
#B=render(obj.followers)
for i in self.followers:
if i in obj.followers:
P.append(i)
print("Total ",len(P)," mutual followers ")
for i in render(P):
print(i.name,end=" ")
print()
def mutual_following(self,obj):
P=[]
#A=render(self.following)
#B=render(obj.following)
for i in self.following:
if i in obj.following:
P.append(i)
print("Total ",len(P)," mutual following ")
for i in render(P):
print(i.name,end=" ")
print()
'''
P=Person("Pulkit",7838011378,"PK")
A=Person("Aka",9999999999,"aa")
AA=Person("Akanshita",5435923490,"Heya !")
P.following.append(A.id)
A.followers.append(P.id)
A.following.append(AA.id)
AA.followers.append(A.id)
f=open("Users.txt","wb")
pickle.dump(P,f)
pickle.dump(A,f)
pickle.dump(AA,f)
f.close()
print(P.display_following())
print("Done")
'''