File tree 1 file changed +27
-11
lines changed 1 file changed +27
-11
lines changed Original file line number Diff line number Diff line change 1
- To Run This KeyLogger Code Using Python
1
+ # To Run This Wikipedia Extractor Code Using Python
2
2
3
- You need to install wikipedia library
3
+ ### ** You need to install ' wikipedia' library using pip **
4
4
5
- How to install?
5
+ #### Steps to Install 'wikipedia'
6
6
7
- First create virtual env in your IDE and set it by using given commands
8
7
9
- # macOS
8
+
9
+ ** First create virtual env in your IDE and set it by using given commands**
10
+
11
+ ##### macOS
12
+ ```
10
13
python3 -m venv .venv
11
14
source .venv/bin/activate
15
+ ```
12
16
13
17
14
- # Linux
15
- sudo apt-get install python3-venv # If needed
18
+ ##### Linux
19
+
20
+ ```
21
+ sudo apt-get install python3-venv #If needed
16
22
python3 -m venv .venv
17
23
source .venv/bin/activate
24
+ ```
18
25
19
- # Windows
26
+ ##### Windows
27
+ ```
20
28
py -3 -m venv .venv
21
29
.venv\scripts\activate
30
+ ```
22
31
23
- use this command in your virtual env to install pynput
32
+ use this command in your virtual env to install wikipedia
24
33
34
+ ```
25
35
pip install wikipedia
36
+ ```
37
+
26
38
27
39
-------
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
+
29
46
30
- You can change "language = jp" to another language you wish to translate to as well.
31
47
32
48
33
49
You can’t perform that action at this time.
0 commit comments