You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
BotoX fb7ade79cb good progress 2 years ago
demweb good progress 2 years ago
oofsgi initial commit 2 years ago
.flaskenv initial commit 2 years ago
.gitignore initial commit 2 years ago
README.md good progress 2 years ago
WSGI.py initial commit 2 years ago
app.py progress 2 years ago
config.py initial commit 2 years ago
db_create.py initial commit 2 years ago
demopus.py progress 2 years ago
done.txt initial commit 2 years ago
parser.py good progress 2 years ago
requirements.txt good progress 2 years ago
work.txt initial commit 2 years ago

README.md

Populate player name (from most used one) after database is fully populated:

UPDATE `player` SET `name`=(
    SELECT `name`
    FROM `player_names`
    WHERE `player_names`.guid = `player`.guid
    GROUP BY guid, name
    ORDER BY MAX(`time`) DESC LIMIT 1
);