Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Commit b66864b

Browse files
committed
Update docstring header and generate lazydocs
1 parent ee14fd0 commit b66864b

35 files changed

+4023
-4529
lines changed

docs/.pages

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
title: API Reference
2+
nav:
3+
- Overview: README.md
4+
- ...

docs/README.md

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!-- markdownlint-disable -->
2+
3+
# API Overview
4+
5+
## Modules
6+
7+
- [`lazycluster.cluster`](./lazycluster.cluster.md#module-lazyclustercluster)
8+
- [`lazycluster.cluster.dask_cluster`](./lazycluster.cluster.dask_cluster.md#module-lazyclusterclusterdask_cluster): Module for conveniently managing a [DASK](http://distributed.dask.org) cluster.
9+
- [`lazycluster.cluster.exceptions`](./lazycluster.cluster.exceptions.md#module-lazyclusterclusterexceptions): Exception module for cluster classes.
10+
- [`lazycluster.cluster.hyperopt_cluster`](./lazycluster.cluster.hyperopt_cluster.md#module-lazyclusterclusterhyperopt_cluster): Module for conveniently managing a [Hyperopt](https://github.com/hyperopt/hyperopt) cluster.
11+
- [`lazycluster.cluster.runtime_cluster`](./lazycluster.cluster.runtime_cluster.md#module-lazyclusterclusterruntime_cluster): Module comprising the abstract RuntimeCluster class with its related `launcher strategy` classes.
12+
- [`lazycluster.exceptions`](./lazycluster.exceptions.md#module-lazyclusterexceptions): Exception module.
13+
- [`lazycluster.runtime_mgmt`](./lazycluster.runtime_mgmt.md#module-lazyclusterruntime_mgmt): Runtime management module. This module contains convenient classes for working with `Runtimes` and `RuntimeTasks`.
14+
- [`lazycluster.runtimes`](./lazycluster.runtimes.md#module-lazyclusterruntimes): Runtimes module.
15+
- [`lazycluster.scripts`](./lazycluster.scripts.md#module-lazyclusterscripts)
16+
- [`lazycluster.scripts.cli_handler`](./lazycluster.scripts.cli_handler.md#module-lazyclusterscriptscli_handler)
17+
- [`lazycluster.settings`](./lazycluster.settings.md#module-lazyclustersettings): Contains setting parameters for the library.
18+
- [`lazycluster.utils`](./lazycluster.utils.md#module-lazyclusterutils)
19+
20+
## Classes
21+
22+
- [`dask_cluster.DaskCluster`](./lazycluster.cluster.dask_cluster.md#class-daskcluster): Convenient class for launching a Dask cluster in a `RuntimeGroup`.
23+
- [`dask_cluster.LocalMasterLauncher`](./lazycluster.cluster.dask_cluster.md#class-localmasterlauncher): Concrete implementation of the `MasterLauncher` interface. See its documentation to get a list of the inherited methods and attributes.
24+
- [`dask_cluster.RoundRobinLauncher`](./lazycluster.cluster.dask_cluster.md#class-roundrobinlauncher): WorkerLauncher implementation for launching DASK workers in a round robin manner. See its documentation to get a list of the inherited methods and attributes.
25+
- [`exceptions.MasterStartError`](./lazycluster.cluster.exceptions.md#class-masterstarterror): Error indicating that the cluster master instance could not be started successfully.
26+
- [`hyperopt_cluster.HyperoptCluster`](./lazycluster.cluster.hyperopt_cluster.md#class-hyperoptcluster): Convenient class for launching a Hyperopt cluster in a `RuntimeGroup`.
27+
- [`hyperopt_cluster.LocalMongoLauncher`](./lazycluster.cluster.hyperopt_cluster.md#class-localmongolauncher): Concrete implementation of the `MasterLauncher` interface. See its documentation to get a list of the inherited methods and attributes.
28+
- [`hyperopt_cluster.MongoLauncher`](./lazycluster.cluster.hyperopt_cluster.md#class-mongolauncher): Abstract implementation of the `MasterLauncher` interface used to implement a concrete launch strategy for mongodb instance used in hyperopt.
29+
- [`hyperopt_cluster.RoundRobinLauncher`](./lazycluster.cluster.hyperopt_cluster.md#class-roundrobinlauncher): Concrete WorkerLauncher implementation for launching hyperopt workers in a round robin manner.
30+
- [`runtime_cluster.MasterLauncher`](./lazycluster.cluster.runtime_cluster.md#class-masterlauncher): Abstract class for implementing the strategy for launching the master instance of the cluster.
31+
- [`runtime_cluster.MasterWorkerCluster`](./lazycluster.cluster.runtime_cluster.md#class-masterworkercluster): Class for clusters following a master-worker architecture.
32+
- [`runtime_cluster.RuntimeCluster`](./lazycluster.cluster.runtime_cluster.md#class-runtimecluster): Abstract cluster class.
33+
- [`runtime_cluster.WorkerLauncher`](./lazycluster.cluster.runtime_cluster.md#class-workerlauncher): Abstract class for implementing the strategy for launching worker instances within a RuntimeGroup.
34+
- [`exceptions.InvalidRuntimeError`](./lazycluster.exceptions.md#class-invalidruntimeerror): Error indicating that a `Runtime` can not be instantiated properly.
35+
- [`exceptions.LazyclusterError`](./lazycluster.exceptions.md#class-lazyclustererror): Basic exception class for `lazycluster` library errors.
36+
- [`exceptions.NoPortsLeftError`](./lazycluster.exceptions.md#class-noportslefterror): Error indicating that there are no more ports left from the given port list.
37+
- [`exceptions.NoRuntimesDetectedError`](./lazycluster.exceptions.md#class-noruntimesdetectederror): Error indicating that no `Runtime` could be detcted automatically by a `RuntimeManager` for example.
38+
- [`exceptions.PathCreationError`](./lazycluster.exceptions.md#class-pathcreationerror): Error indicating that a given path could not be created.
39+
- [`exceptions.PortInUseError`](./lazycluster.exceptions.md#class-portinuseerror): Error indicating that a port is already in use in a `RuntimeGroup` or on the local machine.
40+
- [`exceptions.TaskExecutionError`](./lazycluster.exceptions.md#class-taskexecutionerror): This error relates to exceptions occured during RuntimeTask execution.
41+
- [`runtime_mgmt.RuntimeGroup`](./lazycluster.runtime_mgmt.md#class-runtimegroup): A `RuntimeGroup` is the representation of logically related `Runtimes`.
42+
- [`runtime_mgmt.RuntimeManager`](./lazycluster.runtime_mgmt.md#class-runtimemanager): The `RuntimeManager` can be used for a simplified resource management.
43+
- [`runtimes.Runtime`](./lazycluster.runtimes.md#class-runtime): A `Runtime` is the logical representation of a remote host.
44+
- [`runtimes.RuntimeTask`](./lazycluster.runtimes.md#class-runtimetask): This class provides the functionality for executing a sequence of elementary operations over ssh.
45+
- [`utils.Environment`](./lazycluster.utils.md#class-environment): This class contains environment variables.
46+
- [`utils.ExecutionFileLogUtil`](./lazycluster.utils.md#class-executionfilelogutil): Generic class used to write log files.
47+
- [`utils.Timestamp`](./lazycluster.utils.md#class-timestamp): Custom Timestamp class with convenient methods.
48+
49+
## Functions
50+
51+
- No functions
52+
53+
54+
---
55+
56+
_This file was automatically generated via [lazydocs](https://github.com/ml-tooling/lazydocs)._

0 commit comments

Comments
 (0)