-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from Mulugruntz/sgiffard/documentation
Fix documentation
- Loading branch information
Showing
58 changed files
with
430 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
About Rohmu | ||
=========== | ||
############# | ||
About Rohmu | ||
############# | ||
|
||
Features | ||
-------- | ||
|
||
* Supported object storages: Azure, GCP, S3, Swift (OpenStack), local | ||
file storage and SFTP. | ||
* Supported compression algorithms: Snappy, | ||
`zstd <https://github.com/facebook/zstd>`__ and | ||
`lzma <https://docs.python.org/3/library/lzma.html>`__. | ||
.. include:: ../README.rst | ||
:start-after: start-include-features | ||
:end-before: end-include-features | ||
|
||
.. include:: ../README.rst | ||
:start-after: start-include-links |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
|
||
|
||
Azure | ||
===== | ||
|
||
.. autopydantic_model:: rohmu.object_storage.config.AzureObjectStorageConfig | ||
|
||
.. autoclass:: rohmu.object_storage.azure.AzureTransfer | ||
:members: | ||
|
||
|
||
====== | ||
|
||
.. autopydantic_model:: rohmu.object_storage.config.GoogleObjectStorageConfig | ||
|
||
.. autoclass:: rohmu.object_storage.google.GoogleTransfer | ||
:members: | ||
|
||
.. autoclass:: rohmu.object_storage.google.MediaStreamUpload | ||
:members: | ||
|
||
.. autoclass:: rohmu.object_storage.google.MediaIoBaseDownloadWithByteRange | ||
:members: | ||
|
||
|
||
Local | ||
===== | ||
|
||
.. autopydantic_model:: rohmu.object_storage.config.LocalObjectStorageConfig | ||
|
||
.. autoclass:: rohmu.object_storage.local.LocalTransfer | ||
:members: | ||
|
||
|
||
S3 | ||
== | ||
|
||
.. autopydantic_model:: rohmu.object_storage.config.S3ObjectStorageConfig | ||
|
||
.. autoclass:: rohmu.object_storage.s3.S3Transfer | ||
:members: | ||
|
||
|
||
SFTP | ||
==== | ||
|
||
.. autopydantic_model:: rohmu.object_storage.config.SFTPObjectStorageConfig | ||
|
||
.. autoclass:: rohmu.object_storage.sftp.SFTPTransfer | ||
:members: | ||
|
||
|
||
Swift | ||
===== | ||
|
||
.. autopydantic_model:: rohmu.object_storage.config.SwiftObjectStorageConfig | ||
|
||
.. autoclass:: rohmu.object_storage.swift.SwiftTransfer | ||
:members: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
########################## | ||
Python API Documentation | ||
########################## | ||
|
||
******** | ||
Common | ||
******** | ||
|
||
.. autoclass:: rohmu.BaseTransfer | ||
|
||
.. autofunction:: rohmu.get_class_for_notifier | ||
|
||
.. autofunction:: rohmu.get_class_for_storage_driver | ||
|
||
.. autofunction:: rohmu.get_class_for_transfer | ||
|
||
.. autofunction:: rohmu.get_notifier | ||
|
||
.. autofunction:: rohmu.get_transfer_from_model | ||
|
||
.. autofunction:: rohmu.get_transfer_model | ||
|
||
.. autofunction:: rohmu.get_transfer | ||
|
||
.. autoclass:: rohmu.Notifier | ||
|
||
.. autoclass:: rohmu.ProxyInfo | ||
|
||
.. autodata:: rohmu.S3AddressingStyle | ||
|
||
.. autoclass:: rohmu.StorageDriver | ||
|
||
.. autoclass:: rohmu.StorageModel | ||
|
||
*************** | ||
Delta Backups | ||
*************** | ||
|
||
.. automodule:: rohmu.delta | ||
:members: | ||
|
||
.. automodule:: rohmu.delta.common | ||
:members: | ||
|
||
.. automodule:: rohmu.delta.snapshot | ||
:members: | ||
|
||
*********** | ||
Notifiers | ||
*********** | ||
|
||
.. automodule:: rohmu.notifier | ||
:members: | ||
|
||
.. automodule:: rohmu.notifier.interface | ||
:members: | ||
|
||
HTTP Notifier | ||
============= | ||
|
||
.. automodule:: rohmu.notifier.http | ||
:members: | ||
|
||
Logger Notifier | ||
=============== | ||
|
||
.. automodule:: rohmu.notifier.logger | ||
:members: | ||
|
||
Null Notifier | ||
============= | ||
|
||
.. automodule:: rohmu.notifier.null | ||
:members: | ||
|
||
***************** | ||
Object Storages | ||
***************** | ||
|
||
.. include:: api__object_storage.rst | ||
|
||
************ | ||
Exceptions | ||
************ | ||
|
||
.. automodule:: rohmu.errors | ||
:members: |
Oops, something went wrong.