~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to install/downloader.py

  • Committer: Keith Hughitt
  • Date: 2012-04-23 19:07:32 UTC
  • mto: This revision was merged to the branch mainline in revision 732.
  • Revision ID: keith.hughitt@nasa.gov-20120423190732-40hc0ond3dhvo9ek
Reorganized installer and downloader code

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#-*- coding:utf-8 -*-
3
3
"""Helioviewer.org JP2 Download Daemon (HVPull)
4
4
Code to pull files from remote and local locations
 
5
 
5
6
Terminology:
 
7
 
6
8
servers: locations that provide data available for download
7
9
browsers: methods of browsing the data available at a 'server'
8
10
downloaders: methods of acquiring data from a 'server'
22
24
import logging
23
25
import argparse
24
26
import ConfigParser
25
 
from shared.util import init_logger
26
 
from hvpull.net.daemon import ImageRetrievalDaemon
 
27
from helioviewer import init_logger
 
28
from helioviewer.downloader.net.daemon import ImageRetrievalDaemon
27
29
 
28
30
def main():
29
31
    """Main application"""