đ 2.6.0 𧨠renamed shelloutput to loadcommand đ added python-editor to requirements âšī¸ positional args will now show help for cli if none is passed â clieditstate to edit state from cli đ some new examples
Showing 2 of 7 files from the diff.
Newly tracked file
chepy/modules/search.py
changed.
Newly tracked file
chepy/core.py
changed.
Other files ignored by Codecov
chepy/__version__.py
has changed.
requirements.txt
has changed.
chepy/__main__.py
has changed.
chepy/modules/internal/cli.py
has changed.
TODO
has changed.
@@ -40,6 +40,10 @@
Loading
40 | 40 | ||
41 | 41 | Returns: |
|
42 | 42 | Chepy: The Chepy object. |
|
43 | + | ||
44 | + | Examples: |
|
45 | + | >>> Chepy("tests/files/flags").read_file().search_ctf_flags("pico").get_by_index(0) |
|
46 | + | picoCTF{r3source_pag3_f1ag} |
|
43 | 47 | """ |
|
44 | 48 | self.state = re.findall(prefix + postfix, self._convert_to_str(), re.IGNORECASE) |
|
45 | 49 | return self |
@@ -50,6 +54,10 @@
Loading
50 | 54 | ||
51 | 55 | Returns: |
|
52 | 56 | Chepy: The Chepy object. |
|
57 | + | ||
58 | + | Examples: |
|
59 | + | >>> Chepy("tests/files/flags").read_file().search_slack_tokens().get_by_index(0) |
|
60 | + | xoxp...859 |
|
53 | 61 | """ |
|
54 | 62 | self.state = re.findall( |
|
55 | 63 | "(xox[p|b|o|a]-[0-9]{12}-[0-9]{12}-[0-9]{12}-[a-z0-9]{32})", |
Files | Coverage |
---|---|
chepy | 100.00% |
Project Totals (24 files) | 100.00% |
95437897
95437897
95448101
95448101
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.