Skip to content

Releases: python-ellar/ellar

0.6.6

13 Jan 11:18
ef25d71
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.4...0.6.6

0.6.4

05 Jan 06:30
277e00d
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.2...0.6.4

0.6.2

30 Dec 19:38
b5ca79e
Compare
Choose a tag to compare

What's Changed

...
document = document_builder.build_document(application)
module = OpenAPIDocumentModule.setup(
   document=document,
   docs_ui=SwaggerUI(dark_theme=True),
   guards=[]
)
Screenshot 2023-12-30 at 8 25 30 PM

Full Changelog: 0.6.0...0.6.2

0.6.0

10 Dec 11:52
3a67aae
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.8...0.6.0

0.5.8

07 Dec 00:52
a7be09f
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.7...0.5.8

0.5.7

23 Nov 06:01
d5ffc77
Compare
Choose a tag to compare

What's Changed

# main.py
from ellar.common.utils.functional import SimpleLazyObject, LazyStrImport

class PythonWebFramework:
    def __init__(self) -> None:
        self.name = 'Ellar'


def _get_lazy_instance() -> PythonWebFramework:
    return PythonWebFramework()


lazy_python_framework = SimpleLazyObject(_get_lazy_instance)
lazy_python_framework_type_import = LazyStrImport("main:PythonWebFramework")

assert lazy_python_framework.name == "Ellar"
assert lazy_python_framework_type_import().name == "Ellar"

Full Changelog: 0.5.6...0.5.7

0.5.6

14 Nov 06:33
1067360
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.5...0.5.6

0.5.5

12 Nov 13:05
5530af1
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.4...0.5.5

0.5.4

12 Nov 09:47
5e01445
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.3...0.5.4

0.5.3

08 Nov 06:48
62a7300
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.2...0.5.3