Local coding workflow CLI for LeetCode CN.
Project description
力扣中文站本地化刷题 CLI 工具
一个面向 LeetCode 中文站的轻量本地刷题 CLI。它复用浏览器登录态,在线获取题目,在当前工作目录生成单文件 solution.py,并支持本地测试和远程提交。
当前版本:v0.7.1
核心能力
- 读取 Chrome 中的
leetcode.cnCookie,复用登录态。 - 在线获取题目详情和题目索引。
- 使用当前工作目录的
solution.py作为唯一主要工作区。 lc solve <题号>生成可编辑的 Python 解题模板。- 生成模板后会按当前系统尝试打开
solution.py。 lc test运行solution.py中的run_cases()。lc doctor一次检查 Session 文件、站点连通性、Cookie 登录态和本地解题文件。lc submit提交 marker 区域代码到 LeetCode 中文站,并轮询判题结果。- 生成模板时写入
problem_id和submit_question_id,避免展示题号和 LeetCode 内部提交 ID 混用。 - 生成模板时加入 Pyright/Ruff 文件级配置,减少刷题工作区的未使用导入、未使用变量和 star import 相关提示。
- 使用统一的客户端错误结果类型区分网络、HTTP、JSON、接口结构和登录态错误。
环境要求
- Windows / Linux / macOS
- Python 3.12+
- uv
- 已在浏览器中登录 LeetCode 中文站
安装
Linux / macOS 一键安装:
curl -LsSf https://raw.githubusercontent.com/Aetherialter/leetcode-local-cli/v0.7.1/scripts/install.sh | sh
Windows PowerShell 一键安装:
powershell -ExecutionPolicy ByPass -Command "irm https://raw.githubusercontent.com/Aetherialter/leetcode-local-cli/v0.7.1/scripts/install.ps1 | iex"
安装器会在缺少 uv 时通过 uv 官方 HTTPS 安装器完成引导,然后使用 uv tool install 安装 leetcode-local-cli,并执行 lc --version 验证结果。安装过程不使用 sudo,也不会保存 PyPI 或 GitHub 凭据。
已经安装 uv 时,也可以直接安装:
uv tool install leetcode-local-cli
升级或卸载:
uv tool upgrade leetcode-local-cli
uv tool uninstall leetcode-local-cli
如果安装完成后当前终端仍找不到 lc,请重新打开终端,或执行 uv tool update-shell 后重载 shell 配置。
基本工作流
lc login
lc doctor
lc status
lc get 1
lc solve 1
lc test
lc submit
常用命令:
| 命令 | 作用 |
|---|---|
lc login |
读取或手动录入 LeetCode 中文站 Cookie |
lc status |
检查当前登录态 |
lc profile |
展示账号和刷题统计 |
lc show --limit 20 --skip 0 |
分页展示题目索引,limit 单次最大为 100 |
lc get <题号> |
在线展示题目详情 |
lc solve <题号> |
覆盖生成当前目录的 solution.py |
lc test |
运行本地 solution.py |
lc doctor |
诊断 Session、网络、Cookie 和 solution.py |
lc submit |
提交当前 solution.py 的提交区域代码 |
solution.py 规则
lc solve 会覆盖当前目录的 solution.py。切换题目前请自行保存当前解法。
生成文件会包含题目元信息和提交区域:
# pyright: reportUnusedImport=false, reportUnusedVariable=false
# ruff: noqa: F401, F841
# @lc problem_id: 1
# @lc submit_question_id: 1
# @lc title: Two Sum
# @lc title_slug: two-sum
# @lc submit_begin
class Solution:
def twoSum(self, nums: List[int], target: int) -> List[int]: pass
# @lc submit_end
lc submit 只提交:
# @lc submit_begin
...
# @lc submit_end
之间的代码。
当前限制
- 当前仅支持 LeetCode 中文站。
- 当前仅自动读取 Chrome Cookie。
lc solve生成模板后会尝试打开solution.py;Windows 使用系统默认打开方式,macOS 使用open,Linux 使用xdg-open。- 当前远程提交仅支持 Python3。
- 当前只维护 CLI 启动目录中的单个
solution.py,不会生成每题独立目录。 - 当前不保存完整题面到本地,也不引入本地数据库。
lc solve会强制覆盖solution.py。lc show的limit必须为正整数且不超过 100,skip必须为非负整数。lc test默认隐藏 Python traceback,只展示本地测试通过或失败。- 如果
run_cases()中没有断言,lc test显示通过是当前轻量化设计允许的行为。 - 树、链表等题型中,LeetCode 模板里的
TreeNode/ListNode定义默认保持注释状态;如需本地构造用例,请自行取消注释并编写测试数据。 lc doctor会向 LeetCode 中文站发送一次登录态查询,并在本地运行语法有效的solution.py;本地运行超过 10 秒会判定失败。
安全说明
登录态会保存到:
.leetcode_local_cli/session.json
该文件可能包含敏感 Cookie 信息,已在 .gitignore 中忽略。v0.7 首次读取登录态时会把旧版 .aether_lc/session.json 自动迁移到新目录;迁移过程不会输出 Cookie 值。发布前请确认仓库根目录的 solution.py 为空,避免把个人解法提交到公开仓库。
登录态说明
leetcode-local-cli 会把浏览器 Cookie 的本地副本保存到 CLI 启动目录下的 .leetcode_local_cli/session.json。本地保存的 Cookie 不会延长 LeetCode 登录态有效期;实际是否有效以 LeetCode 服务端验证为准。v0.8 的 lc init 会进一步将用户登录态与工作区分离。
如果浏览器 Cookie 刷新,或旧 Cookie 被服务端判定失效,CLI 可能在 lc status、lc profile 或 lc submit 时提示重新执行:
lc login
lc show 和 lc get 访问公开题目数据,可能在登录态失效时仍然可用。遇到登录态、网络或本地解题文件问题时,可以执行:
lc doctor
诊断输出只包含用户名、Cookie 缺失项等安全元数据,不会展示 Cookie 值。
开发与验证
uv run ruff format src tests scripts
uv run ruff check src tests scripts pyproject.toml
uv run pyright src tests scripts
uv run pytest
uv build --no-sources
发布前常用手动检查:
uv run lc --help
uv run lc --version
uv run lc doctor
uv run lc get 2196
uv run lc solve 1
uv run lc test
uv run ruff check solution.py
维护者发布流程见 RELEASING.md。标签触发的发布工作流会在 Linux、macOS 和 Windows 上验收安装器,分别验证 wheel 与源码包,通过 PyPI Trusted Publisher 上传发行包,并创建 GitHub Release。
项目结构
src/leetcode_local_cli/
auth.py Cookie 读取与本地 session
client.py LeetCode 中文站 HTTP 客户端
cli.py Typer 命令入口
doctor.py 本地环境、网络与登录态诊断
problem.py 题号解析与题目数据标准化
service.py 应用层流程编排
ui.py Rich 终端输出
version.py 已安装发行版版本读取
workspace.py solution.py 生成、解析与运行
scripts/
install.sh Linux/macOS 一键安装器
install.ps1 Windows PowerShell 一键安装器
smoke_test.py wheel 与源码包发布验收
.github/workflows/
release.yml 跨平台验证、PyPI 发布与 GitHub Release
tests/
test_auth.py
test_cli.py
test_client.py
test_doctor.py
test_install_scripts.py
test_problem.py
test_release.py
test_service.py
test_ui.py
test_workspace.py
版本路线
v0.5.x: 远程提交上线后的 bugfix patch 线。v0.5.4: 修复 GraphQLdata: null导致 traceback,并精简 README。v0.5.5: 引入客户端错误结果类型,收敛 service 层错误处理并补充边界测试。v0.5.6: 收束lc show参数校验,避免非法分页参数触发远端接口异常提示。v0.5.7: 修复非 Windows 环境导入os.startfile导致 CLI 无法启动的问题。v0.6.0: 新增lc doctor,完善客户端边界校验、本地文件诊断、错误提示和提交目标展示。v0.7.0: uv 全局工具安装、跨平台引导脚本和 PyPI Trusted Publisher 发布流程。v0.7.1: 修正安装版 CLI 的命令建议,并引入版本化 GitHub Release Notes。v0.8:lc init与正式工作区管理。v0.9: 轻量缓存。v0.10: 样例提取原型。v1.0: 稳定轻量 CLI。
License
本项目使用 MIT License 开源。
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file leetcode_local_cli-0.7.1.tar.gz.
File metadata
- Download URL: leetcode_local_cli-0.7.1.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb2f5a5af1a9a5b27e257be51f4d1baaf29a950d97eb36d611e99d4100df39ef
|
|
| MD5 |
3e3051fb8eeda9356a29a001e62a6421
|
|
| BLAKE2b-256 |
f59a8274e24670b21a9f3089e0201275408c692412a131c34ae74ff10bef4902
|
File details
Details for the file leetcode_local_cli-0.7.1-py3-none-any.whl.
File metadata
- Download URL: leetcode_local_cli-0.7.1-py3-none-any.whl
- Upload date:
- Size: 26.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47d5b38d994212c300a0d9479bc9472a13e31cccfaceec5031b54f9de83d2d92
|
|
| MD5 |
f3157b332cc9c6fd95b3ad8f22dbabcb
|
|
| BLAKE2b-256 |
b09b1ada39e16c1db874e7b1e7cae7a85c8c864a198ccf65c57ff79ffa6b7365
|