Metadata-Version: 2.1
Name: zacktools
Version: 0.0.12
Summary: Zack's ommon tools
Home-page: https://github.com/ZackAnalysis/zacktools
Author: Zack Dai
Author-email: zdai@brocku.ca
License: UNKNOWN
Description: # zacktools
        
        ### Useful tools created by zackdai
        
        # install
        `pip install zacktools`
        
        or from git
        
        `pip3 install git+https://github.com/ZackAnalysis/zacktools.git`
        
        ## pageparser
        
        A tool for parse address,phone, email, facebook, twitter, linkedin, contact link, about us link from a webpage
        
        ### usage
        
        `from zacktools import pageparser`
        
        `import requests`
        
        `res = requests.get('http://rel8ed.to')`
        
        `result = pageparser.parse(res.content)`
        
        `print(result)`
        
        Note: MainAddress is an Object, and can be further extacted like:
        
        print(result['Mainaddress'].city)
        
        If want to convert to json directly, add parameters tojson=True
        
        result = pageparser.parse(res.content, tojson=True)
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
