File tree 3 files changed +24
-8
lines changed
3 files changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ optional arguments:
24
24
The target GitHub API domain. Default: github.ibm.com.
25
25
-d, --debug Enable debug mode. Default: False.
26
26
27
+ === Documentation ===
28
+
29
+ https://docs.github.com/en/github/searching-for-information-on-github/searching-code
30
+
27
31
=== Environment Variables ===
28
32
29
33
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.
32
36
33
37
export GITHUB_ACCESS_TOKEN=cabfe35410755fbb6c281e92902ed122144886c5
34
38
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"
36
42
` ` `
43
+
44
+ # # (3) Documentation
45
+
46
+ - [Searching code on GitHub](https://docs.github.com/en/github/searching-for-information-on-github/searching-code)
Original file line number Diff line number Diff line change 33
33
34
34
# pylint: disable=unused-variable
35
35
__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 "
39
39
__maintainer__ = "Mike Pawlowski"
40
40
__email__ = "TODO"
41
41
__status__ = "Production"
49
49
"A Python application that searches for code in GitHub repositories based on a user-defined queries."
50
50
51
51
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 " \
52
56
"=== Environment Variables ===\n " \
53
57
"\n " \
54
58
"GITHUB_ACCESS_TOKEN : A personal access token with the \" repo\" scope selected.\n " \
57
61
"\n " \
58
62
"export GITHUB_ACCESS_TOKEN=cabfe35410755fbb6c281e92902ed122144886c5\n " \
59
63
"\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 " \
62
68
"\n "
63
69
64
70
DEFAULT_LOGGER = logging .getLogger ("index" )
Original file line number Diff line number Diff line change 16
16
17
17
# Runtime Dependencies
18
18
19
- PyGithub == 1.43.8
19
+ PyGithub == 1.51
20
20
21
21
# Development Dependencies
22
22
23
- pylint == 2.4.4
23
+ pylint == 2.5.3
You can’t perform that action at this time.
0 commit comments