## Get dataset CSV stream `radar.datasets.get(stralias) -> DatasetGetResponse` **get** `/radar/datasets/{alias}` Retrieves the CSV content of a given dataset by alias or ID. When getting the content by alias the latest dataset is returned, optionally filtered by the latest available at a given date. ### Parameters - `alias: str` Dataset alias or ID. ### Returns - `str` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) dataset = client.radar.datasets.get( "ranking_top_1000", ) print(dataset) ```