Merge branch 'v2'

This commit is contained in:
RanchiMall Dev 2024-10-30 20:49:20 +00:00
commit a85209b222
5 changed files with 2918 additions and 580 deletions

6
.gitignore vendored
View File

@ -4,5 +4,9 @@ __pycache__/
config.py config.py
.idea/ .idea/
py3.7/ py3.7/
py3.7.0/ py3/
py3.8/
*.db *.db
*.code-workspace
*.log
py*/

View File

@ -1,6 +1,8 @@
dbfolder = 'path to FLO Token Scanner data folder' dbfolder = ''
sse_pubKey = '' debug_status = False
apiUrl = 'flosight api url' sse_pubKey = '<public key in the format of pybtc python library>'
apilayerAccesskey = 'api layer access key' apiUrl = 'https://flosight.duckdns.org/api/'
FLO_DATA_DIR = '/home/username/.flo'
FLO_CLI_PATH = '/usr/local/bin/flo-cli' # your apilayer.net access key
apilayerAccesskey = '<accesskey>'

1437
parsing.py

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
aiofiles==0.4.0 aiofiles
APScheduler==3.9.1 APScheduler==3.9.1
arrow==0.15.2 arrow==0.15.2
blinker==1.4 blinker==1.4
@ -17,7 +17,7 @@ Jinja2==2.11.3
MarkupSafe==1.1.1 MarkupSafe==1.1.1
multidict==4.5.2 multidict==4.5.2
priority==1.3.0 priority==1.3.0
pybtc==2.0.9 pyflo-lib==2.0.9
pycparser==2.19 pycparser==2.19
python-dateutil==2.8.0 python-dateutil==2.8.0
Quart==0.10.0 Quart==0.10.0