|
|
@@ -57,8 +57,9 @@ def chapter(sess,ep):
|
|
|
print('2 - mark as read')
|
|
|
print('3 - go to next')
|
|
|
print('4 - go to previous')
|
|
|
- print('5 - Details')
|
|
|
+ print('5 - mark to read')
|
|
|
print('6 - read local')
|
|
|
+ print('7 - Details')
|
|
|
print('99 - Back')
|
|
|
uin = input('$>: ')
|
|
|
if uin == '1':
|
|
|
@@ -72,6 +73,11 @@ def chapter(sess,ep):
|
|
|
response = sess.post(url,data = {"check":1})
|
|
|
print(str(response.content))
|
|
|
|
|
|
+ if uin == '5':
|
|
|
+ url = 'https://proxer.me' + ep['link'].replace('#top','?format=json&type=reminder&'+ chapPars.token +'=1&title=reminder_this')
|
|
|
+ response = sess.post(url,data = {"check":1})
|
|
|
+ print(str(response.content))
|
|
|
+
|
|
|
if uin =='4':
|
|
|
prev = ep
|
|
|
linkParts = ep['link'].split('/')
|