Metadata-Version: 2.1
Name: TrackerGG
Version: 1.0.2
Summary: Game Stat Library with Tracker API
Home-page: https://github.com/dev-ruby/TrackerGG
Author: DevRuby
Author-email: devruby7777@gmail.com
License: UNKNOWN
Description: # TrackerGG
        
        
        
        ![license](https://img.shields.io/github/license/Dev-Ruby/TrackerGG)
        ![Downloads](https://img.shields.io/pypi/dm/TrackerGG)
        ![Issues](https://img.shields.io/github/issues-raw/dev-ruby/TrackerGG)
        
        ![Version](https://img.shields.io/pypi/v/TrackerGG)
        ![Commits](https://img.shields.io/github/commit-activity/m/dev-ruby/TrackerGG)
        
        ![Tracker](https://static1-fr.millenium.gg/articles/9/34/23/09/@/1117224-111-article_m-1.jpg)
        
        **TrackerGG is a Tracker API Client**
        
        ## Install
        
        ```pip install TrackerGG```
        
        
        ## Use
        
        **Example of getting csgo profile**
        ```py
        import TrackerGG # import this library
        import asyncio # asyncio library for calling async function
        
        client = TrackerGG.Client('TOKEN') # replace 'TOKEN' with your token value.
        
        def GetSync(profile):
            return client.get_csgo_profile(profile) # sync get
        
        async def GetAsync(profile):
            return await client.async_get_csgo_profile(profile) #async get
        
        print(GetSync("DevRuby").stats.kills.value) # print the value of kills with sync function
        print(asyncio.run(GetAsync("DevRuby")).stats.kills.value) # print the value of kill with async function
        
        ```
        
        ## Exceptions
        ### ApiError
        Incorrect Api Key
        ### UserError
        Can't find the user
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.3
Description-Content-Type: text/markdown
