Skip to content

Commit 9e7dd9f

Browse files
update README.md
1 parent 3446b76 commit 9e7dd9f

File tree

5 files changed

+28
-13
lines changed

5 files changed

+28
-13
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
11
### Leetcode CLI
2+
3+
A command-line interface tool for LeetCode that helps you practice coding problems directly from your terminal. This CLI application streamlines the process of accessing, solving, and submitting LeetCode problems without leaving your development environment.
4+
5+
### Commands
6+
- `leetcode-cli login` - Login to your LeetCode account
7+
- `leetcode-cli logout` - Logout from your LeetCode account
8+
- `leetcode-cli profile` - Show your LeetCode profile
9+
- `leetcode-cli daily` - Show today's daily challenge
10+
- `leetcode-cli list` - List all problems
11+
- `leetcode-cli show` - Show problem details
12+
- `leetcode-cli test` - Test your solution
13+
- `leetcode-cli test` - Test your solution
14+
- `leetcode-cli submit` - Submit your solution
15+
- `leetcode-cli edit` - Edit your solution
16+
17+
### Installation
18+
19+
```bash
20+
git clone https://github.com/yuvrajsinh5252/leetcode-cli
21+
cd leetcode-cli
22+
python -m venv .venv
23+
source ./.venv/bin/activate
24+
pip install -r requirements.txt
25+
pip install -e .
26+
```
27+
28+
Currently under development. More features and documentation will be added soon.

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ typer
22
requests
33
gql[all]
44
bs4
5-
setuptools
6-
python-leetcode
5+
setuptools

src/lib/problem_ui.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from rich.markdown import Markdown
44
from rich.layout import Layout
55
from rich.box import ROUNDED
6-
from rich.text import Text
76
from bs4 import BeautifulSoup, Tag
87
import json
98
from dataclasses import dataclass

temp.cpp

Whitespace-only changes.

two-sum.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)