Registry / http-networking / scc-firewall-manager-sdk

scc-firewall-manager-sdk

JSON →
library1.22.68pypypi✓ verified 83d ago

A Python SDK for Cisco Security Cloud Control (SCC) Firewall Manager API. Provides programmatic access to manage firewall configurations, policies, and devices. Current version: 1.19.68.

pip install scc-firewall-manager-sdk
INSTALL
IMPORT
SIG · SCC-FIREWALL-MANAG
S
scc-firewall-manager-sdk
http-networkingpythonv1.22.68
Install
4.4s avg
Import
Disk
38MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v1.22.68 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 39.1MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 4.4s · import 0.000s · 39MB
38MB installed
● package 38MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

AIAssistantApi
from scc_firewall_manager_sdk import AIAssistantApi
from ciscoscc import SCCClient
ASAAccessGroupsApi
from scc_firewall_manager_sdk import ASAAccessGroupsApi
from ciscoscc import SCCClient
AccessGroup
from scc_firewall_manager_sdk import AccessGroup
from ciscoscc import SCCClient

Initialize the client using OAuth2 client credentials from environment variables and list devices.

from ciscoscc import SCCClient client = SCCClient( client_id=os.environ.get('SCC_CLIENT_ID', ''), client_secret=os.environ.get('SCC_CLIENT_SECRET', ''), grant_type='client_credentials' ) # Example: List devices devices = client.devices.list() print(devices)
Debug
Known issues
gotchaThe package imports as 'ciscoscc', not 'scc_firewall_manager_sdk'. Many users incorrectly use the PyPI name as the module name.
fix
Use 'from ciscoscc import SCCClient'.
affects: all
deprecatedThe 'grant_type' parameter defaults to 'password' which is deprecated. Use 'client_credentials' for OAuth2.
fix
Explicitly pass grant_type='client_credentials'.
affects: <1.19.0
gotchaEnvironment variables are case-sensitive. Use SCC_CLIENT_ID and SCC_CLIENT_SECRET (not lower- or mixed-case).
fix
Set env vars exactly as SCC_CLIENT_ID and SCC_CLIENT_SECRET.
affects: all
Upgrade
Version history
1.22.68latest on PyPI · released Jun 17, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
21 hits · last 30 days
node
18
Bingbot
1
OpenAI (training)
1
Resources
scc-firewall-manager-sdk — pip install scc-firewall-manager-sdk · libregistry