Skip to content

Commit 665e887

Browse files
authored
Issue #2: [GitHub Search] Update dependencies and CLI help examples (#3)
- #2
1 parent 53f73ab commit 665e887

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ optional arguments:
2424
The target GitHub API domain. Default: github.ibm.com.
2525
-d, --debug Enable debug mode. Default: False.
2626

27+
=== Documentation ===
28+
29+
https://docs.github.com/en/github/searching-for-information-on-github/searching-code
30+
2731
=== Environment Variables ===
2832

2933
GITHUB_ACCESS_TOKEN : A personal access token with the "repo" scope selected.
@@ -32,5 +36,11 @@ GITHUB_ACCESS_TOKEN : A personal access token with the "repo" scope selected.
3236

3337
export GITHUB_ACCESS_TOKEN=cabfe35410755fbb6c281e92902ed122144886c5
3438

35-
python index.py -q "org:dap path:/ filename:package.json lodash"
39+
python index.py -q "org:dap path:/ filename:package.json request"
40+
python index.py -q "org:dap filename:deploy.properties k8s_yp_prod_eu_de_STAGE"
41+
python index.py -q "org:dap org:data-platform path:/ filename:package.json lodash"
3642
```
43+
44+
## (3) Documentation
45+
46+
- [Searching code on GitHub](https://docs.github.com/en/github/searching-for-information-on-github/searching-code)

index.py

+11-5
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333

3434
# pylint: disable=unused-variable
3535
__author__ = "Mike Pawlowski"
36-
__copyright__ = "Copyright IBM Corporation 2020. All Rights Reserved."
37-
__license__ = "IBM"
38-
__version__ = "1.0.0"
36+
__copyright__ = "Copyright 2020 Mike Pawlowski."
37+
__license__ = "Apache 2.0"
38+
__version__ = "1.0.1"
3939
__maintainer__ = "Mike Pawlowski"
4040
__email__ = "TODO"
4141
__status__ = "Production"
@@ -49,6 +49,10 @@
4949
"A Python application that searches for code in GitHub repositories based on a user-defined queries."
5050

5151
ARGUMENT_PARSER_EPILOG = \
52+
"=== Documentation ===\n" \
53+
"\n" \
54+
"https://docs.github.com/en/github/searching-for-information-on-github/searching-code\n" \
55+
"\n" \
5256
"=== Environment Variables ===\n" \
5357
"\n" \
5458
"GITHUB_ACCESS_TOKEN : A personal access token with the \"repo\" scope selected.\n" \
@@ -57,8 +61,10 @@
5761
"\n" \
5862
"export GITHUB_ACCESS_TOKEN=cabfe35410755fbb6c281e92902ed122144886c5\n" \
5963
"\n" \
60-
"python index.py " \
61-
"-q \"org:dap path:/ filename:package.json lodash\"" \
64+
"python index.py -q \"org:dap path:/ filename:package.json request\"\n" \
65+
"python index.py -q \"org:dap filename:deploy.properties k8s_yp_prod_eu_de_STAGE\"\n" \
66+
"python index.py -q \"org:dap org:data-platform path:/ filename:package.json lodash\"\n" \
67+
"\n" \
6268
"\n"
6369

6470
DEFAULT_LOGGER = logging.getLogger("index")

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
# Runtime Dependencies
1818

19-
PyGithub == 1.43.8
19+
PyGithub == 1.51
2020

2121
# Development Dependencies
2222

23-
pylint == 2.4.4
23+
pylint == 2.5.3

0 commit comments

Comments
 (0)