jaydeep123423 commited on
Commit
af49432
Β·
unverified Β·
1 Parent(s): 2199008

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -2
README.md CHANGED
@@ -1,2 +1,58 @@
1
- # AIPI503PROJECT
2
- Final project for AIPI503
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 πŸš€