Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

create login sessions in your projects

License

NotificationsYou must be signed in to change notification settings

d33pster/s3ssion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

codecovBuild status

Installation    |   Usage


About

Session helps creating login sessions.

Installation

## run$pip install s3ssion

Usage

initialization
>>> from s3ssion import s3ssion>>> sess = s3ssion('password')

for help with session class initialization

>>> from s3ssion import s3ssion>>> help(s3ssion)
class functions
>>> from s3ssion import s3ssion#_login()_ function>>> help(s3ssion._login_)Help on function _login_ in module src.s3ssion:_login_(self, username: str, password: str)    login user    Args:        username (str): username to login        password (str): password for username    Returns:        error (str | None): returns error text, if all good then error=None
#_register_() function>>> help(s3ssion._register_)Help on function _register_ in module src.s3ssion:_register_(self, **kwargs)    register function.    ARGS:        NOTE: whatever field you entered during the class initialization, add them. default -> ['name', 'username', 'password'].    Returns:        error (str | None): returns error text if any, else None
#_logout_() function>>> help(s3ssion._logout_)Help on function _logout_ in module src.s3ssion:_logout_(self)    logout currently logged in user    Returns:        error (str | None): returns error text or None
#_change_password_() function>>> help(s3ssion._change_password_)Help on function _change_password_ in module src.s3ssion:_change_password_(self, username: str, old_password: str, new_password: str)    change user password.    Args:        username (str): username of the user        old_password (str): old password        new_password (str): new password    Returns:        error (str | None): returns error text or None
#_login_who_() function>>> help(s3ssion._login_who_)Help on function _login_who_ in module src.s3ssion:_login_who_(self)    returns currently logged in user    Returns:        username (str): currently logged in user.
#_login_status_() function>>> help(s3ssion._login_function_)Help on function _login_status_ in module src.s3ssion:_login_status_(self)    get login status    Returns:        status (bool): returns if anyone is currently logged in.
#_user_count_() function>>> help(s3ssion._user_count_)Help on function _user_count_ in module src.s3ssion:_user_count_(self)    get registered user count    Returns:        usercount (int): Number of users currently registered.
#_force_login_() function>>> help(s3ssion._force_login_)Help on function _force_login_ in module src.s3ssion:_force_login_(self, username: str)    forcefully login an user.    Args:        username (str): username to forcefully login.

[8]ページ先頭

©2009-2025 Movatter.jp