You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python Project to get the list of all the pull requests made to your repository. It has plugins for all popular websites like Github, Gitlab, Gerrit and Pagure.
3
+
4
+
## How to setup
5
+
* Install the **virtualenv** package using pip
6
+
7
+
Linux
8
+
```
9
+
pip3 install virtualenv
10
+
```
11
+
Windows
12
+
```
13
+
pip install virtualenv
14
+
```
15
+
16
+
* Setup a virtual environment
17
+
```
18
+
virtualenv myenv
19
+
```
20
+
* Activate the virtual environment
21
+
22
+
Linux
23
+
```
24
+
source myenv/bin/activate
25
+
```
26
+
Windows
27
+
```
28
+
myenv\Scripts\ activate
29
+
```
30
+
* Install all the needed packages using pip.
31
+
32
+
**Linux**
33
+
```
34
+
pip3 install -r requirement.txt
35
+
```
36
+
**Windows**
37
+
```
38
+
pip install -r requirement.txt
39
+
```
40
+
## How to run
41
+
Just run the app.py file along with the following flags:
42
+
43
+
**--site** - the website you want to get data from.
44
+
45
+
**--username** - username.
46
+
47
+
**--repo** - name of the repository.
48
+
49
+
**Linux**
50
+
```
51
+
python3 app.py --site github --username user --repo repo_name
0 commit comments