User Agent Analyzer is a simple web application built using Streamlit and Python. This application allows users to input a user agent string and receive information about the device being used, including device type, operating system, and browser.
- Input a user agent for analysis.
- Display information about the device, operating system, and browser.
- Determine whether the device is a mobile, tablet, or PC.
Before running this application, ensure you have Python 3.x and pip installed on your system.
- Clone this repository:
- Create and activate a virtual environment (optional but recommended):
python -m venv venv
source venv/bin/activate # For macOS/Linux users
venv\Scripts\activate # For Windows users
- Install dependencies:
pip install streamlit user-agents
- Run the Application