godsbot for financial freedom
python version >= 3.7.1 PyAutoGUI version = 0.9.53
python3 -m main
Sqlite3
create table accounts
(
id integer not null
constraint accounts_pk
primary key autoincrement,
email varchar default '' not null,
password varchar default '' not null,
disabled tinyint(1) default 0 not null,
created_at datetime default CURRENT_TIMESTAMP not null,
last_logged_at datetime,
last_logged_ip varchar default '' not null,
status int default 0
);
create unique index accounts_email_uindex
on accounts (email);
Defines the Context type, which carries index, account, game, and other request-scoped values between processes.