Lesson 8: Adapter with Wireframe ------------------------------------------- These code samples provide a basic introduction to building adapters with the wireframe pattern. This pattern declares the adapter interface which is registered in the mount entity, as well as auto-provisions an outlet for the current adapter. You can find further examples here: For an in-depth description adapters, please visit our wiki: At the moment `lesson_8_adapters.py` includes code both for the adapter as well as the driver logic that interacts with the adapter. This is for ease of running the example. Note: For most usecases, you would run your adapter code separate from your driver/client code. To run the lesson_8 code: .. code-block:: shell python src/module/lesson_8_adapters.py Main Driver for Adapter lesson ++++++++++++++++++++++++++++++ .. automodule:: module.lesson_8_adapters :members: :undoc-members: :show-inheritance: