Metadata-Version: 2.1
Name: hobbit-core
Version: 3.0.0rc3
Summary: Hobbit - A flask project generator.
Home-page: https://github.com/TTWShell/hobbit-core
Author: Legolas Bloom
Author-email: zhanhsw@gmail.com
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
Provides-Extra: hobbit_core
Provides-Extra: hobbit
License-File: LICENSE

# Hobbit-core

[![CircleCI](https://circleci.com/gh/TTWShell/hobbit-core.svg?style=svg)](https://circleci.com/gh/TTWShell/hobbit-core)
[![Documentation Status](https://readthedocs.org/projects/hobbit-core/badge/?version=latest)](https://hobbit-core.readthedocs.io/zh/latest/?badge=latest)
[![PyPi-Version](https://img.shields.io/pypi/v/hobbit-core.svg)](https://img.shields.io/pypi/v/hobbit-core.svg)
[![Python-version](https://img.shields.io/pypi/pyversions/hobbit-core.svg)](https://img.shields.io/pypi/pyversions/hobbit-core.svg)
[![codecov](https://codecov.io/gh/TTWShell/hobbit-core/branch/master/graph/badge.svg)](https://codecov.io/gh/TTWShell/hobbit-core)
[![License](https://img.shields.io/:license-mit-blue.svg?style=flat-square)](https://hobbit-core.mit-license.org)

A flask project generator. Based on Flask + SQLAlchemy + marshmallow + webargs.

[https://hobbit-core.readthedocs.io/zh/latest/](https://hobbit-core.readthedocs.io/zh/latest/)

# Installation

Install and update using pip(**Still using Python 2? It is time to upgrade.**):

    pip install -U "hobbit-core[hobbit]"  # just install hobbit cmd
    pip install -U "hobbit-core[hobbit,hobbit_core]"  # recommended when use virtualenv

# A Simple Example

## Init project:

    hobbit --echo new -n demo -d /tmp/demo -p 5000 -t rivendell
    cd /tmp/demo
    pipenv install -r requirements.txt --pre && pipenv install --dev pytest pytest-cov pytest-env ipython flake8 ipdb
    pipenv shell

## Run server:

    (demo) ➜  demo FLASK_APP=app/run.py flask run
     * Serving Flask app "app/run.py"
     * Environment: production
     WARNING: This is a development server. Do not use it in a production deployment.
     Use a production WSGI server instead.
     * Debug mode: off
     * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)

## Run test:

    (demo) ➜  demo py.test
    ===================================================== test session starts ======================================================
    platform darwin -- Python 3.7.0, pytest-5.0.1, py-1.8.0, pluggy-0.12.0 -- /Users/Legolas/.virtualenvs/demo-OzheZQoG/bin/python3.7
    cachedir: .pytest_cache
    rootdir: /private/tmp/demo, inifile: pytest.ini
    plugins: env-0.6.2, cov-2.7.1
    collected 2 items

    tests/test_option.py::TestOption::test_options PASSED
    tests/test_ping.py::TestAPIExample::test_ping_api PASSED

    ---------- coverage: platform darwin, python 3.7.0-final-0 -----------
    Name                         Stmts   Miss  Cover   Missing
    ----------------------------------------------------------
    app/__init__.py                  0      0   100%
    app/configs/__init__.py          0      0   100%
    app/configs/default.py           6      0   100%
    app/configs/development.py       1      1     0%   1
    app/configs/production.py        2      2     0%   1-3
    app/configs/testing.py           8      0   100%
    app/core/__init__.py             0      0   100%
    app/exts.py                      8      0   100%
    app/models/__init__.py           2      0   100%
    app/models/consts.py             1      0   100%
    app/run.py                      35      1    97%   49
    app/schemas/__init__.py          2      0   100%
    app/services/__init__.py         2      0   100%
    app/services/option.py           6      0   100%
    app/tasks/__init__.py            1      1     0%   1
    app/utils/__init__.py            0      0   100%
    app/views/__init__.py            2      0   100%
    app/views/option.py              5      0   100%
    app/views/ping.py                7      0   100%
    tests/__init__.py               17      1    94%   29
    tests/conftest.py               11      0   100%
    tests/test_option.py             5      0   100%
    tests/test_ping.py               5      0   100%
    ----------------------------------------------------------
    TOTAL                          126      6    95%


    =================================================== 2 passed in 0.24 seconds ===================================================

# Others

    hobbit --help
