Metadata-Version: 2.1
Name: duneanalytics
Version: 1.1.0
Summary: Unofficial library for Dune Analytics.
Home-page: https://github.com/itzmestar/duneanalytics
Author: Tarique Anwer
Author-email: itzmetariq@gmail.com
License: Apache License 2.0
Description: # Dune Analytics
        
        [![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-390/)
        
        [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
        
        [![Build](https://github.com/itzmestar/duneanalytics/actions/workflows/python-package.yml/badge.svg)](https://github.com/itzmestar/duneanalytics/actions/workflows/python-package.yml)
        <hr style="border:0.5px solid gray"> </hr>
        
        ### Unofficial Python Library for [Dune Analytics](https://duneanalytics.com/)
        
        The library can be used to fetch the table data from `python` backend.
        
        #### Disclaimer: Use at your own risk! 
        It may not work for some/all urls.
        
        This library doesn't run the query, rather it fetches the query result from the backend.
        
        <hr style="border:0.5px solid gray"> </hr>
        
        ### Charts Plotted:
        Here are some examples of charts plotted in Googlesheet after fetching the data.
        
        -----
        
        [**@balancerlabs / Balancer New/Old Traders**](https://duneanalytics.com/queries/31203/62900)
        
        ![Balancer](sample/balancer.svg)
        
        -----
        
        [**@k06a / 1inch New/Old Users Per Day**](https://duneanalytics.com/queries/1193/2032)
        
        ![1inch](sample/1inch.svg)
        
        -----
        
        [**@Bancor / Bancor Unique Protected Wallets Over Time**](https://duneanalytics.com/queries/12948/25894)
        
        ![Bancor](sample/bancor.svg)
        
        <hr style="border:0.5px solid gray"> </hr>
        
        ### Installation:
        
        use pip to install:
        
        ``` 
        pip install duneanalytics
        ```
        
        <hr style="border:0.5px solid gray"> </hr>
        
        ### Authentication:
        
        You need to have `username` & `password` for [Dune Analytics](https://duneanalytics.com/)
        
        <hr style="border:0.5px solid gray"> </hr>
        
        ### Example usage:
        
        ```
        from duneanalytics import DuneAnalytics
        
        # initialize client
        dune = DuneAnalytics('username', 'password')
        
        # try to login
        dune.login()
        
        # fetch token
        dune.fetch_auth_token()
        
        # fetch query result id using query id
        # query id for any query can be found from the url of the query:
        # for example: 
        # https://duneanalytics.com/queries/4494/8769 => 4494
        # https://duneanalytics.com/queries/3705/7192 => 3705
        # https://duneanalytics.com/queries/3751/7276 => 3751
        
        result_id = dune.query_result_id(query_id=5508)
        
        # fetch query result
        data = dune.query_result(result_id)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
