mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-23 14:37:17 +00:00
25 lines
709 B
Python
25 lines
709 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*-coding:UTF-8 -*
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
import redis
|
||
|
|
||
|
sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib/'))
|
||
|
import Correlation
|
||
|
|
||
|
sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib/'))
|
||
|
import ConfigLoader
|
||
|
|
||
|
config_loader = ConfigLoader.ConfigLoader()
|
||
|
r_serv_crawler = config_loader.get_redis_conn("ARDB_Onion")
|
||
|
config_loader = None
|
||
|
|
||
|
correlaton = Correlation.Correlation('username', ['telegram'])
|
||
|
|
||
|
def save_item_correlation(username, item_id, item_date):
|
||
|
correlaton.save_item_correlation('telegram', username, item_id, item_date)
|
||
|
|
||
|
def save_telegram_invite_hash(invite_hash, item_id):
|
||
|
r_serv_crawler.sadd('telegram:invite_code', '{};{}'.format(invite_hash, item_id))
|