Spaces:
Sleeping
Sleeping
Change recommended file length
Browse files
app.py
CHANGED
@@ -78,7 +78,7 @@ def decode(byte_stream):
|
|
78 |
|
79 |
with encode_col:
|
80 |
st.header('Convert your python file to binary.')
|
81 |
-
python_file = st.file_uploader("Upload your python file here. I recommend files up to
|
82 |
if python_file is not None:
|
83 |
stringio = StringIO(python_file.getvalue().decode("utf-8"))
|
84 |
code = stringio.read()
|
|
|
78 |
|
79 |
with encode_col:
|
80 |
st.header('Convert your python file to binary.')
|
81 |
+
python_file = st.file_uploader("Upload your python file here. I recommend files up to 10-20 lines, so it doesn't take too long.")
|
82 |
if python_file is not None:
|
83 |
stringio = StringIO(python_file.getvalue().decode("utf-8"))
|
84 |
code = stringio.read()
|