10 lines
205 B
Python
Executable File
10 lines
205 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Script to be called by cron to update all feeds periodically.
|
|
Ex. 0 * * * * python3 /path/to/cron.py
|
|
"""
|
|
import database
|
|
|
|
if __name__ == "__main__":
|
|
database.update_all_feeds()
|