def storage(title, time, source, main): dicts = { "title": title, "time": time, "author": "火星财经-快讯", "source": source, "main": main, } storageDatabase(dicts, come_from="huoxing_alerts")
def storage(title, date, text): dicts = { "title": title, "author": "早评财经--快讯", "release_time": date, "source": "早评财经", "main": text, } storageDatabase(dicts, come_from="zaoping_alerts")
def storage(title, timeout, main): dicts = { "title": title, "release_time": timeout, "author": "币报道--币快讯", "source": "币报道", "main": main, } storageDatabase(dicts, come_from="bibaodao_alerts")
def storage(title, timeout, main): dicts = { "title": title, "release_time": timeout, "main": main, "author": "共享财经--快讯", "source": "共享财经", } storageDatabase(dicts, come_from="gongxiangcj_alerts")
def storage(title, timeout, main): dicts = { 'title': title, "release_time": timeout, "author": "火球财经--快讯", "source": "火球财经", "main": main, } storageDatabase(dicts, come_from="ihuoqiu_alerts")
def storage(text): dicts = { "_id": text["id"], "title": text["title"], "release_time": text["publish_time"], "author": "链世界--快讯", "source": "链世界", "main": text["content"], } storageDatabase(dicts, come_from="lianshijie7234_alerts")
def storage(title, author, timeout, accurate, source, text): times = accurate + " " + timeout dicts = { "title": title, "author": author, "release_time": times, "source": source, "main": text, } storageDatabase(dicts, come_from="tuoniaox_alerts")
def storage(title, author, time, source, mains, number): dicts = { "_id": number, "title": title, "author": author, "release_time": time, "source": source, "mian": mains, } storageDatabase(dicts, come_from="youjiatuanjian_alerts")
def storage(text): dicts = { "_id": text["id"], "title": text["title"], "author": "币块财经--快讯", "release_time": text["time1"] + " " + text["time2"], "main": text["body"], "source": "币块财经", } storageDatabase(dicts, come_from="bikuai_alerts")
def storage(text): dicts = { "_id": text["informationId"], "title": text["title"], "author": text["authorUser"], "release_time": text["insertDate"], "source": "火链财经--快讯", "main": text["content"], } storageDatabase(dicts, come_from="huolian_alerts")
def storage(text, timeout): dicts = { "_id": text["id"], "title": text["title"], "authoe": "波罗财经--快讯", "release_time": timeout, "source": text["source"], "main": text["content"] } storageDatabase(dicts, come_from="polo321_alerts")
def storage(text): dicts = { "_id": text["id"], "title": text["title"], "author": text["username"], "release_time": text["updatetime"], "main": text["content"], "source": "BABI财经:" + text["url"], } storageDatabase(dicts, come_from="babifinance_alerts")
def storage(title, timeout, text): dicts = { "title": title, "release_time": timeout, "author": "比特币之家--快讯", "source": "比特币之家", "main": text, } # print(dicts) storageDatabase(dicts, come_from="btc798_alerts")
def storage(number, timeout, text): dicts = { "_id": number, "title": text["title"], "author": "币源社区--快讯", "release_time": timeout, "source": text["source"], "main": text["content"], } storageDatabase(dicts, come_from="coingogo_alerts")
def storage(number, title, timeout, main_text): dicts = { "_id": number, "title": title, "author": "coinvoice--快讯", "timeout": timeout, "main": main_text, "source": "coinvoice:http://www.coinvoice.cn" } storageDatabase(dicts, come_from="coinvoice_alerts")
def storage(number, title, timeout, author, source, text): dicts = { "_id": number, "title": title, "author": author, "release_time": timeout, "source": source, "main": text, } storageDatabase(dicts, come_from="hashcaijing")
def storage(text, timeout, title_text, title): dicts = { "_id": text["id"], "title": title, "author": "链向财经--快讯", "release_time": timeout, "main": title_text, "source": "链向财经", } # print(dicts) storageDatabase(dicts, come_from="chainfor_alerts")
def storage(number, title, timeout, author, source, statement, text): dicts = { "_id": number, "title": title, "author": author, "release_time": timeout, "source": source, "main": text, "statement": statement, } storageDatabase(dicts, come_from="queding_alerts")
def storage(title, author, subhead, time, source, text, number): dicts = { "_id": number, "title": title, "subhead": subhead, "author": author, "release_time": time, "source": source, "main": text, } storageDatabase(dicts, come_from="huoxing24")
def storage(findOne, release_time, number, title): dicts = { "_id": number, "title": title, "author": "未来财经--快讯", "release_time": release_time, "source": findOne["source"], "main": findOne["text"], "url": findOne["url"], } storageDatabase(dicts, come_from="weilaicaijing_alerts")
def storage(text, month_day): dicts = { "_id": text["news_id"], "title": text["title"], "author": "蜂鸟财经--快讯", "release_time": "2018年" + month_day[0] + month_day[1] + text["time_hi"], "source": "蜂鸟财经:http://fengniaocaijing.com/", "main": text["content"], } storageDatabase(dicts, come_from="fengniaocaijing_alerts")
def storage(text, content, timeout): dicts = { "_id": text["id"], "title": text["title"], "author": "币社区--快讯", "release_tiem": timeout, "source": "币社区", "main": content, } # print(dicts) storageDatabase(dicts, come_from="bishequ_alerts")
def storage(number, title, author, timeout, source, texts, label): dicts = { "_id": number, "title": title, "author": author, "release_time": timeout, "source": source, "main": texts, "label": label, } storageDatabase(dicts, come_from="tuoluocaijing_alerts")
def storage(number, title, author, timeout, text, img): dicts = { "_id": number, "title": title, "author": author, "release_time": timeout, "source": "早评财经", "main": text, "img": img, } # print(dicts) storageDatabase(dicts, come_from="zaoping")
def storage(number, title, author, timeout, text, label, statement): dicts = { "_id": number, "title": title, "release_time": timeout, "author": author, "source": "杭链财经", "main": text, "statement": statement, "label": label, } storageDatabase(dicts, come_from="hangliancj_alerts")
def storage(number, title, author, source, label, text, statement, img): dicts = { "_id": number, "title": title, "author": author, "source": source, "main": text, "main_img": img, "statement": statement, "label": label, } storageDatabase(dicts, come_from="btc123")
def storage(number, title, author, timeout, content_source, main_text, img): dicts = { "_id": number, "title": title, "author": author, "release_time": timeout, "content_source": content_source, "main": main_text, "source": "共享财经", "img": img, } storageDatabase(dicts, come_from="gongxiangcj")
def storage(number, title, author, timeout, source, text, classify): dicts = { "_id": number, "title": title, "author": author, "release_time": timeout, "source": source, "main": text, "classify": classify, } # print(dicts) storageDatabase(dicts, come_from="zhilianfm_alerts")
def storage(number, title, author, timeout, source, text, statement, img): dicts = { "_id": number, "title": title, "author": author, "release_time": timeout[0] + " " + timeout[1], "source": source, "main": text, "statement": statement, "img": img, } storageDatabase(dicts, come_from="shangxia_alerts")
def storage(number, title, author, timeout, content_source, text, img): dicts = { "_id": number, "title": title, "author": author, "release_time": timeout, "source": "海豚区块链", "content_source": content_source, "main": text, "img": img, } storageDatabase(dicts, come_from="haitunbc")