{"id":19700050,"url":"https://github.com/emmett-framework/emmett55","last_synced_at":"2025-09-06T01:35:14.738Z","repository":{"id":257825137,"uuid":"871697972","full_name":"emmett-framework/emmett55","owner":"emmett-framework","description":"The micro web framework for inventors","archived":false,"fork":false,"pushed_at":"2025-05-01T18:35:17.000Z","size":48,"stargazers_count":13,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-07T08:44:58.190Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emmett-framework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["gi0baro"],"polar":"emmett-framework"}},"created_at":"2024-10-12T17:29:24.000Z","updated_at":"2025-05-05T23:18:43.000Z","dependencies_parsed_at":"2024-10-13T23:15:41.421Z","dependency_job_id":"b9953aa1-4b1a-449b-9adc-bcc0c081cde3","html_url":"https://github.com/emmett-framework/emmett55","commit_stats":null,"previous_names":["emmett-framework/emmett55"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/emmett-framework/emmett55","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmett-framework%2Femmett55","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmett-framework%2Femmett55/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmett-framework%2Femmett55/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmett-framework%2Femmett55/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emmett-framework","download_url":"https://codeload.github.com/emmett-framework/emmett55/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmett-framework%2Femmett55/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273846976,"owners_count":25178631,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T21:02:35.610Z","updated_at":"2025-09-06T01:35:14.709Z","avatar_url":"https://github.com/emmett-framework.png","language":"Python","funding_links":["https://github.com/sponsors/gi0baro","https://polar.sh/emmett-framework"],"categories":[],"sub_categories":[],"readme":"# Emmett55\n\nEmmett55 is a Python micro web framework designed with simplicity in mind.\n\n```python\nfrom emmett55 import App, request, response\nfrom emmett55.tools import service, requires\n\napp = App(__name__)\n\ndef is_authenticated():\n    return request.headers.get(\"api-key\") == \"foobar\"\n    \ndef not_authorized():\n    response.status = 401\n    return {\"error\": \"not authorized\"}\n\n@app.route(\"/\", methods='get')\n@requires(is_authenticated, otherwise=not_authorized)\n@service.json\nasync def index():\n    return {\"message\": \"hello world\"}\n```\n\n## Compared with Emmett\n\nEmmett55 is based on [Emmett](https://emmett.sh) and shares the following features with it:\n\n- [application and modules](https://emmett.sh/docs/latest/app_and_modules)\n- [routing](https://emmett.sh/docs/latest/routing)\n- [request](https://emmett.sh/docs/latest/request)/[response](https://emmett.sh/docs/latest/response)/[session](https://emmett.sh/docs/latest/sessions)/[websocket](https://emmett.sh/docs/latest/websocket) helpers\n- the [pipeline](https://emmett.sh/docs/latest/pipeline)\n- [services](https://emmett.sh/docs/latest/services) (JSON only)\n- [caching](https://emmett.sh/docs/latest/caching) (except for disk cache)\n- [HTML](https://emmett.sh/docs/latest/html) code generation\n- [extensions](https://emmett.sh/docs/latest/extensions)\n- [testing client](https://emmett.sh/docs/latest/testing)\n- CLI (with the `emmett55` command)\n\nConsequentially, Emmett55 doesn't include:\n\n- the [ORM](https://emmett.sh/docs/latest/orm)\n- the [authentication system](https://emmett.sh/docs/latest/auth)\n- the [templating system](https://emmett.sh/docs/latest/templates)\n- the [internationalization system](https://emmett.sh/docs/latest/languages)\n- [validations](https://emmett.sh/docs/latest/validations)\n- [forms](https://emmett.sh/docs/latest/forms) utilities\n- XML services\n- disk caching\n- the [mailer](https://emmett.sh/docs/latest/mailer)\n- the [debugger](https://emmett.sh/docs/latest/debug_and_logging#debugger)\n\nTypical use-cases for picking Emmett55 over Emmett are:\n\n- the lack of need of the upper-mentioned missing features\n- the desire to use different libraries in place of the Emmett components, like SQLAlchemy or Jinja\n\n## Documentation\n\nWhile we're still in the process of developing Emmett55 documentation, the [Emmett one](https://emmett.sh/docs) can be examined – with the caviat to replace `emmett` with `emmett55` when mentioned and keep in mind the upper-mentioned list of non-included features.\n\n## License\n\nEmmett55 is released under the BSD License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmett-framework%2Femmett55","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femmett-framework%2Femmett55","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmett-framework%2Femmett55/lists"}