Added BWT

This commit is contained in:
curly60e 2021-11-28 14:32:30 -03:00 committed by GitHub
parent 0bce0b4242
commit 22a522016d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
ppi.py
View file

@ -215,7 +215,7 @@ def statsConn():
def whalalConn():
try:
conn = """curl -s 'https://api.whale-alert.io/v1/transactions?api_key=3LYGErNwoCSj6QUsWOWdpEuGTuYxakMZ&limit=7&currency=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&currency=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: