We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ee398 commit f3cb698Copy full SHA for f3cb698
README.md
@@ -12,7 +12,9 @@ Python 3.7+
12
13
## Installation
14
15
+```
16
pip3 install find-gcp-keys
17
18
19
## Usage
20
@@ -24,7 +26,7 @@ find_gcp_keys <dir_path>
24
26
25
27
As a library:
28
-```
29
+```py
30
from find_gcp_keys import find_key_paths, find_valid_keys, is_valid_key
31
...
32
@@ -33,10 +35,10 @@ if is_valid_key(file_path):
33
35
34
36
37
# recursively search for valid keys
-for path in find_valid_keys(dir_path):
38
+for file_path in find_valid_keys(dir_path):
39
40
41
# recursively search for possible keys, but don't validate them
-for path in find_key_paths(dir_path):
42
+for file_path in find_key_paths(dir_path):
43
44
```
0 commit comments