SoftQCOS™ Quick Start Guide
Installation
SDK (Python Library)
pip install softqcos-sdk
CLI (Command Line Interface)
pip install softqcos
Verify Installation
# Check versions
softqcos --version
# Expected output:
# SoftQCOS™ CLI version 1.0.0
# QCOS™ SDK version 1.0.0
First Steps
1. Get Your API Key
Visit portal.softquantus.com to create an account and obtain your API key.
2. Activate License
softqcos activate --license-key "QCOS-XXXX-XXXX-XXXX"
3. Run Your First Circuit
from softqcos_sdk import QCOSClient
client = QCOSClient(api_key="your-api-key")
# Bell State circuit
qasm = """
OPENQASM 2.0;
include "qelib1.inc";
qreg q[2];
creg c[2];
h q[0];
cx q[0], q[1];
measure q -> c;
"""
result = client.execute(qasm=qasm, shots=1024)
print(result.counts)
# Output: {'00': ~512, '11': ~512}
Available SDK Exports
Client Classes
QCOSClient- Synchronous clientAsyncQCOSClient- Async client
Data Models
JobResult- Execution resultsJobStatus- Status enumerationCircuitJob- Job representationBackendInfo- Backend informationProviderInfo- Provider detailsSupplierInfo- Supplier metadata
Exceptions
QCOSError- Base exceptionAuthenticationError- Invalid credentialsValidationError- Invalid inputRateLimitError- Rate limit exceededJobNotFoundError- Job not foundTimeoutError- Request timeout
Licensing
QCOSLicense- License managerLicenseError- License errorsFeatureNotLicensed- Feature not availableget_license()- Get current licenserequire_license()- Decoratorrequire_feature(feature)- Decorator
CLI Commands
| Command | Description |
|---|---|
softqcos --version | Show version |
softqcos --help | Show help |
softqcos --legal | Legal information |
softqcos info | System information |
softqcos activate | Activate license |
softqcos status | License status |
softqcos deactivate | Remove license |
softqcos verify | Verify evidence bundle |
Platform Support
| Platform | SDK | CLI |
|---|---|---|
| Linux x86_64 | ✅ Python 3.11, 3.12 | ✅ |
| macOS ARM64 | ✅ Python 3.11 | ✅ |
| Windows | 🔜 Coming soon | ✅ |
Links
- Documentation: docs.softquantus.com
- Portal: portal.softquantus.com
- Support: support@softquantus.com
- PyPI SDK: pypi.org/project/softqcos-sdk
- PyPI CLI: pypi.org/project/softqcos
© 2024-2026 SoftQuantus innovative OÜ. All Rights Reserved.