Rename getstyles.py -> get_styles.py.

This commit is contained in:
Ethan Dalool 2020-01-27 18:53:19 -08:00
parent 2022db2b0c
commit 6b0dd55431
2 changed files with 14 additions and 13 deletions

View file

@ -27,7 +27,7 @@ Commands for collecting:
{get_submissions} {get_submissions}
{get_comments} {get_comments}
{livestream} {livestream}
{getstyles} {get_styles}
{getwiki} {getwiki}
Commands for processing: Commands for processing:
@ -92,11 +92,11 @@ get_comments:
If provided, print extra information to the screen. If provided, print extra information to the screen.
''', ''',
'getstyles': ''' 'get_styles': '''
getstyles: get_styles:
Collect the stylesheet, and css images. Collect the stylesheet, and css images.
> timesearch.py getstyles -r subredditname > timesearch.py get_styles -r subredditname
''', ''',
'getwiki': ''' 'getwiki': '''
@ -268,6 +268,7 @@ get_submissions:
OLD_COMMAND_ALIASES = { OLD_COMMAND_ALIASES = {
'timesearch': 'get_submissions', 'timesearch': 'get_submissions',
'commentaugment': 'get_comments', 'commentaugment': 'get_comments',
'getstyles': 'get_styles',
'redmash': 'index', 'redmash': 'index',
} }
@ -307,9 +308,9 @@ def get_comments_gateway(args):
from . import get_comments from . import get_comments
get_comments.get_comments_argparse(args) get_comments.get_comments_argparse(args)
def getstyles_gateway(args): def get_styles_gateway(args):
from . import getstyles from . import get_styles
getstyles.getstyles_argparse(args) get_styles.get_styles_argparse(args)
def getwiki_gateway(args): def getwiki_gateway(args):
from . import getwiki from . import getwiki
@ -355,9 +356,9 @@ p_get_comments.add_argument('-l', '--lower', dest='lower', default='update')
p_get_comments.add_argument('-up', '--upper', dest='upper', default=None) p_get_comments.add_argument('-up', '--upper', dest='upper', default=None)
p_get_comments.set_defaults(func=get_comments_gateway) p_get_comments.set_defaults(func=get_comments_gateway)
p_getstyles = subparsers.add_parser('getstyles') p_get_styles = subparsers.add_parser('get_styles', aliases=['getstyles'])
p_getstyles.add_argument('-r', '--subreddit', dest='subreddit') p_get_styles.add_argument('-r', '--subreddit', dest='subreddit')
p_getstyles.set_defaults(func=getstyles_gateway) p_get_styles.set_defaults(func=get_styles_gateway)
p_getwiki = subparsers.add_parser('getwiki') p_getwiki = subparsers.add_parser('getwiki')
p_getwiki.add_argument('-r', '--subreddit', dest='subreddit') p_getwiki.add_argument('-r', '--subreddit', dest='subreddit')

View file

@ -5,7 +5,7 @@ from . import common
from . import tsdb from . import tsdb
def getstyles(subreddit): def get_styles(subreddit):
(database, subreddit) = tsdb.TSDB.for_subreddit(subreddit, fix_name=True) (database, subreddit) = tsdb.TSDB.for_subreddit(subreddit, fix_name=True)
print('Getting styles for /r/%s' % subreddit) print('Getting styles for /r/%s' % subreddit)
@ -27,5 +27,5 @@ def getstyles(subreddit):
response = requests.get(image['url']) response = requests.get(image['url'])
image_file.write(response.content) image_file.write(response.content)
def getstyles_argparse(args): def get_styles_argparse(args):
return getstyles(args.subreddit) return get_styles(args.subreddit)