10 lines
317 B
Python
10 lines
317 B
Python
|
# redis config
|
||
|
REDIS_DB_HOST = "redis://127.0.0.1" # your redis host
|
||
|
REDIS_DB_PWD = "123456" # your redis password
|
||
|
|
||
|
# mysql config
|
||
|
RELATION_DB_URL = "mysql://root:youdbpassword@localhost:3306/media_crawler"
|
||
|
|
||
|
# save data to database option
|
||
|
IS_SAVED_DATABASED = True # if you want to save data to database, set True
|