制作Dojinvoice数据库

dojinvoice-db的Python项目详细描述


dojinvoice_db

Release Package

PyPI versionMaintainabilityMIT License

  • 同人声音DB
    • DLsite

模式

create_table('''work (                    work_id text primary key,                    detail_link text not null,                    title text not null,                    circle text not null,                    circle_link text not null,                    category text not null,                    sale_date integer not null,                    age_zone text not null,                    file_format text not null,                    file_size text not null,                    description str not null,                    monopoly integer not null,                    price integer not null                ) ''')create_table('''option (                    work_id text primary key,                    thumbnail text,                    cien_link text,                    series text,                    chobit_link text,                    sales integer,                    favorites integer,                    trial_link text,                    trial_size integer,                    rating real                ) ''')create_table('''writer (                    work_id text,                    writer text,                    primary key (work_id, writer)                ) ''')create_table('''scenario (                    work_id text,                    scenario text,                    primary key (work_id, scenario)                ) ''')create_table('''illustrator (                    work_id text,                    illustrator text,                    primary key (work_id, illustrator)                ) ''')create_table('''voice (                    work_id text,                    voice text,                    primary key (work_id, voice)                ) ''')create_table('''musician (                    work_id text,                    musician text,                    primary key (work_id, musician)                ) ''')create_table('''genre (                    work_id text,                    genre text,                    primary key (work_id, genre)                ) ''')

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java如何在mongodb中获取用户有权访问的数据库列表?   基于契约和类不变量的java设计   java我的代码有什么问题,似乎是正确的,但事实并非如此   java Android初学者:布局按钮和文本   400错误Paypal令牌API与Java(HttpURLConnection)   为什么Java从socket中随机读取数据,而不是整个消息?   如果我调用scanner,我会扫描两次。先是下一个,然后是扫描仪。下一个   如果消息发送失败,java ActiveMQ/JMS不重试   java有没有类似于dynaTrace的开源框架?   java Android:获取zip中的文件数(使用存储卷/存储访问框架)   java无法将流图像解码为片段   java如何修复Jenkins插件中的“此位置的预期stackmap帧”   java如何使用javac编译器编译AndroidManifest。xml文件?