duneanalytics / dune-client

A framework for interacting with Dune Analytics' officially supported API service
Apache License 2.0
85 stars 22 forks source link

Add download_csv #66

Closed bh2smith closed 1 year ago

bh2smith commented 1 year ago

Function will look like this

    def download_csv(self, job_id: str) -> ExecutionResultCSV:
        """
        Retrieves the CSV content of the execution results for `job_id`
        This is just an alias for `get_result_csv`
        """
        return self.get_result_csv(job_id)

but should come in only after #64 lands (the function renaming).

bh2smith commented 1 year ago

Closed by #73