Created
January 27, 2017 17:41
-
-
Save andrealmar/fd63dfb8fb80e29da65abd210bb8a180 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import os | |
from redis import Redis | |
from rq import Queue | |
from download import setup_download_dir, get_links, download_link | |
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') | |
logging.getLogger('requests').setLevel(logging.CRITICAL) | |
logger = logging.getLogger(__name__) | |
def main(): | |
client_id = os.getenv('IMGUR_CLIENT_ID') | |
if not client_id: | |
raise Exception("Couldn't find IMGUR_CLIENT_ID environment variable!") | |
download_dir = setup_download_dir() | |
links = get_links(client_id) | |
q = Queue(connection=Redis(host='localhost', port=6379)) | |
for link in links: | |
q.enqueue(download_link, download_dir, link) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment