HQHelloscpv1 / app.py
TeamHaltmannSusanaHWCEO's picture
[Request to upload Rev one] 12.21.22~
3d922bf
raw
history blame
972 Bytes
import requests
from stremalit import Streamlit
# Initialize the Streamlit app.
app = Streamlit()
@app.command() # hug command which renders a hugging face emoji in your terminal
def hug(): # function to render the ascii art of 'Sponsored by BlitzVPN 3.0' print('\n β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—') print('β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆ ╔════ β•šβ•β•β–ˆβ–ˆβŒβ”€β”€β”€β”¬β”€β”€β”€') print('β–ˆβ–ˆ β•‘ β–ˆβ–ˆβ”€β–€*β–€*β–€ ─▒▒░▄░░▄ β–„β–ƒβ–‚β–„β–… β”‚_,--\'`````.') print('▓▓▓─────┴──────────────────── β”‚') print("""β–‘β–‘β–‘β–‘β–‘ β–’|/ \___,'""") @hugging-face emoji # Render a hugging face emoji with Print statement print(u"\\U0001F917") if __name__ == "__main__": app.run()