9 lines
166 B
Python
Executable File
9 lines
166 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Script to be called by cron to update all feeds periodically.
|
|
"""
|
|
import database
|
|
|
|
if __name__ == "__main__":
|
|
database.update_all_feeds()
|