-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chg: [qrcode] improve qrcode extractor + add v5.8 update
- Loading branch information
Showing
4 changed files
with
107 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,10 @@ ail_typo_squatting | |
# OCR | ||
easyocr | ||
|
||
# Qrcode | ||
qreader | ||
pyzbar | ||
|
||
# Tests | ||
nose2>=0.12.0 | ||
coverage>=5.5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env python3 | ||
# -*-coding:UTF-8 -* | ||
|
||
import os | ||
import sys | ||
|
||
sys.path.append(os.environ['AIL_HOME']) | ||
################################## | ||
# Import Project packages | ||
################################## | ||
from update.bin.ail_updater import AIL_Updater | ||
|
||
class Updater(AIL_Updater): | ||
"""default Updater.""" | ||
|
||
def __init__(self, version): | ||
super(Updater, self).__init__(version) | ||
|
||
|
||
if __name__ == '__main__': | ||
updater = Updater('v5.8') | ||
updater.run_update() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/bin/bash | ||
|
||
[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1; | ||
[ -z "$AIL_REDIS" ] && echo "Needs the env var AIL_REDIS. Run the script from the virtual environment." && exit 1; | ||
[ -z "$AIL_BIN" ] && echo "Needs the env var AIL_ARDB. Run the script from the virtual environment." && exit 1; | ||
[ -z "$AIL_FLASK" ] && echo "Needs the env var AIL_FLASK. Run the script from the virtual environment." && exit 1; | ||
|
||
export PATH=$AIL_HOME:$PATH | ||
export PATH=$AIL_REDIS:$PATH | ||
export PATH=$AIL_BIN:$PATH | ||
export PATH=$AIL_FLASK:$PATH | ||
|
||
GREEN="\\033[1;32m" | ||
DEFAULT="\\033[0;39m" | ||
|
||
echo -e $GREEN"Shutting down AIL ..."$DEFAULT | ||
bash ${AIL_BIN}/LAUNCH.sh -ks | ||
wait | ||
|
||
# SUBMODULES # | ||
git submodule update | ||
|
||
bash ${AIL_BIN}/LAUNCH.sh -lrv | ||
bash ${AIL_BIN}/LAUNCH.sh -lkv | ||
|
||
echo "" | ||
echo -e $GREEN"Updating python packages ..."$DEFAULT | ||
echo "" | ||
pip install -U pyzbar | ||
pip install -U qreader | ||
|
||
echo "" | ||
echo -e $GREEN"Updating AIL VERSION ..."$DEFAULT | ||
echo "" | ||
python ${AIL_HOME}/update/v5.8/Update.py | ||
wait | ||
echo "" | ||
echo "" | ||
|
||
exit 0 |