-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainSelect.py
73 lines (66 loc) · 3.08 KB
/
mainSelect.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
import Erotima1
import Erotima2
import Erotima4
import Erotima3
import Erotima5
import AstraConnect
def Erotima2Selection():
titlesList = ['Jumanji'] + Erotima2.RandomizeFullDetailsQueries(9)
Erotima2.SelectFullDetails(AstraConnect.QuorumProfile, titlesList)
Erotima2.SelectFullDetails(AstraConnect.AllProfile, titlesList)
Erotima2.SelectFullDetails(AstraConnect.OneProfile, titlesList)
def Erotima3Selection():
genresList = ['Adventure', 'Comedy', 'Documentary', 'Drama', 'Romance', 'Action', 'Crime', 'Horror', 'Sci-Fi', 'Western']
file = open("Erotima3.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.QuorumProfile) + " times:\n")
file.close()
for i in range(0, len(genresList)):
Erotima3.SelectGenreByYear(AstraConnect.QuorumProfile, genresList[i])
file = open("Erotima3.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.AllProfile) + " times:\n")
file.close()
for i in range(0, len(genresList)):
Erotima3.SelectGenreByYear(AstraConnect.AllProfile, genresList[i])
file = open("Erotima3.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.OneProfile) + " times:\n")
file.close()
for i in range(0, len(genresList)):
Erotima3.SelectGenreByYear(AstraConnect.OneProfile, genresList[i])
def Erotima5Selection():
tagsList = ['comedy', 'boring', 'war', 'family', 'sci-fi', 'light', 'animation', 'dark', 'classic', 'zombies']
file = open("Erotima5.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.QuorumProfile) + " times:\n")
file.close()
for i in range(0, len(tagsList)):
Erotima5.SelectTags(AstraConnect.QuorumProfile, tagsList[i])
file = open("Erotima5.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.AllProfile) + " times:\n")
file.close()
for i in range(0, len(tagsList)):
Erotima5.SelectTags(AstraConnect.AllProfile, tagsList[i])
file = open("Erotima5.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.OneProfile) + " times:\n")
file.close()
for i in range(0, len(tagsList)):
Erotima5.SelectTags(AstraConnect.OneProfile, tagsList[i])
def Erotima4Selection():
wordsList = ['star', 'friend', 'war', 'family', 'toy', 'light', 'dragon', 'knight', 'opera', 'world']
file = open("Erotima4.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.QuorumProfile) + " times:\n")
file.close()
for i in range(0, len(wordsList)):
Erotima4.SelectTitle(AstraConnect.QuorumProfile, wordsList[i])
file = open("Erotima4.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.AllProfile) + " times:\n")
file.close()
for i in range(0, len(wordsList)):
Erotima4.SelectTitle(AstraConnect.AllProfile, wordsList[i])
file = open("Erotima4.txt", "a")
file.write(AstraConnect.ProfileToString(AstraConnect.OneProfile) + " times:\n")
file.close()
for i in range(0, len(wordsList)):
Erotima4.SelectTitle(AstraConnect.OneProfile, wordsList[i])
Erotima2Selection()
Erotima3Selection()
Erotima4Selection()
Erotima5Selection()