A simple Flask-based application to view your LeetCode profile information. I utilized the API provided by Sachin Sharma for retrieving LeetCode profile data.
- Clone the repo:
git clone https://github.com/aayamrajshakya/LeetcodeStatsLookup.git
cd LeetcodeStatsLookup
- Create & start a virtual environment:
python3 -m venv venv
source venv/bin/activate
- Install the required dependencies:
pip install -r requirements.txt
- Start the application:
python app.py
- The site should be live at
http://localhost:5000
.
.
├── app.py
├── README.md
├── requirements.txt
├── static
│ ├── css
│ │ └── styles.css
│ └── js
│ └── main.js
├── templates
│ └── index.html
└── vercel.json
I plan to continue working on this in my leisure time and add features such as a user details like top programming languages, submission statistics, and more.