Update ppi.py

This commit is contained in:
Satoshi Nakamoto 2022-03-12 16:31:25 +01:00 committed by GitHub
parent df9a506e79
commit 27c54ccfdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -317,6 +317,27 @@ def statsConn():
#-----------------------------END Stats--------------------------------
#-----------------------------PGP--------------------------------
def pgpConn():
try:
conn = """curl -s https://web.archive.org/web/20110228054007/http://www.bitcoin.org/Satoshi_Nakamoto.asc """
a = os.popen(conn).read()
clear()
blogo()
closed()
output = render(
"pgp", colors=['yellow'], align='left', font='tiny'
)
print(output)
print(a)
input("\a\nContinue...")
except:
pass
#-----------------------------END PGP--------------------------------
#-----------------------------Satoshi--------------------------------
def satoshiConn():