mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-16 13:00:52 +02:00
Added BWT
This commit is contained in:
parent
0bce0b4242
commit
22a522016d
1 changed files with 15 additions and 1 deletions
16
ppi.py
16
ppi.py
|
|
@ -215,7 +215,7 @@ def statsConn():
|
|||
|
||||
def whalalConn():
|
||||
try:
|
||||
conn = """curl -s 'https://api.whale-alert.io/v1/transactions?api_key=3LYGErNwoCSj6QUsWOWdpEuGTuYxakMZ&limit=7¤cy=btc' | jq -C '.transactions[]' | tr -d '{|}|,|"|:|' | grep -E "blockchain|amount" -A 8 | grep -v -E "\--|from|symbol|to|id" | xargs -L 1 | sed 's/blockchain/PyBLØCK/g' | sed 's/amount/₿/g' | sed 's/_usd/=$/g'"""
|
||||
conn = """curl -s 'https://api.whale-alert.io/v1/transactions?api_key=3LYGErNwoCSj6QUsWOWdpEuGTuYxakMZ&limit=7¤cy=btc' | jq -C '.transactions[]' | tr -d '{|}|,|"|:|' | grep -E "blockchain|amount" -A 8 | grep -v -E "\--|from|symbol|to|id" | xargs -L 1 | sed 's/blockchain/PyBLØCK/g' | sed 's/amount/₿/g' | sed 's/_usd/=$/g'"""
|
||||
a = os.popen(conn).read()
|
||||
clear()
|
||||
blogo()
|
||||
|
|
@ -228,7 +228,21 @@ def whalalConn():
|
|||
pass
|
||||
|
||||
#-----------------------------END Whale Alert--------------------------------
|
||||
#-----------------------------bwt.dev--------------------------------
|
||||
|
||||
def bwtConn():
|
||||
try:
|
||||
conn = "curl -s https://bwt.dev/banner.txt"
|
||||
a = os.popen(conn).read()
|
||||
clear()
|
||||
blogo()
|
||||
closed()
|
||||
print(a)
|
||||
input("\a\nContinue...")
|
||||
except:
|
||||
pass
|
||||
|
||||
#-----------------------------END bwt.dev--------------------------------
|
||||
|
||||
def trustednode():
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue