Metadata-Version: 2.1
Name: dogbin
Version: 0.1
Summary: Dogbin API Wrapper
Home-page: https://github.com/Deleted-accounts/Dogbin-API-Wrapper
Author: DeletedAccounts
Author-email: deletedaccuonts@hi2.in
License: GNU Lesser General Public License v3 (LGPLv3)
Project-URL: Bug Tracker, https://github.com/Deleted-accounts/Dogbin-API-Wrapper/issues
Description: # Dogbin-API-Wrapper
        
        ## del.dog asynchronous / synchronous API
        
        ### you can to use with this library:
        
        - paste text to [dogbin](https://del.dog/)
        - get paste from [dogbin](https://del.dog/)
        - working with asynchronous / synchronous
        
        
        Getting started
        ===============
        
        ``` 
        pip install dogbin
        ```
        
        
        
        paste to [dogbin](https://del.dog/)
        -----------------
        
        ```python
        from dogbin import Dogbin
        import asyncio
        
        deldog = Dogbin()
        
        url = deldog.paste("some text...") # sync
        print(url)
        Aync = asyncio.run(deldog.Async_paste("some text..."))  # async
        print(Aync)
        ```
        
        get paste from [dogbin](https://del.dog/)
        -----------------------
        ```python
        from dogbin import Dogbin
        import asyncio
        
        deldog = Dogbin()
        
        by_url = deldog.get_paste('https://del.dog/atacopegno')  # sync
        by_key = deldog.get_paste('atacopegno', save_to_file=True)  # sync
        print(f'getting this paste by url {by_url}\n\ngetting this paste by key {by_key}')
        
        async_url = asyncio.run(deldog.Async_getpaste('https://del.dog/atacopegno', save_to_file=True))  # async
        async_key = asyncio.run(deldog.Async_getpaste("atacopegno"))  # async
        print(f'getting this paste by url:\t {async_url}\n\ngetting this paste by key:\t {async_key}')
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.7
Description-Content-Type: text/markdown
