Closed aspacek closed 4 years ago
Need to reinstate the selection based on genres, maybe add some hybrids (romcom, romdram, ...). Main thing to figure out is how to cut up a string like "blah dee bleh hee" into 4 distinct strings, "blah", "dee", "bleh", and "hee". Maybe:
str = "blah dee bleh hee" newstrings = str.split(' ') print(newstrings) ['blah', 'dee', 'bleh', 'hee']
Fixed: https://github.com/aspacek/Letterboxd-various/commit/441a8919a440b341ebb61c96f769909031abc115
Need to reinstate the selection based on genres, maybe add some hybrids (romcom, romdram, ...). Main thing to figure out is how to cut up a string like "blah dee bleh hee" into 4 distinct strings, "blah", "dee", "bleh", and "hee". Maybe:
str = "blah dee bleh hee" newstrings = str.split(' ') print(newstrings) ['blah', 'dee', 'bleh', 'hee']