Update README
This commit is contained in:
parent
c4146eb191
commit
c87cfda51a
3 changed files with 22 additions and 6 deletions
|
@ -1,5 +1,4 @@
|
||||||
# getchannels
|
# installation
|
||||||
## installation
|
|
||||||
## pre-requis
|
## pre-requis
|
||||||
Il faut Python 3 & pip car le code est fait en python.
|
Il faut Python 3 & pip car le code est fait en python.
|
||||||
## Installation
|
## Installation
|
||||||
|
@ -13,8 +12,25 @@ Il faut créer un fichier dev_config.py avec ses infos de connection au Rocket.c
|
||||||
'user' : 'username',
|
'user' : 'username',
|
||||||
'password': 'pwd'
|
'password': 'pwd'
|
||||||
}
|
}
|
||||||
# Lancer
|
# Get Channels
|
||||||
|
Permet de générer les infos pour la page
|
||||||
|
https://crapaud-fou.org/channelslist/
|
||||||
|
## Lancer
|
||||||
python getchannels.py
|
python getchannels.py
|
||||||
|
|
||||||
# Commit
|
## Commit
|
||||||
Un fichier sera créé dans le répertoire [../public/data/result.json](../public/data/result.json)
|
Des fichiers seront créé
|
||||||
|
* [../public/data/channelslist.json](../public/data/channelslist.json)
|
||||||
|
* [../public/data/cohortescolor.json](../public/data/cohortescolor.json)
|
||||||
|
* [../public/data/cohorteslist.json](../public/data/cohorteslist.json)
|
||||||
|
|
||||||
|
# Get Stats
|
||||||
|
Permet de générer les infos pour la page
|
||||||
|
https://crapaud-fou.org/channelsstats/
|
||||||
|
|
||||||
|
## Lancer
|
||||||
|
python getstats.py
|
||||||
|
|
||||||
|
## Commit
|
||||||
|
Un fichier sera créé
|
||||||
|
* [../public/data/channelsstat.json](../public/data/channelsstat.json)
|
|
@ -142,7 +142,7 @@ dataFolder = os.path.join(rootFolder, 'public', 'data')
|
||||||
|
|
||||||
|
|
||||||
statsFilePath = os.path.abspath(
|
statsFilePath = os.path.abspath(
|
||||||
os.path.join(dataFolder, 'messagesByChannel.json'))
|
os.path.join(dataFolder, 'channelsstat.json'))
|
||||||
with open(statsFilePath, "w") as file_write:
|
with open(statsFilePath, "w") as file_write:
|
||||||
json.dump(info, file_write)
|
json.dump(info, file_write)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue