aspacek / Letterboxd-various

This repository contains various Letterboxd programs I've created.
0 stars 0 forks source link

Genres are being ignore at the moment #8

Closed aspacek closed 4 years ago

aspacek commented 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']

aspacek commented 4 years ago

Fixed: https://github.com/aspacek/Letterboxd-various/commit/441a8919a440b341ebb61c96f769909031abc115