dmm-search3

DMM Web API Version 3.0 Wrapper for Python3


Keywords
python3, dmm, REST, API
License
MIT
Install
pip install dmm-search3==1.0

Documentation

dmm-search3

License

DMM Web API Version 3.0 Wrapper for Python3

Requirements

Please get it here.

  • api_id
  • affiliate_id

Install

$ pip3 install dmm-search3

Initialize

# モジュールのインポート
import dmm

# API ID と アフィリエイトIDをセット
api_id = "your_api_id"
affiliate_id = "your_affiliate_id"

# インスタンスの作成
api = dmm.API(api_id=api_id, affiliate_id=affiliate_id)

Feature

#商品検索
item_search = api.item_search(site="FANZA", hits=1, keyword="バレンタイン")

#フロア一覧
floor_list = api.floor_list()

#女優検索
actress_search = api.actress_search()

#ジャンル検索
genre_search = api.genre_search(floor_id=91)

#メーカー検索
maker_search = api.maker_search(floor_id=91)

#シリーズ検索
series_search = api.series_search(floor_id=91)

#作者検索
author_search = api.author_search(floor_id=91)

# サンプル動画ドウンロード
dmm.sample_download(content_id="abgktk_0012", file_name="sample", size="big")

Sample

Please refer here.