コード例 #1
0
def main(before, after, destination, channel_limit, message_limit):
    graph = create_app()
    run_extract(graph, destination, before, after, channel_limit,
                message_limit)
コード例 #2
0
 def setup(self):
     graph = create_app(testing=True)
     self.transformer = graph.activity_transformer
コード例 #3
0
 def setup(self):
     graph = create_app(testing=True)
     self.extractor = graph.activity_extractor
     self.dir_path = mkdtemp()
コード例 #4
0
 def setup(self):
     graph = create_app(testing=True)
     self.client = graph.discord_client
コード例 #5
0
def main(input, destination):
    graph = create_app()
    run_transform(graph, input, destination)