mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 00:15:02 -04:00
Discover recent/popular movies
This commit is contained in:
parent
0312dcaf83
commit
002740d551
15
build-data/Discover.groovy
Executable file
15
build-data/Discover.groovy
Executable file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env filebot -script
|
||||
|
||||
def recentMoviesFile = new File('recent-movies.txt')
|
||||
def recentMoviesIndex = (recentMoviesFile.exists() ? recentMoviesFile.readLines('UTF-8') : []) as TreeSet
|
||||
|
||||
def toDate = LocalDate.now()
|
||||
def fromDate = LocalDate.now().minus(Period.ofDays(30))
|
||||
|
||||
TheMovieDB.discover(fromDate, toDate, Locale.ENGLISH).each{ m ->
|
||||
if (recentMoviesIndex.add([m.tmdbId.pad(6), m.year, m.name].join('\t'))) {
|
||||
println m
|
||||
}
|
||||
}
|
||||
|
||||
recentMoviesIndex.join('\n').saveAs(recentMoviesFile)
|
Loading…
Reference in New Issue
Block a user