https://github.com/pyperanger/crowdstrike-client
CrowdStrike API Client Library
https://github.com/pyperanger/crowdstrike-client
crowdstrike crowdstrike-falcon-api dfir-automation python
Last synced: 5 months ago
JSON representation
CrowdStrike API Client Library
- Host: GitHub
- URL: https://github.com/pyperanger/crowdstrike-client
- Owner: pyperanger
- License: mit
- Created: 2021-10-14T19:30:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-08T03:10:00.000Z (over 4 years ago)
- Last Synced: 2026-01-07T06:57:15.903Z (6 months ago)
- Topics: crowdstrike, crowdstrike-falcon-api, dfir-automation, python
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# crowdstrike-client
CrowdStrike API Client Library (nonofficial)
### Install
```bash
pip install crowdstrike-client
```
### Usage
```python
from crowdstrikeclient import CrowdStrike
cs = CrowdStrike("ht://endpoint", "client", "secret")
print ("My JWT Token:", cs.GetToken())
print ("My Ccid:", cs.SensorsQueriesInstallersCcid())
cs.Close()
```