API wrapper for the Quokka security software
Project description
Quokka.io
This project provides a Python client for interacting with the Quokka API. The client allows users to perform various operations such as uploading files for scanning, retrieving scan results, downloading reports, and managing subgroups.
Table of Contents
Installing
To install the Quokka API Client, use pip:
pip install quokkaio
Usage
Initialization
First, import the Quokka class and create an instance with your API key:
from quokka import Quokka
api_key = "YOUR_API_KEY"
quokka = Quokka(api_key)
Push Scan
Upload an APK or IPA file for scanning:
the_file = "path/to/your/app.apk"
subgroup_ids = ["subgroup1", "subgroup2"]
response_data, platform = quokka.push_scan(the_file, subgroup_ids)
print(response_data, platform)
Get Subgroups
Retrieve a list of subgroups:
quokka.get_sub_groups()
Retrieve a specific subgroup ID by name:
subgroup_id = quokka.get_sub_groups(the_group="specific_group_name")
print(subgroup_id)
Wait for Scan Completion
Wait for a scan to complete:
uuid = "scan_uuid"
quokka.wait_for_scan_complete(uuid, maxWaitTime=30) # maxWaitTime in minutes
Download PDF Report
Download the scan results as a PDF file:
uuid = "scan_uuid"
quokka.download_pdf(uuid)
Get App Issues
Retrieve app issues in JSON format:
uuid = "scan_uuid"
issues = quokka.get_app_issue(uuid)
print(issues)
Get Results
Retrieve specified results in JSON format from a start date:
from datetime import datetime
start_date = datetime(2023, 1, 1)
results = quokka.get_results(start_date)
print(results)
Get Submitted Apps
Retrieve submitted apps within a date range:
from datetime import datetime
start_date = datetime(2023, 1, 1)
end_date = datetime(2023, 6, 1)
apps = quokka.get_apps(start_date, end_date)
print(apps)
Logging
This client uses Python's built-in logging module to provide debug information. By default, logging is set to the DEBUG level. You can configure the logging level and format as needed.
Contributing
If you want to contribute to this project, please fork the repository and create a pull request with your changes. Make sure to write tests and documentation for new features or modifications.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file quokkaio-0.2.0.tar.gz.
File metadata
- Download URL: quokkaio-0.2.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08bcddfb781b1c16f264dd4a5ffa4cb024df64e6da67444173ab528446f67b21
|
|
| MD5 |
4df0e6ae624a938f4474c06330f8aeb5
|
|
| BLAKE2b-256 |
84f5fcebb5b38deb7117eff0f76cd88a1ab311bca9e28cdfc2b6aa8ff0f9555a
|
File details
Details for the file quokkaio-0.2.0-py3-none-any.whl.
File metadata
- Download URL: quokkaio-0.2.0-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4ac9a5006933901bd63efdc890dcc586ca53ed5d81f5f33f2537df8b94dbbc4
|
|
| MD5 |
e72966aa4bb96b0f97f97fae5e14a7a1
|
|
| BLAKE2b-256 |
47ae07d0ec404223776d2de40504e6d6521a96535b7f44a69f7bf445ac5893dc
|