本文参考VNDB,提供的python http api
并提供了对otome game数据提取与处理的一些代码:
getvnid.py(从api获取数据存入test.json)
getotomevn.py(将获取的json调整为更容易调取的格式)
readotome.py(读取出需要的json数据特征,转化为列表格式输出)
get_tag_vn.py(读取出各乙游的tag并进行处理)
如下为源文档readme文件: This module provides a VNDB client api implementation. It aims to provide some high level features to easily use VNDB api. It also includes some helper functions and classes to easily use database dumps.
from vndb_thigh_highs import VNDB
from vndb_thigh_highs.models import VN
vndb = VNDB()
vns = vndb.get_vn(VN.id == 17)
vn = vns[0]
print(vn.title)
Check the documentation for more details
from vndb_thigh_highs.dumps import TraitDatabaseBuilder
builder = TraitDatabaseBuilder()
trait_db = builder.build_with_archive("path/to/traits.json.gz")
trait_id = 186
trait = trait_db.get_trait(trait_id)
print(trait.name)
Check the documentation for more details
Run test/main.py
.
By default tests are run using predefined responses. It is possible to run them with vndb by editing use_mock_socket = True
in test/test_case.py
, though logged in tests require valid credentials in data/login.json
. A few troublesome tests are also skipped when using vndb.
Database dumps tests will need dumps, compressed and decompressed, in data/
.
This module is licensed under the AGPLv3.