@@ -28,10 +28,12 @@ Once you have usrse installed, you likely quickly want to get data
2828
2929.. code-block :: console
3030
31- $ usrse get posts
32- $ usrse get newsletters
33- $ usrse get dei
34- $ usrse get events
31+ $ usrse get posts
32+ $ usrse get newsletters
33+ $ usrse get dei
34+ $ usrse get events
35+ $ usrse get member-counts
36+ $ usrse get jobs
3537
3638 Or snazz things up a bit!
3739
@@ -41,6 +43,8 @@ Or snazz things up a bit!
4143 $ usrse get newsletters --live
4244 $ usrse get dei --live
4345 $ usrse get events --live
46+ $ usrse get member-counts --live
47+ $ usrse get jobs --live
4448
4549 Or output as json or save to json for later.
4650
@@ -60,6 +64,36 @@ Commands
6064
6165The following commands are available!
6266
67+ .. _getting_started-commands-list :
68+
69+ List
70+ ----
71+
72+ The first thing you might want to do is see what endpoints are available.
73+ You can do that with ``list ``:
74+
75+ .. code-block :: console
76+
77+ $ usrse list
78+ dei
79+ events
80+ jobs
81+ member-counts
82+ newsletters
83+ posts
84+
85+
86+ This is also nice to pipe into a bash loop for doing something:
87+
88+ .. code-block :: console
89+
90+ for endpoint in $(usrse list); do
91+ # do something here
92+ echo $endpoint;
93+ done
94+
95+ Once you know endpoints, then you can ``get `` them, discussed next.
96+
6397.. _getting_started-commands-get :
6498
6599Get
@@ -79,6 +113,8 @@ The most basic functionality is to get content. Here are all the types we can as
79113 posts
80114 dei
81115 newsletters
116+ member-counts
117+ jobs
82118
83119 optional arguments:
84120 -h, --help show this help message and exit
@@ -133,6 +169,8 @@ Here are all the content types you can ask for:
133169 $ usrse get newsletters
134170 $ usrse get dei
135171 $ usrse get events
172+ $ usrse get member-counts
173+ $ usrse get jobs
136174
137175 Want to have some fun? Try the live tables!
138176
@@ -143,6 +181,8 @@ Want to have some fun? Try the live tables!
143181 $ usrse get newsletters --live
144182 $ usrse get dei --live
145183 $ usrse get events --live
184+ $ usrse get member-counts --live
185+ $ usrse get jobs --live
146186
147187
148188 Changing the baseurl
0 commit comments