You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
553 B
24 lines
553 B
8 years ago
|
import requests
|
||
|
|
||
|
from cookiespool.db import AccountRedisClient
|
||
|
|
||
|
conn = AccountRedisClient(name='weibo')
|
||
|
|
||
|
def set(account, sep='----'):
|
||
|
username, password = account.split(sep)
|
||
|
result = conn.set(username, password)
|
||
|
print('账号', username, '密码', password)
|
||
|
print('录入成功' if result else '录入失败')
|
||
|
|
||
|
|
||
|
def scan():
|
||
|
print('请输入账号密码组, 输入exit退出读入')
|
||
|
while True:
|
||
|
account = input()
|
||
|
if account == 'exit':
|
||
|
break
|
||
|
set(account)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
scan()
|