-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DEPLOY] v0.8.0 - Uber class parameter abstraction, Minor docstring f…
…ixes (#407) * Bump version - 0.8.0 * Remove ids QS placeholder from endpoint module. * Remove deprecated methods, expand args_to_params * Implements QS parameter abstraction. Linting. * Remove unnecessary pylint directive * PEP-257 docstring formatting. * PEP-257 docstring formatting. * PEP-257 docstring formatting. * PEP-257 docstring formatting. * Add docstring lint workflow * PEP-257 docstring formatting. * Docstring validation helper script. * Adjust workflow config. * Update README.md * Update README.md * Create README.md * Create README.md * Friendlier syntax * Add coverage reporting to single unit test helper * Update comments * Fix typo * Unit test adjustment to cover new code paths * Add PEP-8 friendly app_id parameter * Update CHANGELOG.md * Comment formatting * Fixup: incorrect data type for body payload * Fixup: incorrect body payload datatype * Fixup: Missing rules topic param. Docstring typo. * Expanded unit testing to cover new code paths. * Update CHANGELOG.md * Update wordlist.txt
- Loading branch information
Showing
137 changed files
with
1,215 additions
and
962 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -409,6 +409,7 @@ platformsMixin | |
powershell | ||
pre | ||
py | ||
pydocstyle | ||
pylint | ||
pytest | ||
queryCIDGroupMembers | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Check Docstrings | ||
on: | ||
push: | ||
paths: | ||
- '**.py' | ||
branches: | ||
- main | ||
- 'ver_*' | ||
pull_request: | ||
paths: | ||
- '**.py' | ||
branches: | ||
- main | ||
- 'ver_*' | ||
|
||
jobs: | ||
analyze: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install pydocstyle | ||
pip install -r requirements.txt | ||
- name: Check package docstrings with pydocstyle | ||
run: | | ||
# Check docstring syntax | ||
pydocstyle src/falconpy --count |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
![CrowdStrike Falcon](https://raw.githubusercontent.com/CrowdStrike/falconpy/main/docs/asset/cs-logo.png) | ||
# FalconPy - The CrowdStrike Falcon SDK for Python 3 | ||
## Endpoint module | ||
This module contains a complete listing of all endpoints within the CrowdStrike Falcon API, | ||
as well as the necessary parameter definitions to interact with them. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.