Spaces:
Runtime error
Runtime error
File size: 1,160 Bytes
1f4d383 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
Project Title: CSV Searcher A simple web application using Streamlit and Pandas, to help you search through a database of talented individuals based on specific attributes. Table of Contents Installation Usage License Installation Before starting, ensure you have the following requirements: Python 3.6 or later Streamlit 0.84.0 or later Pandas 1.3.0 or later You can install these packages using pip: bash Copy code pip install streamlit pandas Usage Start the Streamlit app by navigating to the directory containing the script and running: bash Copy code streamlit run main.py Navigate to the URL provided in your terminal to view the app in your web browser. On the sidebar, upload your CSV file containing data about various talents using the 'Upload your Talent CSV' button. In the main section of the app, input any attributes you wish to search for in the database. The application will display the corresponding rows from the CSV file that match your search criteria. The search is case-insensitive and can be performed on both string and numeric columns. License This project is licensed under the MIT License. See the LICENSE file for details. |