-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcaptions.py
85 lines (75 loc) · 2.73 KB
/
captions.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
# Edit or Add Captions following the examples present below
# For adding Instagram Captions, use self.add_insta_caps(()
# For adding Twitter Captions, use self.add_twitter_caps()
# Please do these below line 19
class Caption:
def __init__(self):
self.insta_caps = []
self.twitter_caps = []
self.facebook_caps = []
def add_insta_caps(self, string):
self.insta_caps.append(string)
def add_twitter_caps(self, string):
self.twitter_caps.append(string)
def add_facebook_caps(self, string):
self.facebook_caps.append(string)
def default_add(self):
self.add_insta_caps(
"""Follow @einteresting
.
.
.
.
.
#dankmemes #memes #dank #meme #funny #funnymemes #lol
#edgymemes #lmao #memesdaily #dankmeme #offensivememes
#comedy #offensive #follow #like #funnyvideos #fortnitememes
#haha #oof
"""
)
self.add_insta_caps(
"""Follow @einteresting
.
.
.
.
#meme #memes #funny #dankmemes #dank #lol
#memesdaily #lmao #funnymemes #follow
#fortnite #like #edgy #dankmeme #edgymemes
#comedy #cringe #humor #funnyvideos #lmfao
#instagram #hilarious #oof #savage"""
)
self.add_insta_caps(
"""Follow @einteresting
.
.
.
.
.
#laugh #gaming #minecraft #cancer #music #f #funnymeme
#instagood #kpop #edgymeme #love #roblox #joke #viral #lit
#memepage #ifunny #lilpump #rofl #life #donaldtrump
"""
)
self.add_insta_caps(
"""Follow @einteresing
.
.
.
.
#funny #funnymeme #funnymemes #memes #meme #funnytext
# funnyvideos #hilarious #crazy #humor #epic #instafun
"""
)
self.add_twitter_caps(
"Follow @E__interesting for more #funny #lol #memes #follow"
)
self.add_twitter_caps(
"Follow @E__interesting for more #follow #dankmemes #reddit"
)
self.add_twitter_caps(
"Follow @E__interesting for more #edgymemes #comedy #retweet"
)
self.add_facebook_caps("Follow @SomeGuy for more #funny #lol #memes #follow")
self.add_facebook_caps("Follow @SomeGuy for more #follow #dankmemes #reddit")
self.add_facebook_caps("Follow @RandomGuy for more #edgymemes #comedy #retweet")