Skip to main content

python library for lxd

Project description

# pylxd [![Build Status](https://travis-ci.org/lxc/pylxd.svg?branch=master)](https://travis-ci.org/lxc/pylxd)

A Python library for interacting with the LXD REST API.

## Getting started with pylxd

If you're running on Ubuntu Wily or greater:

sudo apt-get install python-pylxd lxd

otherwise you can track LXD development on other Ubuntu releases:

sudo add-apt-repository ppa:ubuntu-lxc/lxd-git-master && sudo apt-get update
sudo apt-get install lxd

and install pylxd using pip:

pip install pylxd

## First steps

Once you have pylxd installed, you're ready to start interacting with LXD:

```python
import uuid
from pylxd import api

# Let's pick a random name, avoiding clashes
CONTAINER_NAME = str(uuid.uuid1())

lxd = api.API()

try:
lxd.container_defined(CONTAINER_NAME)
except Exception as e:
print("Container does not exist: %s" % e)

config = {'name': CONTAINER_NAME,
'source': {'type': 'none'}}
lxd.container_init(config)
if lxd.container_defined(CONTAINER_NAME):
print("Container is running")
else:
print("Whoops - please report a bug!")
containers = lxd.container_list()
for x in containers:
lxd.container_destroy(x)
```

## Bug reports

Bug reports can be filed at https://github.com/lxc/pylxd/issues/new

## Support and discussions

We use the LXC mailing-lists for developer and user discussions, you can
find and subscribe to those at: https://lists.linuxcontainers.org

If you prefer live discussions, some of us also hang out in
[#lxcontainers](http://webchat.freenode.net/?channels=#lxcontainers) on irc.freenode.net.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pylxd-2.0.0.0b1.tar.gz (35.6 kB view details)

Uploaded Source

File details

Details for the file pylxd-2.0.0.0b1.tar.gz.

File metadata

  • Download URL: pylxd-2.0.0.0b1.tar.gz
  • Upload date:
  • Size: 35.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pylxd-2.0.0.0b1.tar.gz
Algorithm Hash digest
SHA256 11d207eb41b51f15c3045b11df1e89da63073b4eb8710f967d4eaef9fc4a9b6c
MD5 5a141324a5b44e375b9f56d3fb102194
BLAKE2b-256 c6e751d5687ba4585265211400fdbe5e29141524c9ac7aeda035392da093b43f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page