Metadata-Version: 2.1
Name: PyTasky
Version: 1.1.0
Summary: Task System api for python
Home-page: https://github.com/immmdreza/PyTasky
Author: immmdreza
Author-email: ir310022@gmail.com
License: UNKNOWN
Description: # PyTasky
        A package to connect to TsWw Api.
        
        ## Installation
        You can install the Package using [PyPi](https://pypi.org/project/PyTasky/1.0.0/).
        Run `py -m pip install PyTasky`.
        
        ## Usage
        Simple example to get top groups.
        
        ```py
        from PyTasky import TaskSystem
        
        client = TaskSystem('API_TOKEN') 
        
        tops = client.topGroups()
        
        for x in tops:
            print(x.name)
        ```
        
        Replace `API_TOKEN` with you own token.
        
        Read More at [Task System WebStie](https://taskyonline.com/docs.html).
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
