~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to install/hvpull/browser/basebrowser.py

  • Committer: Keith Hughitt
  • Date: 2012-04-23 16:02:25 UTC
  • mto: This revision was merged to the branch mainline in revision 732.
  • Revision ID: keith.hughitt@nasa.gov-20120423160225-xzoh82ejf37c8yr7
Incorporated HVPull code

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""Base data browser definition"""
 
2
class BaseDataBrowser:
 
3
    """BaseDataBrowser"""
 
4
    def __init__(self, uri):
 
5
        self.uri = uri
 
6
 
 
7
    def get_directories(self, uri):
 
8
        """Get a list of directories at the root of the dataprovider.  We
 
9
        assume that these directories are in fact a list of instrument
 
10
        nicknames."""
 
11
        return None
 
12
    
 
13
    def get_files(self, uri, extension):
 
14
        """Get all the files that end with specified extension at the uri"""
 
15
        return None
 
 
b'\\ No newline at end of file'