Metadata-Version: 1.0
Name: PyOGP
Version: 0.1.4
Summary: Python Crawler based on Open-Graph Protocol
Home-page: https://github.com/holdonnn/PyOGP/
Author: holdonnn
Author-email: rururu0729@gmail.com
License: LICENSE.txt
Description: # PyOGP
        
        
        Python crawler based on OPG(http://ogp.me/)
        
        we're digging url information over obstacles ( iframe, redirection url, ...)
        
        there is no proper module for crawling ogp compatible with above-mentioned obstacles
        
        We will find a way. We always have.
        
        I expect yout pull-request
        
        # Features
        
        - only python3 supported
        
        
        # Usage
        
        ```bash
        $ pip install PyOGP
        ```
        
        ```python
        from pyogp import PyOGP
        
        url = "http://pouuch.com"
        pyogp = PyOGP()
        result = pyogp.crawl(url=url).get_result()
        ```
        
        # Test
        ```python
        python -m tests/test.py
        ```
        
        # Meta
        
        Distributed under the MIT license. See ``LICENSE.txt`` for more information.
        
Platform: UNKNOWN
