{"id":15043748,"url":"https://github.com/niqzart/flask-fullstack","last_synced_at":"2026-02-01T23:33:51.242Z","repository":{"id":40559973,"uuid":"455847184","full_name":"niqzart/flask-fullstack","owner":"niqzart","description":null,"archived":false,"fork":false,"pushed_at":"2023-10-01T21:05:46.000Z","size":413,"stargazers_count":1,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-22T01:41:52.787Z","etag":null,"topics":["flask","flask-restx","library","pytest","python","socket-io","sqlalchemy"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/niqzart.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2022-02-05T11:09:48.000Z","updated_at":"2024-01-26T18:23:54.000Z","dependencies_parsed_at":"2025-06-22T01:37:20.601Z","dependency_job_id":"3f72332a-5da5-424f-bf9e-715cfe18e027","html_url":"https://github.com/niqzart/flask-fullstack","commit_stats":{"total_commits":199,"total_committers":1,"mean_commits":199.0,"dds":0.0,"last_synced_commit":"106b431d23797878c899831eea63909e9a383a3c"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/niqzart/flask-fullstack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niqzart%2Fflask-fullstack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niqzart%2Fflask-fullstack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niqzart%2Fflask-fullstack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niqzart%2Fflask-fullstack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/niqzart","download_url":"https://codeload.github.com/niqzart/flask-fullstack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niqzart%2Fflask-fullstack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28994918,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T23:10:54.274Z","status":"ssl_error","status_checked_at":"2026-02-01T23:10:47.298Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["flask","flask-restx","library","pytest","python","socket-io","sqlalchemy"],"created_at":"2024-09-24T20:49:32.744Z","updated_at":"2026-02-01T23:33:51.226Z","avatar_url":"https://github.com/niqzart.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flask-Fullstack\nFlask-Fullstack is an utils package for projects using a fleet of libs:\n- [Flask](https://flask.palletsprojects.com/en/2.2.x/)\n- [Flask-RESTX](https://flask-restx.readthedocs.io/en/latest/)\n- [SQLAlchemy](https://www.sqlalchemy.org/)\n- [Flask-SQLAlchemy](https://flask-sqlalchemy.palletsprojects.com/en/3.0.x/)\n- [SocketIO](https://socket.io/) \u0026 [Flask-SocketIO](https://flask-socketio.readthedocs.io/en/latest/)\n- [pytest](https://docs.pytest.org/en/7.1.x/)\n- [pydantic-marshals](https://github.com/niqzart/pydantic-marshals)\n\nIt is currently in deep development.\nPackage is maintained by one programmer ([hey that me!](https://github.com/niqzart)).\nIn this readme you can find:\n- [Install instructions](#install)\n- [Quick start guide](#quick-start)\n- [Current features](#features)\n- [Planned features](#future)\n\n## Install\n### Add the library to your project\n```sh\npip install flask-fullstack  # via pip\npoetry add flask-fullstack  # via poetry\n```\n\n### Working with this repository\n```sh\npip install poetry==1.5.1\npoetry install\n```\n\n## Quick Start\nTBD\n\n## Features\n### Interfaces \u0026 Mixins\n- [Database Interfaces](./docs/database-interfaces.md): Implement these to later automate searching \u0026 authorization (see below)\n- Mixins with Decorators: Classes full of useful decorators to be used in less abstract context (see below)\n\n### RESTX improvements\n- New Marshals: form SQLAlchemy to Pydantic and then to the Response Marshaling\n- [Upgraded Parsers](./docs/upgraded-parsers.md): just a couple of commonly used parsers to `.copy()`\n- Resource Controller: RESTX's Namespace, but with access to useful decorators from mixins\n\n#### New Marshals\nNew models, created in `flask_fullstack.restx.marshals`, are a translation layer between Pydantic \u0026 RESTX's own Models. These models also support being created from SQLAlchemy tables via Column reflection\n\nFor Pydantic, it only supports as fields: the keys of `flask_fullstack.restx.marshals.type_to_field`, `list`s and nesting other Pydantic models\n\nFor SQLAlchemy, it only supports converting columns of types in the keys of `flask_fullstack.restx.marshals.column_to_field`\n\n## SocketIO eXtensions\n- Understandable Events: Makes possible automatic documentation, data validation (with New Marshals or pure Pydantic) \u0026 emits not just by the event's name\n- Event Controller: Used to group events \u0026 provide access to useful decorators from mixins\n- Upgraded Structures: Propagating new events \u0026 other utils to Flask-SocketIO's `Namespace`s \u0026 the `SocketIO` class itself\n\n## Other Utils\n- SQLAlchemy Simplified: creating objects, parsing query results, deleting objects\n- New Columns: JSON with Schema or a RESTX Model to use in New Marshals\n- Named: If some class attribute needs to know the attribute name\n- Other: Utils for dicts, pydantic, pytest, unpacking RESTX responses, TypeEnum, etc\n- Core: For simplifying the common project setup steps\n\n## Future\nTBA\n\n## Contributing\nYou are welcome to create issues and PRs in this repository. I'll get to them as soon as I have time!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniqzart%2Fflask-fullstack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fniqzart%2Fflask-fullstack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniqzart%2Fflask-fullstack/lists"}