Typo error

This commit is contained in:
curly60e 2021-11-27 10:12:54 -03:00 committed by GitHub
parent 9db36b5272
commit fdc8ca1f18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
ppi.py
View file

@ -212,7 +212,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" | 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" | xargs -L 1 | sed 's/blockchain/PyBLØCK/g' | sed 's/amount/₿/g' | sed 's/_usd/=$/g'"""
a = os.popen(conn).read()
clear()
blogo()