コード例 #1
0
 def __init__(self, htmlFile, access_token):
   '''
   Creates a new instance.
   
   :param htmlFile: the path to the file to export to.
   :param access_token: a Facebook access token.
   '''
   FacebookDownloader.__init__(self, access_token)
   self.htmlFile = htmlFile
   self.verbose = 0
   self.getImages = ['small']
コード例 #2
0
 def __init__(self, htmlFile, access_token):
     '''
 Creates a new instance.
 
 :param htmlFile: the path to the file to export to.
 :param access_token: a Facebook access token.
 '''
     FacebookDownloader.__init__(self, access_token)
     self.htmlFile = htmlFile
     self.verbose = 0
     self.getImages = ['small']
コード例 #3
0
 def __init__(self, groupId, access_token):
   '''
   Creates a new instance.
   
   :param groupId: the ID of the group to download. Use th
   FacebookGroupLister to get it.
   :param access_token: The Facebook access token.
   '''
   FacebookDownloader.__init__(self, access_token)
   self.groupId = groupId
   self.lightEvents = False
コード例 #4
0
 def __init__(self, groupId, access_token):
     '''
 Creates a new instance.
 
 :param groupId: the ID of the group to download. Use th
 FacebookGroupLister to get it.
 :param access_token: The Facebook access token.
 '''
     FacebookDownloader.__init__(self, access_token)
     self.groupId = groupId
     self.lightEvents = False
コード例 #5
0
 def __init__(self, access_token):
   '''
   Creates a new instance.
   :param access_token: A Facebook access token.
   '''
   FacebookDownloader.__init__(self, access_token)