mirror of
https://github.com/imgyh/tiktok.git
synced 2025-04-05 21:45:44 +08:00
173 lines
5.6 KiB
Python
173 lines
5.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
@FileName : TikTokDataBase.py
|
|
@Project : tiktok
|
|
@Description:
|
|
@Author : imgyh
|
|
@Mail : admin@imgyh.com
|
|
@Github : https://github.com/imgyh
|
|
@Site : https://www.imgyh.com
|
|
@Date : 2023/4/24 10:05
|
|
@Version : v1.0
|
|
@ChangeLog
|
|
------------------------------------------------
|
|
使用数据库保存获取的状态信息
|
|
------------------------------------------------
|
|
'''
|
|
|
|
import sqlite3
|
|
import json
|
|
|
|
|
|
class db(object):
|
|
def __init__(self):
|
|
self.conn = sqlite3.connect('data.db')
|
|
self.cursor = self.conn.cursor()
|
|
self.create_user_post_table()
|
|
self.create_user_like_table()
|
|
self.create_mix_table()
|
|
self.create_music_table()
|
|
|
|
def create_user_post_table(self):
|
|
sql = """CREATE TABLE if not exists t_user_post (
|
|
id integer primary key autoincrement,
|
|
sec_uid varchar(200),
|
|
aweme_id integer unique,
|
|
rawdata json
|
|
);"""
|
|
|
|
try:
|
|
self.cursor.execute(sql)
|
|
self.conn.commit()
|
|
except Exception as e:
|
|
pass
|
|
|
|
def get_user_post(self, sec_uid: str, aweme_id: int):
|
|
sql = """select id, sec_uid, aweme_id, rawdata from t_user_post where sec_uid=? and aweme_id=?;"""
|
|
|
|
try:
|
|
self.cursor.execute(sql, (sec_uid, aweme_id))
|
|
self.conn.commit()
|
|
res = self.cursor.fetchone()
|
|
return res
|
|
except Exception as e:
|
|
pass
|
|
|
|
def insert_user_post(self, sec_uid: str, aweme_id: int, data: dict):
|
|
insertsql = """insert into t_user_post (sec_uid, aweme_id, rawdata) values(?,?,?);"""
|
|
|
|
try:
|
|
self.cursor.execute(insertsql, (sec_uid, aweme_id, json.dumps(data)))
|
|
self.conn.commit()
|
|
except Exception as e:
|
|
pass
|
|
|
|
def create_user_like_table(self):
|
|
sql = """CREATE TABLE if not exists t_user_like (
|
|
id integer primary key autoincrement,
|
|
sec_uid varchar(200),
|
|
aweme_id integer unique,
|
|
rawdata json
|
|
);"""
|
|
|
|
try:
|
|
self.cursor.execute(sql)
|
|
self.conn.commit()
|
|
except Exception as e:
|
|
pass
|
|
|
|
def get_user_like(self, sec_uid: str, aweme_id: int):
|
|
sql = """select id, sec_uid, aweme_id, rawdata from t_user_like where sec_uid=? and aweme_id=?;"""
|
|
|
|
try:
|
|
self.cursor.execute(sql, (sec_uid, aweme_id))
|
|
self.conn.commit()
|
|
res = self.cursor.fetchone()
|
|
return res
|
|
except Exception as e:
|
|
pass
|
|
|
|
def insert_user_like(self, sec_uid: str, aweme_id: int, data: dict):
|
|
insertsql = """insert into t_user_like (sec_uid, aweme_id, rawdata) values(?,?,?);"""
|
|
|
|
try:
|
|
self.cursor.execute(insertsql, (sec_uid, aweme_id, json.dumps(data)))
|
|
self.conn.commit()
|
|
except Exception as e:
|
|
pass
|
|
|
|
def create_mix_table(self):
|
|
sql = """CREATE TABLE if not exists t_mix (
|
|
id integer primary key autoincrement,
|
|
sec_uid varchar(200),
|
|
mix_id varchar(200),
|
|
aweme_id integer,
|
|
rawdata json
|
|
);"""
|
|
|
|
try:
|
|
self.cursor.execute(sql)
|
|
self.conn.commit()
|
|
except Exception as e:
|
|
pass
|
|
|
|
def get_mix(self, sec_uid: str, mix_id: str, aweme_id: int):
|
|
sql = """select id, sec_uid, mix_id, aweme_id, rawdata from t_mix where sec_uid=? and mix_id=? and aweme_id=?;"""
|
|
|
|
try:
|
|
self.cursor.execute(sql, (sec_uid, mix_id, aweme_id))
|
|
self.conn.commit()
|
|
res = self.cursor.fetchone()
|
|
return res
|
|
except Exception as e:
|
|
pass
|
|
|
|
def insert_mix(self, sec_uid: str, mix_id: str, aweme_id: int, data: dict):
|
|
insertsql = """insert into t_mix (sec_uid, mix_id, aweme_id, rawdata) values(?,?,?,?);"""
|
|
|
|
try:
|
|
self.cursor.execute(insertsql, (sec_uid, mix_id, aweme_id, json.dumps(data)))
|
|
self.conn.commit()
|
|
except Exception as e:
|
|
pass
|
|
|
|
def create_music_table(self):
|
|
sql = """CREATE TABLE if not exists t_music (
|
|
id integer primary key autoincrement,
|
|
music_id varchar(200),
|
|
aweme_id integer unique,
|
|
rawdata json
|
|
);"""
|
|
|
|
try:
|
|
self.cursor.execute(sql)
|
|
self.conn.commit()
|
|
except Exception as e:
|
|
pass
|
|
|
|
def get_music(self, music_id: str, aweme_id: int):
|
|
sql = """select id, music_id, aweme_id, rawdata from t_music where music_id=? and aweme_id=?;"""
|
|
|
|
try:
|
|
self.cursor.execute(sql, (music_id, aweme_id))
|
|
self.conn.commit()
|
|
res = self.cursor.fetchone()
|
|
return res
|
|
except Exception as e:
|
|
pass
|
|
|
|
def insert_music(self, music_id: str, aweme_id: int, data: dict):
|
|
insertsql = """insert into t_music (music_id, aweme_id, rawdata) values(?,?,?);"""
|
|
|
|
try:
|
|
self.cursor.execute(insertsql, (music_id, aweme_id, json.dumps(data)))
|
|
self.conn.commit()
|
|
except Exception as e:
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pass
|