8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
__author__ = 'Dananjaya Ramanayake <dananjaya86@gmail.com>, spiffytech <spiffytechgmail.com>'
__version__ = "0.1"
nb_url = "http://www.newsblur.com/"
cookies = None
from gluon import current
print current.db
def login(username,password):
'''
Login as an existing user.
If a user has no password set, you cannot just send any old password.
Required parameters, username and password, must be of string type.
'''
|
<
<
<
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
__author__ = 'Dananjaya Ramanayake <dananjaya86@gmail.com>, spiffytech <spiffytechgmail.com>'
__version__ = "0.1"
nb_url = "http://www.newsblur.com/"
cookies = None
def login(username,password):
'''
Login as an existing user.
If a user has no password set, you cannot just send any old password.
Required parameters, username and password, must be of string type.
'''
|