Skip to content

Commit e27bab4

Browse files
authored
Update README.md
1 parent 3d9b8a0 commit e27bab4

File tree

1 file changed

+27
-11
lines changed

1 file changed

+27
-11
lines changed

Wikipedia Data Extractor/README.md

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,49 @@
1-
To Run This KeyLogger Code Using Python
1+
# To Run This Wikipedia Extractor Code Using Python
22

3-
You need to install wikipedia library
3+
### **You need to install 'wikipedia' library using pip**
44

5-
How to install?
5+
#### Steps to Install 'wikipedia'
66

7-
First create virtual env in your IDE and set it by using given commands
87

9-
# macOS
8+
9+
**First create virtual env in your IDE and set it by using given commands**
10+
11+
##### macOS
12+
```
1013
python3 -m venv .venv
1114
source .venv/bin/activate
15+
```
1216

1317

14-
# Linux
15-
sudo apt-get install python3-venv # If needed
18+
##### Linux
19+
20+
```
21+
sudo apt-get install python3-venv #If needed
1622
python3 -m venv .venv
1723
source .venv/bin/activate
24+
```
1825

19-
# Windows
26+
##### Windows
27+
```
2028
py -3 -m venv .venv
2129
.venv\scripts\activate
30+
```
2231

23-
use this command in your virtual env to install pynput
32+
use this command in your virtual env to install wikipedia
2433

34+
```
2535
pip install wikipedia
36+
```
37+
2638

2739
-------
28-
Now you can run this in your IDE
40+
**Now you can run this in your IDE**
41+
42+
###### **You can change "language = jp" to another language you wish to translate to as well.**
43+
44+
45+
2946

30-
You can change "language = jp" to another language you wish to translate to as well.
3147

3248

3349

0 commit comments

Comments
 (0)