16 lines
399 B
Python
16 lines
399 B
Python
|
#!/usr/bin/env python
|
|||
|
# -*- coding: UTF-8 -*-
|
|||
|
"""
|
|||
|
@Project :redbook
|
|||
|
@File :test.py
|
|||
|
@IDE :PyCharm
|
|||
|
@Author :rengengchen
|
|||
|
@Time :2024/4/18 16:29
|
|||
|
"""
|
|||
|
from config import HEAD
|
|||
|
from scraper import read_comment
|
|||
|
|
|||
|
if __name__ == '__main__':
|
|||
|
HEAD['Cookie'] = 'kpf=PC_WEB; clientid=3; did=web_237ae956137866a6a14a6416df7661b8; kpn=KUAISHOU_VISION'
|
|||
|
read_comment('3xfeau2qk9pv6aw')
|