Metadata-Version: 2.1
Name: tech-ninja-tistory-api
Version: 1.0.2
Summary: Tistory API Wrapper
Home-page: https://github.com/yscho03/tech-ninja-tistory-api
Author: yscho03
Author-email: yscho03.developer@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/yscho03/tech-ninja-tistory-api/issues
Description: # Tistory API Wrapper
        
        ## Overview
        Tistory API Wrapper
        
        ### Install
        ```
        $ pip install tech-ninja-tistory-api
        ```
        
        ### Usage  
        ```
        from tech_ninja_tistory_api import TistoryAPI
        
        blog_name = 'yscho03'
        tistory_api = TistoryAPI(blog_name)
        
        tistory_client_id = 'xxxxxxxxxx'
        tistory_redirect_uri = 'http://localhost/tistory/auth/callback'
        
        oauth_url = tistory_api.authorize(tistory_client_id, tistory_redirect_uri)
        print('>>> Generated Oauth URL')
        print(oauth_url)
        
        """
        https://www.tistory.com/oauth/authorize?client_id=xxxxxxxxxx&redirect_uri=http://localhost/tistory/auth/callback&response_type=code&state=
        """
        
        # access_token
        tistory.access_token = '<YOUR_ACCESS_TOKEN>'
        ```
        
        
        
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
