Browse Source

Merge pull request #3 from WanHaes/patch-1

The domain name of NNM-Club has changed.
master
imDMG 5 years ago committed by GitHub
parent
commit
31cfa1f5b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      nnmclub.py

6
nnmclub.py

@ -31,7 +31,7 @@ start_time = time.time() @@ -31,7 +31,7 @@ start_time = time.time()
class nnmclub(object):
name = 'NoNaMe-Club'
url = 'https://nnm-club.me/forum/'
url = 'https://nnmclub.to/forum/'
supported_categories = {'all': '-1',
'movies': '14',
'tv': '27',
@ -40,7 +40,7 @@ class nnmclub(object): @@ -40,7 +40,7 @@ class nnmclub(object):
'anime': '24',
'software': '21'}
# getting config from kinozal.json
# getting config from nnmclub.json
config = None
try:
# try to load user data from file
@ -57,7 +57,7 @@ class nnmclub(object): @@ -57,7 +57,7 @@ class nnmclub(object):
# make cookie
cj = CookieJar()
# if we wanna use https we mast add ssl=enable_ssl to cookie
c = Cookie(0, 'ssl', "enable_ssl", None, False, '.nnm-club.me',
c = Cookie(0, 'ssl', "enable_ssl", None, False, '.nnmclub.to',
True, False, '/', True, False, None, 'ParserCookie', None, None, None)
cj.set_cookie(c)
self.session = build_opener(HTTPCookieProcessor(cj))

Loading…
Cancel
Save