Add a File Picker Widget
See original GitHub issueProblem
Sometimes it’s nice to be able to specify a file on the command line.
Solution
A file picker!
MVP
The file picker can be called as follows:
with st.file_input() as input:
if input == None:
st.warning('No file selected.')
else:
file_contents = input.read()
Possible additions
Down the line, we could imagine keyword args for filetypes and folder selection.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:65
- Comments:42 (9 by maintainers)
Top Results From Across the Web
file_picker | Flutter Package - Pub.dev
A package that allows you to use a native file explorer to pick single or multiple absolute file paths, with extension filtering support....
Read more >Filepicker - Appsmith
Filepicker widget is used to allow users to upload files from their local machines to any cloud storage via API. Cloudinary and Amazon...
Read more >Filepicker | ToolJet - Documentation
Filepicker widget allows the user to drag and drop files or upload files by browsing the filesystem and selecting one or more files...
Read more >Open files and folders with a picker - UWP - Microsoft Learn
This makes your app the calling app. The file picker interacts with the system and/or other apps to let the user navigate and...
Read more >Custom Widget with File Picker ( for API )
FlutterFlow lover!! Im having a problem with File Upload which is the most important part of my app.. I m ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Would be very useful to get the file path.
any update on this ? It is the only thing stopping me from productionising my model using streamlit. Any help is greatly appreciated.