Session
iota.session
This method start a new session of Iota. Once the session is loaded,
Classes
Session: class containing session objectProject: class containing project objectScenario: class containing scenario object
Variables
projects(list[Project]) list of projects in the database
Methods
Start new session
Arguments
username: (str) username already registered in the databaseconfig_file: (str) file path of the system configuration (e.g C:/Users/Stephen/ParicleAnalytics/config.ini)
Example
my_session = iota.session(
'my_username',
'$HOME/ParicleAnalytics/config.ini'
)Create a project with a specified name and description See Project for more info
Arguments
name: (str) project namedescription: (str) user description of the project (default: '')
Example
Check the existence of a project by name
Arguments
name: (str) project name
Example
Return a project, specified by a name See Project for more info
Arguments
name: (str) project name
Example
Return the total number of projects for some user
Example
Last updated
Was this helpful?