Skip to content

Files

Latest commit

ba2096c · Dec 24, 2024

History

History
46 lines (39 loc) · 1.1 KB

README.md

File metadata and controls

46 lines (39 loc) · 1.1 KB

LeetCode Stats Lookup

A simple Flask-based application to view your LeetCode profile information. I utilized the API provided by Sachin Sharma for retrieving LeetCode profile data.

How to run locally

  1. Clone the repo:
git clone https://github.com/aayamrajshakya/LeetcodeStatsLookup.git
cd LeetcodeStatsLookup
  1. Create & start a virtual environment:
python3 -m venv venv
source venv/bin/activate
  1. Install the required dependencies:
pip install -r requirements.txt
  1. Start the application:
python app.py
  1. The site should be live at http://localhost:5000.

Repo directory tree:

.
├── app.py
├── README.md
├── requirements.txt
├── static
│   ├── css
│   │   └── styles.css
│   └── js
│       └── main.js
├── templates
│   └── index.html
└── vercel.json

Future plan:

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.