This Python web application, named "PlasticGrad," provides detailed information about plastic degraders based on different search options. Users can search for degraders by Microorganism, Plastic, or Enzyme and view relevant information in a tabular format.
The Plastic Degraders Information Web App is built using Python and Flask, making it easy to search for specific degraders based on user-defined criteria. It utilizes a TSV (Tab-Separated Values) file containing data about plastic degraders, which is loaded and displayed to the user.
- Search for plastic degraders by Microorganism, Plastic, or Enzyme.
- Dynamic filtering of data based on user input.
- Clean and user-friendly interface.
To run this web application locally, follow these steps:
- Clone this repository to your local machine.
git clone https://github.com/yourusername/plastic-degraders-app.git
cd plastic-degraders-app
- Install the required Python packages using pip.
pip install flask
- Run the application.
python app.py
The web app will be accessible at http://localhost:5000 in your web browser.
Access the Plastic Degraders web app in your web browser. Choose a search option from the dropdown menu (Microorganism, Plastic, or Enzyme). Enter your search term in the input field. Click the "Search" button. The application will display a table with the relevant information based on your search criteria.
The project directory structure is as follows:
plastic-degraders-app/
│
├── app.py
├── degraders_list.tsv
├── templates/
│ └── degraders.html
└── README.md
- app.py: The main Flask application file.
- degraders_list.tsv: The TSV file containing plastic degraders data.
- templates/degraders.html: The HTML template for rendering the web page.