f8s


Namef8s JSON
Version 0.2.2 PyPI version JSON
download
home_page
SummaryFramework for building K8s-ready Flask applications.
upload_time2024-02-28 04:38:32
maintainer
docs_urlNone
author
requires_python>=3.10
licenseMIT
keywords flask kubernetes k8s f8s helm argocd
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p>
    <a href="https://www.linkedin.com/in/alexandergbraun" rel="nofollow noreferrer">
        <img src="https://www.gomezaparicio.com/wp-content/uploads/2012/03/linkedin-logo-1-150x150.png"
             alt="linkedin" width="30px" height="30px"
        >
    </a>
    <a href="https://github.com/theNewFlesh" rel="nofollow noreferrer">
        <img src="https://tadeuzagallo.com/GithubPulse/assets/img/app-icon-github.png"
             alt="github" width="30px" height="30px"
        >
    </a>
    <a href="https://pypi.org/user/the-new-flesh" rel="nofollow noreferrer">
        <img src="https://cdn.iconscout.com/icon/free/png-256/python-2-226051.png"
             alt="pypi" width="30px" height="30px"
        >
    </a>
    <a href="http://vimeo.com/user3965452" rel="nofollow noreferrer">
        <img src="https://cdn.iconscout.com/icon/free/png-512/movie-52-151107.png?f=avif&w=512"
             alt="vimeo" width="30px" height="30px"
        >
    </a>
    <a href="http://www.alexgbraun.com" rel="nofollow noreferrer">
        <img src="https://i.ibb.co/fvyMkpM/logo.png"
             alt="alexgbraun" width="30px" height="30px"
        >
    </a>
</p>

<!-- <img id="logo" src="resources/logo.png" style="max-width: 717px"> -->

[![](https://img.shields.io/badge/License-MIT-F77E70?style=for-the-badge)](https://github.com/the-new-flesh/f8s/blob/master/LICENSE)
[![](https://img.shields.io/pypi/pyversions/f8s?style=for-the-badge&label=Python&color=A0D17B&logo=python&logoColor=A0D17B)](https://github.com/the-new-flesh/f8s/blob/master/docker/config/pyproject.toml)
[![](https://img.shields.io/pypi/v/f8s?style=for-the-badge&label=PyPI&color=5F95DE&logo=pypi&logoColor=5F95DE)](https://pypi.org/project/f8s/)
[![](https://img.shields.io/pypi/dm/f8s?style=for-the-badge&label=Downloads&color=5F95DE)](https://pepy.tech/project/f8s)

# Introduction

Framework for building K8s-ready Flask applications.

See [documentation](https://thenewflesh.github.io/f8s/) for details.

# Installation
### Python
`pip install f8s`

### Docker
1. Install [docker-desktop](https://docs.docker.com/desktop/)
2. `docker pull theNewFlesh/f8s:[version]`

### Docker For Developers
1. Install [docker-desktop](https://docs.docker.com/desktop/)
2. Ensure docker-desktop has at least 4 GB of memory allocated to it.
3. `git clone git@github.com:theNewFlesh/f8s.git`
4. `cd f8s`
5. `chmod +x bin/f8s`
6. `bin/f8s docker-start`

The service should take a few minutes to start up.

Run `bin/f8s --help` for more help on the command line tool.

### ZSH Setup

1. `bin/f8s` must be run from this repository's top level directory.
2. Therefore, if using zsh, it is recommended that you paste the following line
    in your ~/.zshrc file:
    - `alias f8s="cd [parent dir]/f8s; bin/f8s"`
    - Replace `[parent dir]` with the parent directory of this repository
3. Running the `zsh-complete` command will enable tab completions of the cli
   commands, in the next shell session.

   For example:
   - `f8s [tab]` will show you all the cli options, which you can press
     tab to cycle through
   - `f8s docker-[tab]` will show you only the cli options that begin with
     "docker-"

---

# Quickstart Guide
This repository contains a suite commands for the whole development process.
This includes everything from testing, to documentation generation and
publishing pip packages.

These commands can be accessed through:

  - The VSCode task runner
  - The VSCode task runner side bar
  - A terminal running on the host OS
  - A terminal within this repositories docker container

Running the `zsh-complete` command will enable tab completions of the CLI.
See the zsh setup section for more information.

### Command Groups

Development commands are grouped by one of 10 prefixes:

| Command    | Description                                                                        |
| ---------- | ---------------------------------------------------------------------------------- |
| build      | Commands for building packages for testing and pip publishing                      |
| docker     | Common docker commands such as build, start and stop                               |
| docs       | Commands for generating documentation and code metrics                             |
| library    | Commands for managing python package dependencies                                  |
| session    | Commands for starting interactive sessions such as jupyter lab and python          |
| state      | Command to display the current state of the repo and container                     |
| test       | Commands for running tests, linter and type annotations                            |
| version    | Commands for bumping project versions                                              |
| quickstart | Display this quickstart guide                                                      |
| zsh        | Commands for running a zsh session in the container and generating zsh completions |

### Common Commands

Here are some frequently used commands to get you started:

| Command           | Description                                               |
| ----------------- | --------------------------------------------------------- |
| docker-restart    | Restart container                                         |
| docker-start      | Start container                                           |
| docker-stop       | Stop container                                            |
| docs-full         | Generate documentation, coverage report, diagram and code |
| library-add       | Add a given package to a given dependency group           |
| library-graph-dev | Graph dependencies in dev environment                     |
| library-remove    | Remove a given package from a given dependency group      |
| library-search    | Search for pip packages                                   |
| library-update    | Update dev dependencies                                   |
| session-lab       | Run jupyter lab server                                    |
| state             | State of                                                  |
| test-dev          | Run all tests                                             |
| test-lint         | Run linting and type checking                             |
| zsh               | Run ZSH session inside container                          |
| zsh-complete      | Generate ZSH completion script                            |

---

# Development CLI
bin/f8s is a command line interface (defined in cli.py) that
works with any version of python 2.7 and above, as it has no dependencies.
Commands generally do not expect any arguments or flags.

Its usage pattern is: `bin/f8s COMMAND [-a --args]=ARGS [-h --help] [--dryrun]`

### Commands
The following is a complete list of all available development commands:

| Command                 | Description                                                         |
| ----------------------- | ------------------------------------------------------------------- |
| build-package           | Build production version of repo for publishing                     |
| build-prod              | Publish pip package of repo to PyPi                                 |
| build-publish           | Run production tests first then publish pip package of repo to PyPi |
| build-test              | Build test version of repo for prod testing                         |
| docker-build            | Build Docker image                                                  |
| docker-build-from-cache | Build Docker image from cached image                                |
| docker-build-prod       | Build production image                                              |
| docker-container        | Display the Docker container id                                     |
| docker-destroy          | Shutdown container and destroy its image                            |
| docker-destroy-prod     | Shutdown production container and destroy its image                 |
| docker-image            | Display the Docker image id                                         |
| docker-prod             | Start production container                                          |
| docker-pull-dev         | Pull development image from Docker registry                         |
| docker-pull-prod        | Pull production image from Docker registry                          |
| docker-push-dev         | Push development image to Docker registry                           |
| docker-push-dev-latest  | Push development image to Docker registry with dev-latest tag       |
| docker-push-prod        | Push production image to Docker registry                            |
| docker-push-prod-latest | Push production image to Docker registry with prod-latest tag       |
| docker-remove           | Remove Docker image                                                 |
| docker-restart          | Restart Docker container                                            |
| docker-start            | Start Docker container                                              |
| docker-stop             | Stop Docker container                                               |
| docs                    | Generate sphinx documentation                                       |
| docs-architecture       | Generate architecture.svg diagram from all import statements        |
| docs-full               | Generate documentation, coverage report, diagram and code           |
| docs-metrics            | Generate code metrics report, plots and tables                      |
| library-add             | Add a given package to a given dependency group                     |
| library-graph-dev       | Graph dependencies in dev environment                               |
| library-graph-prod      | Graph dependencies in prod environment                              |
| library-install-dev     | Install all dependencies into dev environment                       |
| library-install-prod    | Install all dependencies into prod environment                      |
| library-list-dev        | List packages in dev environment                                    |
| library-list-prod       | List packages in prod environment                                   |
| library-lock-dev        | Resolve dev.lock file                                               |
| library-lock-prod       | Resolve prod.lock file                                              |
| library-remove          | Remove a given package from a given dependency group                |
| library-search          | Search for pip packages                                             |
| library-sync-dev        | Sync dev environment with packages listed in dev.lock               |
| library-sync-prod       | Sync prod environment with packages listed in prod.lock             |
| library-update          | Update dev dependencies                                             |
| library-update-pdm      | Update PDM                                                          |
| quickstart              | Display quickstart guide                                            |
| session-lab             | Run jupyter lab server                                              |
| session-python          | Run python session with dev dependencies                            |
| session-server          | Runn application server inside Docker container                     |
| state                   | State of repository and Docker container                            |
| test-coverage           | Generate test coverage report                                       |
| test-dev                | Run all tests                                                       |
| test-fast               | Test all code excepts tests marked with SKIP_SLOWS_TESTS decorator  |
| test-lint               | Run linting and type checking                                       |
| test-prod               | Run tests across all support python versions                        |
| version                 | Full resolution of repo: dependencies, linting, tests, docs, etc    |
| version-bump-major      | Bump pyproject major version                                        |
| version-bump-minor      | Bump pyproject minor version                                        |
| version-bump-patch      | Bump pyproject patch version                                        |
| version-commit          | Tag with version and commit changes to master                       |
| zsh                     | Run ZSH session inside Docker container                             |
| zsh-complete            | Generate oh-my-zsh completions                                      |
| zsh-root                | Run ZSH session as root inside Docker container                     |

### Flags

| Short | Long      | Description                                          |
| ----- | --------- | ---------------------------------------------------- |
| -a    | --args    | Additional arguments, this can generally be ignored  |
| -h    | --help    | Prints command help message to stdout                |
|       | --dryrun  | Prints command that would otherwise be run to stdout |

---

# Production CLI

f8s comes with a command line interface defined in command.py.

Its usage pattern is: `f8s COMMAND [ARGS] [FLAGS] [-h --help]`

## Commands

---

### bash-completion
Prints BASH completion code to be written to a _f8s completion file

Usage: `f8s bash-completion`

---

### zsh-completion
Prints ZSH completion code to be written to a _f8s completion file

Usage: `f8s zsh-completion`



            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "f8s",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "Flask,Kubernetes,K8s,F8s,Helm,ArgoCD",
    "author": "",
    "author_email": "Alex Braun <alexander.g.braun@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d4/df/8034b85b1d759c6672d13ddbee11398c534604c2bc22e0c19792c5fed5d4/f8s-0.2.2.tar.gz",
    "platform": null,
    "description": "<p>\n    <a href=\"https://www.linkedin.com/in/alexandergbraun\" rel=\"nofollow noreferrer\">\n        <img src=\"https://www.gomezaparicio.com/wp-content/uploads/2012/03/linkedin-logo-1-150x150.png\"\n             alt=\"linkedin\" width=\"30px\" height=\"30px\"\n        >\n    </a>\n    <a href=\"https://github.com/theNewFlesh\" rel=\"nofollow noreferrer\">\n        <img src=\"https://tadeuzagallo.com/GithubPulse/assets/img/app-icon-github.png\"\n             alt=\"github\" width=\"30px\" height=\"30px\"\n        >\n    </a>\n    <a href=\"https://pypi.org/user/the-new-flesh\" rel=\"nofollow noreferrer\">\n        <img src=\"https://cdn.iconscout.com/icon/free/png-256/python-2-226051.png\"\n             alt=\"pypi\" width=\"30px\" height=\"30px\"\n        >\n    </a>\n    <a href=\"http://vimeo.com/user3965452\" rel=\"nofollow noreferrer\">\n        <img src=\"https://cdn.iconscout.com/icon/free/png-512/movie-52-151107.png?f=avif&w=512\"\n             alt=\"vimeo\" width=\"30px\" height=\"30px\"\n        >\n    </a>\n    <a href=\"http://www.alexgbraun.com\" rel=\"nofollow noreferrer\">\n        <img src=\"https://i.ibb.co/fvyMkpM/logo.png\"\n             alt=\"alexgbraun\" width=\"30px\" height=\"30px\"\n        >\n    </a>\n</p>\n\n<!-- <img id=\"logo\" src=\"resources/logo.png\" style=\"max-width: 717px\"> -->\n\n[![](https://img.shields.io/badge/License-MIT-F77E70?style=for-the-badge)](https://github.com/the-new-flesh/f8s/blob/master/LICENSE)\n[![](https://img.shields.io/pypi/pyversions/f8s?style=for-the-badge&label=Python&color=A0D17B&logo=python&logoColor=A0D17B)](https://github.com/the-new-flesh/f8s/blob/master/docker/config/pyproject.toml)\n[![](https://img.shields.io/pypi/v/f8s?style=for-the-badge&label=PyPI&color=5F95DE&logo=pypi&logoColor=5F95DE)](https://pypi.org/project/f8s/)\n[![](https://img.shields.io/pypi/dm/f8s?style=for-the-badge&label=Downloads&color=5F95DE)](https://pepy.tech/project/f8s)\n\n# Introduction\n\nFramework for building K8s-ready Flask applications.\n\nSee [documentation](https://thenewflesh.github.io/f8s/) for details.\n\n# Installation\n### Python\n`pip install f8s`\n\n### Docker\n1. Install [docker-desktop](https://docs.docker.com/desktop/)\n2. `docker pull theNewFlesh/f8s:[version]`\n\n### Docker For Developers\n1. Install [docker-desktop](https://docs.docker.com/desktop/)\n2. Ensure docker-desktop has at least 4 GB of memory allocated to it.\n3. `git clone git@github.com:theNewFlesh/f8s.git`\n4. `cd f8s`\n5. `chmod +x bin/f8s`\n6. `bin/f8s docker-start`\n\nThe service should take a few minutes to start up.\n\nRun `bin/f8s --help` for more help on the command line tool.\n\n### ZSH Setup\n\n1. `bin/f8s` must be run from this repository's top level directory.\n2. Therefore, if using zsh, it is recommended that you paste the following line\n    in your ~/.zshrc file:\n    - `alias f8s=\"cd [parent dir]/f8s; bin/f8s\"`\n    - Replace `[parent dir]` with the parent directory of this repository\n3. Running the `zsh-complete` command will enable tab completions of the cli\n   commands, in the next shell session.\n\n   For example:\n   - `f8s [tab]` will show you all the cli options, which you can press\n     tab to cycle through\n   - `f8s docker-[tab]` will show you only the cli options that begin with\n     \"docker-\"\n\n---\n\n# Quickstart Guide\nThis repository contains a suite commands for the whole development process.\nThis includes everything from testing, to documentation generation and\npublishing pip packages.\n\nThese commands can be accessed through:\n\n  - The VSCode task runner\n  - The VSCode task runner side bar\n  - A terminal running on the host OS\n  - A terminal within this repositories docker container\n\nRunning the `zsh-complete` command will enable tab completions of the CLI.\nSee the zsh setup section for more information.\n\n### Command Groups\n\nDevelopment commands are grouped by one of 10 prefixes:\n\n| Command    | Description                                                                        |\n| ---------- | ---------------------------------------------------------------------------------- |\n| build      | Commands for building packages for testing and pip publishing                      |\n| docker     | Common docker commands such as build, start and stop                               |\n| docs       | Commands for generating documentation and code metrics                             |\n| library    | Commands for managing python package dependencies                                  |\n| session    | Commands for starting interactive sessions such as jupyter lab and python          |\n| state      | Command to display the current state of the repo and container                     |\n| test       | Commands for running tests, linter and type annotations                            |\n| version    | Commands for bumping project versions                                              |\n| quickstart | Display this quickstart guide                                                      |\n| zsh        | Commands for running a zsh session in the container and generating zsh completions |\n\n### Common Commands\n\nHere are some frequently used commands to get you started:\n\n| Command           | Description                                               |\n| ----------------- | --------------------------------------------------------- |\n| docker-restart    | Restart container                                         |\n| docker-start      | Start container                                           |\n| docker-stop       | Stop container                                            |\n| docs-full         | Generate documentation, coverage report, diagram and code |\n| library-add       | Add a given package to a given dependency group           |\n| library-graph-dev | Graph dependencies in dev environment                     |\n| library-remove    | Remove a given package from a given dependency group      |\n| library-search    | Search for pip packages                                   |\n| library-update    | Update dev dependencies                                   |\n| session-lab       | Run jupyter lab server                                    |\n| state             | State of                                                  |\n| test-dev          | Run all tests                                             |\n| test-lint         | Run linting and type checking                             |\n| zsh               | Run ZSH session inside container                          |\n| zsh-complete      | Generate ZSH completion script                            |\n\n---\n\n# Development CLI\nbin/f8s is a command line interface (defined in cli.py) that\nworks with any version of python 2.7 and above, as it has no dependencies.\nCommands generally do not expect any arguments or flags.\n\nIts usage pattern is: `bin/f8s COMMAND [-a --args]=ARGS [-h --help] [--dryrun]`\n\n### Commands\nThe following is a complete list of all available development commands:\n\n| Command                 | Description                                                         |\n| ----------------------- | ------------------------------------------------------------------- |\n| build-package           | Build production version of repo for publishing                     |\n| build-prod              | Publish pip package of repo to PyPi                                 |\n| build-publish           | Run production tests first then publish pip package of repo to PyPi |\n| build-test              | Build test version of repo for prod testing                         |\n| docker-build            | Build Docker image                                                  |\n| docker-build-from-cache | Build Docker image from cached image                                |\n| docker-build-prod       | Build production image                                              |\n| docker-container        | Display the Docker container id                                     |\n| docker-destroy          | Shutdown container and destroy its image                            |\n| docker-destroy-prod     | Shutdown production container and destroy its image                 |\n| docker-image            | Display the Docker image id                                         |\n| docker-prod             | Start production container                                          |\n| docker-pull-dev         | Pull development image from Docker registry                         |\n| docker-pull-prod        | Pull production image from Docker registry                          |\n| docker-push-dev         | Push development image to Docker registry                           |\n| docker-push-dev-latest  | Push development image to Docker registry with dev-latest tag       |\n| docker-push-prod        | Push production image to Docker registry                            |\n| docker-push-prod-latest | Push production image to Docker registry with prod-latest tag       |\n| docker-remove           | Remove Docker image                                                 |\n| docker-restart          | Restart Docker container                                            |\n| docker-start            | Start Docker container                                              |\n| docker-stop             | Stop Docker container                                               |\n| docs                    | Generate sphinx documentation                                       |\n| docs-architecture       | Generate architecture.svg diagram from all import statements        |\n| docs-full               | Generate documentation, coverage report, diagram and code           |\n| docs-metrics            | Generate code metrics report, plots and tables                      |\n| library-add             | Add a given package to a given dependency group                     |\n| library-graph-dev       | Graph dependencies in dev environment                               |\n| library-graph-prod      | Graph dependencies in prod environment                              |\n| library-install-dev     | Install all dependencies into dev environment                       |\n| library-install-prod    | Install all dependencies into prod environment                      |\n| library-list-dev        | List packages in dev environment                                    |\n| library-list-prod       | List packages in prod environment                                   |\n| library-lock-dev        | Resolve dev.lock file                                               |\n| library-lock-prod       | Resolve prod.lock file                                              |\n| library-remove          | Remove a given package from a given dependency group                |\n| library-search          | Search for pip packages                                             |\n| library-sync-dev        | Sync dev environment with packages listed in dev.lock               |\n| library-sync-prod       | Sync prod environment with packages listed in prod.lock             |\n| library-update          | Update dev dependencies                                             |\n| library-update-pdm      | Update PDM                                                          |\n| quickstart              | Display quickstart guide                                            |\n| session-lab             | Run jupyter lab server                                              |\n| session-python          | Run python session with dev dependencies                            |\n| session-server          | Runn application server inside Docker container                     |\n| state                   | State of repository and Docker container                            |\n| test-coverage           | Generate test coverage report                                       |\n| test-dev                | Run all tests                                                       |\n| test-fast               | Test all code excepts tests marked with SKIP_SLOWS_TESTS decorator  |\n| test-lint               | Run linting and type checking                                       |\n| test-prod               | Run tests across all support python versions                        |\n| version                 | Full resolution of repo: dependencies, linting, tests, docs, etc    |\n| version-bump-major      | Bump pyproject major version                                        |\n| version-bump-minor      | Bump pyproject minor version                                        |\n| version-bump-patch      | Bump pyproject patch version                                        |\n| version-commit          | Tag with version and commit changes to master                       |\n| zsh                     | Run ZSH session inside Docker container                             |\n| zsh-complete            | Generate oh-my-zsh completions                                      |\n| zsh-root                | Run ZSH session as root inside Docker container                     |\n\n### Flags\n\n| Short | Long      | Description                                          |\n| ----- | --------- | ---------------------------------------------------- |\n| -a    | --args    | Additional arguments, this can generally be ignored  |\n| -h    | --help    | Prints command help message to stdout                |\n|       | --dryrun  | Prints command that would otherwise be run to stdout |\n\n---\n\n# Production CLI\n\nf8s comes with a command line interface defined in command.py.\n\nIts usage pattern is: `f8s COMMAND [ARGS] [FLAGS] [-h --help]`\n\n## Commands\n\n---\n\n### bash-completion\nPrints BASH completion code to be written to a _f8s completion file\n\nUsage: `f8s bash-completion`\n\n---\n\n### zsh-completion\nPrints ZSH completion code to be written to a _f8s completion file\n\nUsage: `f8s zsh-completion`\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Framework for building K8s-ready Flask applications.",
    "version": "0.2.2",
    "project_urls": {
        "documentation": "https://theNewFlesh.github.io/f8s",
        "repository": "https://github.com/the-new-flesh/f8s"
    },
    "split_keywords": [
        "flask",
        "kubernetes",
        "k8s",
        "f8s",
        "helm",
        "argocd"
    ],
    "urls": [
        {
            "comment_text": "0.2.2",
            "digests": {
                "blake2b_256": "1c7bef5b54d5d3f4fafa18a523328e425707ba8c214f1486361f700a089d5ab7",
                "md5": "ea93959a43c7d0531500e06d33d35eaf",
                "sha256": "9db82abafb72faa9170423d075d32a92e5e859ff5132fa1d7c10b50d60113dd9"
            },
            "downloads": -1,
            "filename": "f8s-0.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ea93959a43c7d0531500e06d33d35eaf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 8594,
            "upload_time": "2024-02-28T04:38:31",
            "upload_time_iso_8601": "2024-02-28T04:38:31.904133Z",
            "url": "https://files.pythonhosted.org/packages/1c/7b/ef5b54d5d3f4fafa18a523328e425707ba8c214f1486361f700a089d5ab7/f8s-0.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "0.2.2",
            "digests": {
                "blake2b_256": "d4df8034b85b1d759c6672d13ddbee11398c534604c2bc22e0c19792c5fed5d4",
                "md5": "46a21cbbf716c8365fe2a702b3c749a2",
                "sha256": "f17f60c4886ed59995c7d361e6d403053176728178383301c67e7ffea30d30d9"
            },
            "downloads": -1,
            "filename": "f8s-0.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "46a21cbbf716c8365fe2a702b3c749a2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 7456,
            "upload_time": "2024-02-28T04:38:32",
            "upload_time_iso_8601": "2024-02-28T04:38:32.878180Z",
            "url": "https://files.pythonhosted.org/packages/d4/df/8034b85b1d759c6672d13ddbee11398c534604c2bc22e0c19792c5fed5d4/f8s-0.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-28 04:38:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "the-new-flesh",
    "github_project": "f8s",
    "github_not_found": true,
    "lcname": "f8s"
}
        
Elapsed time: 0.20203s