An open API service indexing awesome lists of open source software.

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

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()
```