# Quick back-end
## What is Quickbe
Quickbe is a Python library that enables you to deliver quick back-end components.
If you are a technical founder or a developer, use this package to build everything you need to launch and grow high-quality SaaS application.
Every SaaS application needs these components
* Micro-services
* Web-services or APIs
* Web-hooks receivers
* Central vault
## Why Python
It has a strong community, it is fast to learn, it has lots of tools to process and analyze data ... and data is a major key for building a good app :-)
# Web server
Develop your endpoint as functions with annotations for routing and validation.
@endpoint(path='hello', validation={'name': {'type': 'string', 'required': True}})
def say_hello(session: HttpSession):
name = session.get_parameter('name')
if name is None:
name = ''
return f'Hello {name}'
Run them using Flask or as AWS Lambda function without any changes to your code.
## Build in endpoints
* `/health` - Returns 200 if every thing is OK (e.g: `{"status":"OK","timestamp":"2022-07-25 06:18:54.214674"}`)
* `/<access_key>/set_log_level/<level>` - Set log level
* `/<access_key>/quickbe-server-info` - Get verbose info on the server (endpoints and packages)
* `/<access_key>/quickbe-server-status` - Get server status (uptime, memory utilization, request per seconds and log info)
* `/<access_key>/quickbe-server-environ` - Get all environment variables keys and values
Raw data
{
"_id": null,
"home_page": "https://github.com/eldad1221/quickbe",
"name": "quickbe",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "",
"author": "Eldad Bishari",
"author_email": "eldad@1221tlv.org",
"download_url": "https://files.pythonhosted.org/packages/80/68/445821870ded3ba212a0e045e3829d8b4da2c72e762959b87216edee3a1c/quickbe-4.3.0.tar.gz",
"platform": null,
"description": "# Quick back-end\n\n## What is Quickbe\n\nQuickbe is a Python library that enables you to deliver quick back-end components. \nIf you are a technical founder or a developer, use this package to build everything you need to launch and grow high-quality SaaS application.\nEvery SaaS application needs these components\n* Micro-services\n* Web-services or APIs\n* Web-hooks receivers\n* Central vault\n\n## Why Python\n\nIt has a strong community, it is fast to learn, it has lots of tools to process and analyze data ... and data is a major key for building a good app :-)\n\n# Web server\nDevelop your endpoint as functions with annotations for routing and validation.\n \n @endpoint(path='hello', validation={'name': {'type': 'string', 'required': True}})\n def say_hello(session: HttpSession):\n name = session.get_parameter('name')\n if name is None:\n name = ''\n return f'Hello {name}'\n\nRun them using Flask or as AWS Lambda function without any changes to your code.\n\n## Build in endpoints\n* `/health` - Returns 200 if every thing is OK (e.g: `{\"status\":\"OK\",\"timestamp\":\"2022-07-25 06:18:54.214674\"}`)\n* `/<access_key>/set_log_level/<level>` - Set log level\n* `/<access_key>/quickbe-server-info` - Get verbose info on the server (endpoints and packages)\n* `/<access_key>/quickbe-server-status` - Get server status (uptime, memory utilization, request per seconds and log info)\n* `/<access_key>/quickbe-server-environ` - Get all environment variables keys and values\n",
"bugtrack_url": null,
"license": "",
"summary": "Quick and simple back-end infrastructure",
"version": "4.3.0",
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "750c95c0099540a93eddd8d72eb112b2226124b192e7c4ba0371894ad1de4d8e",
"md5": "274ef332296869dadf143d9189af96b7",
"sha256": "c3e8d97656ee7006601844b9bd1cabd87a908acec914402e51c350111bf6266c"
},
"downloads": -1,
"filename": "quickbe-4.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "274ef332296869dadf143d9189af96b7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 8476,
"upload_time": "2023-03-15T11:35:02",
"upload_time_iso_8601": "2023-03-15T11:35:02.581648Z",
"url": "https://files.pythonhosted.org/packages/75/0c/95c0099540a93eddd8d72eb112b2226124b192e7c4ba0371894ad1de4d8e/quickbe-4.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8068445821870ded3ba212a0e045e3829d8b4da2c72e762959b87216edee3a1c",
"md5": "3a2d6de29018ae128fb5ec9ea542f9d2",
"sha256": "409851b86e71e9f8299c0c8d435d019b258781dd48e19e1212286456faf2a833"
},
"downloads": -1,
"filename": "quickbe-4.3.0.tar.gz",
"has_sig": false,
"md5_digest": "3a2d6de29018ae128fb5ec9ea542f9d2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 10616,
"upload_time": "2023-03-15T11:35:04",
"upload_time_iso_8601": "2023-03-15T11:35:04.262719Z",
"url": "https://files.pythonhosted.org/packages/80/68/445821870ded3ba212a0e045e3829d8b4da2c72e762959b87216edee3a1c/quickbe-4.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-03-15 11:35:04",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "eldad1221",
"github_project": "quickbe",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "quickbe"
}