ellar
ellar copied to clipboard
Ellar is a lightweight ASGI framework for building efficient and scalable server-side python applications. It supports both OOP (Object-Oriented Programming) and FP (Functional Programming). Built wit...
Now,to realize the provider,3 steps needed: 1\declare the injectable service:  2\give it as a argument of AppFactory:  3\use really the provider:  that is complex.why need to use...
Updates the requirements on [pre-commit](https://github.com/pre-commit/pre-commit) to permit the latest version. Release notes Sourced from pre-commit's releases. pre-commit v4.3.0 Features language: docker / language: docker_image: detect rootless docker. #3446 PR by...
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`....
```py from starlette.middleware.sessions import SessionMiddleware from ellar.core.middleware import Middleware class AppConfig(Config): SECRET_KEY = secret_key MIDDLEWARE = [Middleware(SessionMiddleware, max_age=14 * 24 * 60 * 60)] ``` got ```py INFO: Started server...