Skip to content

Commit edf9a51

Browse files
authored
Update README.md
1 parent bea28f4 commit edf9a51

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ I've been solving LeetCode problems recently, and when I realized that why not p
55

66
At the begining, I found a useful dependency in python called ```BeautifulSoup```, but it seems that it is not able to deal with dynamic website, which means that if some elements shown in a website is controlled by javascript. After serching for a while, I found ```selenium```, which automatically controll website like a human, but it seems that it is unefficient to use selenium to parse data in html, so I combine BeautifulSoup and selenium to finish this project.
77

8-
#### Install dependencies
8+
#### Install Dependencies
99
```
1010
# pip install bs4
1111
# pip install beautifulsoup
1212
# pip install selenium
1313
```
1414

1515
#### Install ChromeDriver
16-
This project use [chromedriver](http://chromedriver.chromium.org/) in selenium, before running this project, you have to add the downloaded executable file to PATH enviroment variable.
16+
This project use [Chromedriver](http://chromedriver.chromium.org/) in selenium, before running this project, you have to add the downloaded executable file to PATH enviroment variable.
1717

1818
#### Setting
1919
You have to modify some of the variable in the project as shown below.
@@ -29,5 +29,8 @@ After executing the project, each LeetCode problem that you've solved will have
2929

3030
I tried this project on Windows10 & Ubuntu, and it works fine.
3131

32+
#### Notice
33+
If you have multiple sessions in your account, switch to the session that you want to crawl ac codes before execute.
34+
3235
#### To Do
3336
1. Currently, this project will only save the latest accepted submission code.

0 commit comments

Comments
 (0)