Metadata-Version: 2.1
Name: DLsite
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/sugurunatsuno/DLsite.git
Author: sugurunatsuno
Author-email: suguru.irie@gmail.com
License: UNKNOWN
Description: DLsite
        ======
        
        A python package that get information of products in DLsite.
        
        requirements
        ------------
        requests  
        beautifulsoup4  
        lxml
        
        Installing
        ----------
        `pip install DLsite`
        
        Example
        -------
        ```python
        from DLsite import Product
        
        # set url
        product = Product('https://www.dlsite.com/maniax/work/=/product_id/RJ252835.html')
         
        # get each info
        print(product)
        # output: 夢ノ濡色: じょぶじゅん。(じゃじゅじょ)
        print(product.genre)
        # output: ['ヘタレ攻め', 'ネコミミ']
        ```
        
        License
        -------
        
        Refer to the LICENSE file.
Keywords: dlsite
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
