Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
25a621e
remove source and CouchDBBackend in couchdb.py
shenchenruwo Nov 7, 2024
2f0a229
delete import backends
shenchenruwo Nov 8, 2024
36d2bba
remove LocalFileBackend class
shenchenruwo Nov 8, 2024
12dba7d
adapt replication checking
shenchenruwo Nov 8, 2024
9798fb2
remove source related code in local_file.py
shenchenruwo Nov 8, 2024
46a6827
change do_requrest to non-public
shenchenruwo Nov 8, 2024
7f119e4
remove source, update and commit from Referable
shenchenruwo Nov 8, 2024
483f6ad
delete backends.py
shenchenruwo Nov 8, 2024
b892047
remove update and commit from couchdb tutorial
shenchenruwo Nov 8, 2024
8eb27c8
Merge branch 'eclipse-basyx:main' into improve/data_persistence
shenchenruwo Nov 8, 2024
d2bf73c
adapt test_couchdb and test_local_file
shenchenruwo Nov 8, 2024
ed2108f
adapt test_backends and test_base
shenchenruwo Nov 8, 2024
e17940e
adapt documentation
shenchenruwo Nov 8, 2024
e421655
delete import backends in base.py
shenchenruwo Nov 8, 2024
f6e4555
remove source in test_base
shenchenruwo Nov 8, 2024
c2e3e69
delete test_parse_source
shenchenruwo Nov 8, 2024
766686b
remove update and commit in multiple files
shenchenruwo Nov 8, 2024
880331e
adapt documentation about update and commit
shenchenruwo Nov 8, 2024
cd234c0
adapt docs
shenchenruwo Nov 8, 2024
8ae2fc6
delete missed update in test_base
shenchenruwo Nov 8, 2024
f12cd5d
adapt couchdb safe_delete test
shenchenruwo Nov 8, 2024
af3cbd3
Merge branch 'develop' into improve/data_persistence
s-heppner Jan 20, 2025
791e754
backend: Improve docstring and comment formulation
s-heppner Jan 20, 2025
4c5217d
test.backend: Remove outdated tests, fix codestyle
s-heppner Jan 20, 2025
30c6a6a
fix conflicts with develop
Frosty2500 Aug 26, 2025
1ca6b00
remove remaining updates(), adapt update_from
Frosty2500 Aug 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ For further examples and tutorials, check out the `basyx.aas.examples`-package.
* [`tutorial_storage`](./basyx/aas/examples/tutorial_storage.py): Manage a larger number of Asset Administration Shells in an ObjectStore and resolve references
* [`tutorial_serialization_deserialization`](./basyx/aas/examples/tutorial_serialization_deserialization.py): Use the JSON and XML serialization/deserialization for single objects or full standard-compliant files
* [`tutorial_aasx`](./basyx/aas/examples/tutorial_aasx.py): Export Asset Administration Shells with related objects and auxiliary files to AASX package files
* [`tutorial_backend_couchdb`](./basyx/aas/examples/tutorial_backend_couchdb.py): Use the *Backends* interface (`update()/commit()` methods) to manage and retrieve AAS objects in a CouchDB document database
* [`tutorial_backend_couchdb`](./basyx/aas/examples/tutorial_backend_couchdb.py): Use the *CouchDBObjectStore* to manage and retrieve AAS objects in a CouchDB document database


### Documentation
Expand Down
6 changes: 1 addition & 5 deletions sdk/basyx/aas/backend/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
This module implements a standardized way of integrating data from existing systems into AAS objects. To achieve this,
the abstract :class:`~basyx.aas.backend.backends.Backend` class implements the class methods
:meth:`~basyx.aas.backend.backends.Backend.update_object` and :meth:`~basyx.aas.backend.backends.Backend.commit_object`,
which every implementation of a backend needs to overwrite. For a tutorial on how to implement a backend, see
:ref:`this tutorial <tutorial_backend_couchdb>`
This module implements a standardized way of persisting AAS objects using various backends.
"""
175 changes: 0 additions & 175 deletions sdk/basyx/aas/backend/backends.py

This file was deleted.

Loading