Spaces:
No application file
No application file
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,2 +1,58 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Car Dealership VIN Lookup App
|
| 2 |
+
|
| 3 |
+
## π Overview
|
| 4 |
+
This is a simple app for a car dealership that allows users to look up vehicle information (year, make, and model) by entering a VIN number.
|
| 5 |
+
|
| 6 |
+
Additionally, the app keeps track of search frequency and lets users view the **Top 3 most looked-up vehicle makes**.
|
| 7 |
+
|
| 8 |
+
All vehicle data is retrieved from the [NHTSA (National Highway Traffic Safety Administration) VIN decoding API](https://vpic.nhtsa.dot.gov/api/), accessed via the helper module [`nhtsa_api_call.py`](./nhtsa_api_call.py).
|
| 9 |
+
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
## βοΈ Features
|
| 13 |
+
- π Lookup vehicle details (year, make, model) by VIN number
|
| 14 |
+
- π View the **Top 3 most searched vehicle makes**
|
| 15 |
+
- π Fetches real-time data from the **NHTSA VIN API**
|
| 16 |
+
- π₯οΈ Simple and interactive command-line interface
|
| 17 |
+
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
## π Getting Started
|
| 21 |
+
|
| 22 |
+
### 1. Clone the Repository
|
| 23 |
+
|
| 24 |
+
git clone https://github.com/averyestopinal/AIPI503PROJECT
|
| 25 |
+
|
| 26 |
+
2. Install Dependencies
|
| 27 |
+
This app uses only standard Python libraries (no external dependencies).
|
| 28 |
+
However, make sure you are running Python 3.7+.
|
| 29 |
+
|
| 30 |
+
3. Run the Application
|
| 31 |
+
bash
|
| 32 |
+
Copy code
|
| 33 |
+
python main.py
|
| 34 |
+
π§© Project Structure
|
| 35 |
+
bash
|
| 36 |
+
Copy code
|
| 37 |
+
.
|
| 38 |
+
βββ main.py # Entry point for the application
|
| 39 |
+
βββ nhtsa_api_call.py # Helper module for API requests
|
| 40 |
+
βββ README.md # Project documentation
|
| 41 |
+
π‘ API Reference
|
| 42 |
+
The app uses the NHTSA VIN Decoder API which provides vehicle details when supplied with a VIN number.
|
| 43 |
+
|
| 44 |
+
Example request:
|
| 45 |
+
ruby
|
| 46 |
+
Copy code
|
| 47 |
+
https://vpic.nhtsa.dot.gov/api/vehicles/DecodeVinValues/<VIN>?format=json
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
π¨βπ» Author
|
| 51 |
+
Developed as part of a learning project by
|
| 52 |
+
1. Avery Estopinal
|
| 53 |
+
2. Sharmil K.
|
| 54 |
+
3. Eugenia Tate
|
| 55 |
+
4. Jaideep Aher
|
| 56 |
+
|
| 57 |
+
Contributions are welcome!
|
| 58 |
+
Feel free to fork and submit a pull request π
|