Metadata-Version: 1.0
Name: tronapi
Version: 1.0.6
Summary: A Python API for interacting with Tron (TRX)
Home-page: https://github.com/iexbase/tron-api-python
Author: Shamsudin Serderov
Author-email: steein.shamsudin@gmail.com
License: MIT
Description: # TRON API for Python
        A Pyton API for interacting with the Tron (TRX)
        
        ## Install
        
        ```bash
        > pip3 install tronapi
        ```
        
        ## Example Usage
        ```python
        from tronapi.providers import HttpProvider
        from tronapi.tron import Tron
        
        full_node = HttpProvider('http://13.125.210.234:8090')
        
        tron = Tron(full_node)
        tron.private_key = 'private_key'
        
        print(tron.get_balance('address'))
        ```
        ### cli
        ```bash
        >>> python cli.py send from to amount private_key
        >>> python cli.py --generateaddress
        >>> python cli.py --node=customnode --getbalance address
        ```
        
        
        ## Donations
        **Tron(TRX)**: TRWBqiqoFZysoAeyR1J35ibuyc8EvhUAoY
        
Keywords: tron tron-api tron-api-python iexbase
Platform: UNKNOWN
