Metadata-Version: 2.1
Name: DLsite
Version: 0.2.0
Home-page: https://github.com/sugurunatsuno/DLsite.git
Author: sugurunatsuno
Author-email: suguru.irie@gmail.com
Keywords: dlsite
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

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.
