Skip to content

Commit 59f0c6c

Browse files
committed
readme
1 parent c5d11ab commit 59f0c6c

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

‎.gitignore‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
docs
12
_nbdev.py
23
log.txt
34
*.bak

‎Makefile‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
.ONESHELL:
22
SHELL := /bin/bash
3-
SRC = $(wildcard ./*.ipynb)
3+
SRC = $(wildcard nbs/*.ipynb)
44

5-
all:
6-
echo not using nbdev at the moment
5+
all: ghtop docs
76

87
ghtop: $(SRC)
98
nbdev_build_lib

‎README.md‎

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,42 @@
11
# ghtop
22
> See what's happening on GitHub in real time (also helpful if you need to use up your API quota as quickly as possible).
33
4+
45
`ghtop` provides a number of views of all current public activity from all users across the entire GitHub platform. (Note that GitHub delays all events by five minutes.)
56

6-
<img style="width:850px" width="850" src="https://user-images.githubusercontent.com/56260/101270865-3f033780-3732-11eb-8dcc-97caf7cc58e6.png">
7+
<img width="850" src="https://user-images.githubusercontent.com/56260/101270865-3f033780-3732-11eb-8dcc-97caf7cc58e6.png" style="max-width: 850px">
78

89
## Install
910

10-
`pip install ghtop`.
11+
Either `pip install ghtop` or `conda install -c fastai ghtop`.
1112

1213
## How to use
1314

14-
Run `ghtop -h` to view the help. There are 4 views you can choose: `ghtop simple`, `ghtop tail`, `ghtop quad`, or `ghtop users`. Each are shown and described below.
15+
Run `ghtop -h` to view the help. There are 4 views you can choose:
1516

16-
### ghtop simple
17+
### `ghtop simple`
1718

1819
A simple dump to your console of all events as they happen.
1920

20-
<img src="https://user-images.githubusercontent.com/346999/101861674-79e7df80-3b25-11eb-92d3-f888843f4aa2.png" style="width:500px" width="500">
21+
<img src="https://user-images.githubusercontent.com/346999/101861674-79e7df80-3b25-11eb-92d3-f888843f4aa2.png" width="500" style="max-width: 500px">
2122

22-
### ghtop tail
23+
### `ghtop tail`
2324

2425
Like `simple`, but removes most bots, and only includes releases, issues and PRs (open, close, and comment events). A summary of the frequency of push events is also shown at the bottom of the screen.
2526

26-
<img src="https://user-images.githubusercontent.com/346999/101861658-69376980-3b25-11eb-96ef-9d68f075abf7.png" style="width:700px" width="700">
27+
<img src="https://user-images.githubusercontent.com/346999/101861658-69376980-3b25-11eb-96ef-9d68f075abf7.png" width="700" style="max-width: 700px">
2728

28-
### ghtop quad
29+
### `ghtop quad`
2930

3031
The same information as `tail`, but in a split window showing separately PRs, issues, pushes, and releases. This view does not remove bot activity.
3132

32-
<img src="https://user-images.githubusercontent.com/346999/101861560-2ecdcc80-3b25-11eb-9fba-25382b2df65f.png" style="width:900px" width="900">
33+
<img src="https://user-images.githubusercontent.com/346999/101861560-2ecdcc80-3b25-11eb-9fba-25382b2df65f.png" width="900" style="max-width: 900px">
3334

34-
### ghtop users
35+
### `ghtop users`
3536

3637
A summary of activity for the most active current users, including bots.
3738

38-
<img src="https://user-images.githubusercontent.com/346999/101861612-4b6a0480-3b25-11eb-8124-19bb2434c27e.png" style="width:500px" width="500">
39+
<img src="https://user-images.githubusercontent.com/346999/101861612-4b6a0480-3b25-11eb-8124-19bb2434c27e.png" width="500" style="max-width: 500px">
3940

4041
----
4142

0 commit comments

Comments
 (0)