Documentation
Documentation & Resources
Everything you need to build, deploy, and manage your cloud infrastructure
In the meantime, contact support for any question: support@nemau-cloud.com
Getting Started
Quick start guides and tutorials to get you up and running
API Reference
Complete API documentation for programmatic access
SDKs & Tools
Official SDKs and command-line tools
Guides & Tutorials
In-depth guides for common scenarios
Quick Start Example
Create your first compute instance in minutes
Create Instance with API
Pythonfrom nemau import NemauClient
# Initialize client
client = NemauClient(
api_key='your-api-key',
region='eu-west-1'
)
# Create a new instance
instance = client.compute.create(
name='my-server',
image='ubuntu-24.04',
size='medium',
ssh_keys=['ssh-key-id']
)
print(f"Instance created: {instance.id}")
print(f"IP Address: {instance.ip_address}")External Resources
Need Help?
Use the documentation for technical evaluation, then contact us for migration questions or onboarding details.

