Metadata-Version: 2.1
Name: pastecord
Version: 1.0.0
Summary: Api wrapper for pastecord.com
Home-page: https://github.com/thesadru/pastecord
Author: thesadru
Author-email: thesadru@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/thesadru/pastecord/issues
Project-URL: Source, https://github.com/thesadru/pastecord/
Description: # pastecord
        Api wrapper for pastecord.com
        
        # usage
        Create a new pastecord document:
        ```py
        from pastecord import create_document
        
        document = create_document('print("Hello World!")')
        print(document)
        # Document('wivewoniki')
        print(document.url)
        # https://pastecord.com/wivewoniki
        print(document.read())
        # print("Hello World!")
        ```
        Save a pastecord document:
        ```py
        from pastecord import Document
        
        d = Document('https://pastecord.com/wivewoniki')
        d.save('document.txt')
        ```
Keywords: api,wrapper,pastecord
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.6
Description-Content-Type: text/markdown
