TeamHaltmannSusanaHWCEO commited on
Commit
3d922bf
β€’
1 Parent(s): edae980

[Request to upload Rev one] 12.21.22~

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+ from stremalit import Streamlit
3
+
4
+ # Initialize the Streamlit app.
5
+ app = Streamlit()
6
+
7
+ @app.command() # hug command which renders a hugging face emoji in your terminal
8
+ 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()