コード例 #1
0
ファイル: pubmed.py プロジェクト: zeliboba7/gpapers
 def __init__(self):
     WebSearchProvider.__init__(self)
コード例 #2
0
ファイル: jstor.py プロジェクト: zeliboba7/gpapers
 def __init__(self):
     WebSearchProvider.__init__(self)
     # TODO: Make this configurable
     self.max_results = 20
コード例 #3
0
    def __init__(self):
        WebSearchProvider.__init__(self)

        # create a "google ID" used later for setting our preferences instead
        # of using a cookie
        self.google_id = hashlib.md5(str(random.random())).hexdigest()[:16]
コード例 #4
0
ファイル: jstor.py プロジェクト: zeliboba7/gpapers
 def __init__(self):
     WebSearchProvider.__init__(self)
     # TODO: Make this configurable
     self.max_results = 20
コード例 #5
0
 def __init__(self):
     WebSearchProvider.__init__(self)
コード例 #6
0
ファイル: google_scholar.py プロジェクト: zeliboba7/gpapers
    def __init__(self):
        WebSearchProvider.__init__(self)

        # create a "google ID" used later for setting our preferences instead
        # of using a cookie
        self.google_id = hashlib.md5(str(random.random())).hexdigest()[:16]