Compare commits
No commits in common. "42dcf15374893ab32c24a276e2b4caa83f5b5bfc" and "9a279d44b1d2b454970a2f3747391189b95e3563" have entirely different histories.
42dcf15374
...
9a279d44b1
|
@ -5,7 +5,7 @@ from sqlalchemy.ext.declarative import declarative_base
|
|||
from sqlalchemy.orm import sessionmaker
|
||||
from sqlalchemy.exc import IntegrityError
|
||||
|
||||
engine = create_engine('sqlite:///data/qotnews.sqlite', connect_args={'timeout': 120})
|
||||
engine = create_engine('sqlite:///data/qotnews.sqlite')
|
||||
Session = sessionmaker(bind=engine)
|
||||
|
||||
Base = declarative_base()
|
||||
|
|
|
@ -13,7 +13,7 @@ from feeds import hackernews, reddit, tildes, manual
|
|||
OUTLINE_API = 'https://api.outline.com/v3/parse_article'
|
||||
READ_API = 'http://127.0.0.1:33843'
|
||||
|
||||
INVALID_DOMAINS = ['youtube.com', 'bloomberg.com', 'wsj.com', 'sec.gov']
|
||||
INVALID_DOMAINS = ['youtube.com', 'bloomberg.com', 'wsj.com']
|
||||
TWO_DAYS = 60*60*24*2
|
||||
|
||||
def list():
|
||||
|
|
Loading…
Reference in New Issue
Block a user