-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitial_db.py
45 lines (35 loc) · 1.21 KB
/
initial_db.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import datetime
from db import MuncherSchedule, MuncherConfig, engine
from sqlalchemy.orm import Session
import json
DEFAULT_DEPTH = 1
DEFAULT_LOG_FOLDER = "logs"
DEFAULT_OUTPUT_FOLDER = "output"
DEFAULT_DELAY = 0
PARAMS = {
"domain_only": True,
"depth": DEFAULT_DEPTH,
"domains": "https://tumblr.com/",
"silent": False,
"log_file": None,
"logs_folder": DEFAULT_LOG_FOLDER,
"user_agent": None,
"delay": DEFAULT_DELAY
}
def create_config(session, params=PARAMS):
config = MuncherConfig(json_params=json.dumps(params))
session.add(config)
session.commit()
return config
def create_schedule(session, user_id, config_id):
schedule = MuncherSchedule(user_id=user_id, config_id=config_id, start_datetime=datetime.datetime.now(),
title="Test run",
description="This is a test description, blah blah blah blah blah blah.......... "
"\n blah blah blah blah blah blah.....")
session.add(schedule)
session.commit()
if __name__ == '__main__':
session = Session(engine)
config = create_config(session)
create_schedule(session, 2, config.id)
session.close()