cdleong commited on
Commit
f85b877
1 Parent(s): 7ebb930

download emojis

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -8,4 +8,5 @@ if __name__ == "__main__":
8
  emojis = random.choices(nsv.get_emoji_list(), k=x)
9
 
10
  st.write(f"generating {x} random emojis using [naughty string validator](https://github.com/shashikumarraja/naughty_string_validator_python)")
11
- st.write(emojis)
 
8
  emojis = random.choices(nsv.get_emoji_list(), k=x)
9
 
10
  st.write(f"generating {x} random emojis using [naughty string validator](https://github.com/shashikumarraja/naughty_string_validator_python)")
11
+ st.write(emojis)
12
+ st.download_button("download emojis", emojis)