Add docstring to top of main timesearch.py launch file.
This commit is contained in:
parent
b98f096fd4
commit
a56451108d
1 changed files with 8 additions and 1 deletions
|
@ -1,10 +1,17 @@
|
||||||
|
'''
|
||||||
|
This is the main launch file for Timesearch.
|
||||||
|
|
||||||
|
When you run `python timesearch.py get_submissions -r subredditname` or any
|
||||||
|
other command, your arguments will first go to timesearch_modules\__init__.py,
|
||||||
|
then into timesearch_modules\get_submissions.py as appropriate for your command.
|
||||||
|
'''
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
handler = logging.StreamHandler()
|
handler = logging.StreamHandler()
|
||||||
log_format = '{levelname}:timesearch.{module}.{funcName}: {message}'
|
log_format = '{levelname}:timesearch.{module}.{funcName}: {message}'
|
||||||
handler.setFormatter(logging.Formatter(log_format, style='{'))
|
handler.setFormatter(logging.Formatter(log_format, style='{'))
|
||||||
logging.getLogger().addHandler(handler)
|
logging.getLogger().addHandler(handler)
|
||||||
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import timesearch_modules
|
import timesearch_modules
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue