-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.py
More file actions
executable file
·23 lines (20 loc) · 799 Bytes
/
run.py
File metadata and controls
executable file
·23 lines (20 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
"""Play through Metafilter Music one song at a time"""
# __ __ _ __ _ _ _ _
# | \/ | ___| |_ __ _ / _(_) __| | __| | | ___ _ __
# | |\/| |/ _ \ __/ _` | |_| |/ _` |/ _` | |/ _ \ '__|
# | | | | __/ || (_| | _| | (_| | (_| | | __/ |
# |_| |_|\___|\__\__,_|_| |_|\__,_|\__,_|_|\___|_|
#
# ----------------------------------------------------------------------------
# Desperately cruising the desolate information superhighway for tunes, man...
# Tunes.
#
# Pollock, 2019
# ============================================================================
# Command line promises made and undelivered:
# need to pass --config_file down into metafiddler.config
from metafiddler.main import Run
if __name__ == "__main__":
run = Run()
run.main()