Skip to content

A simple Flask-based application to view your LeetCode profile information.

Notifications You must be signed in to change notification settings

aayamrajshakya/LeetcodeStatsLookup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.