LeetScrape icon indicating copy to clipboard operation
LeetScrape copied to clipboard

LeetScrape: Python package for quickly downloading and saving LeetCode problems offline, including topics, difficulty, and code stubs in various languages. Ideal for coding skill enhancement and inter...

Results 4 LeetScrape issues
Sort by recently updated
recently updated
newest added

When running `leetscrape question 26`, I'm getting: ``` Generating code stub for 26. remove-duplicates-from-sorted-array Traceback (most recent call last): File "", line 198, in _run_module_as_main File "", line 88, in...

It seems there may be limited access to the https://leetcode.com/api/problems/all/ endpoint at the moment. Able to see the JSON in the browser but not able to access it using the...

Traceback (most recent call last): File "C:\Users\adity\OneDrive - Louisiana State University\Documents\leetscrape_test\test1.py", line 1, in from leetscrape import GetQuestionsList File "C:\Users\adity\miniconda3\envs\myenv\Lib\site-packages\leetscrape\__init__.py", line 2, in from .generate_code_stub import GenerateCodeStub File "C:\Users\adity\miniconda3\envs\myenv\Lib\site-packages\leetscrape\generate_code_stub.py", line...

Tested on ArchLinux (virtual env) and inside docker container: ``` python -m venv . source bin/activate pip install leetscrape leetscrape ``` ``` cat Dockerfile FROM python:3 RUN pip install leetscrape...