Metadata-Version: 2.1
Name: pylab-sdk
Version: 1.1.1
Summary: A development kit that collects simple utilities.
Home-page: https://github.com/PyLabCo/pylab-sdk
Author: Yeongbin Jo
Author-email: yeongbin.jo@pylab.co
License: MIT
Description: # pylab-sdk
        A development kit that collects simple utilities.
        
        ## Installation
        
        ```bash
        pip install pylab-sdk
        ```
        
        ## Example
        ```
        import pylab
        
        
        # Get your public IP
        ip = pylab.get_ip()
        
        # Get latest user agent of modern browser
        agents = pylab.get_latest_agents()
        assert agents['macOS'] == pylab.get_latest_agents('macOS')
        
        # Similar to netcat, webcat running over the http protocol helps you keep a log that you can check anywhere.
        pylab.wc('hello world', source='discord-bot')
        
        ```
        
Keywords: python
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3
Description-Content-Type: text/markdown
