Metadata-Version: 2.1
Name: Flask-BS4
Version: 4.5.0.1
Summary: Include Bootstrap4 in your Flask project
Home-page: https://github.com/hfilimonescu/flask-bs4
Author: Horia Filimonescu
Author-email: horia.filimonescu+github@gmail.com
License: MIT
Description: # Flask-BS4
        
        ***This is a fork of [Flask-Bootsrap](https://pypi.org/project/Flask-Bootstrap/) upgraded to Bootstrap 4.x.x.***
        
        Flask-Bootstrap packages [Bootstrap](http://getbootstrap.com) into an extension that mostly consists of a blueprint named `bootstrap`. It can also create links to serve Bootstrap from a CDN and works with no boilerplate code in your application.
        
        
        ## Usage
        
        Here is an example:
        
        ```python
        from flask_bs4 import Bootstrap
        
        [...]
        
        Bootstrap(app)
        ```
        
        This makes some new templates available, containing blank pages that include all bootstrap resources, and have predefined blocks where you can put your content.
        
        As of version 3, Flask-Bootstrap has a [proper documentation](http://pythonhosted.org/Flask-Bootstrap), which you can check for more details.
        
        ## Sample App
        
        Welcome to the Flask-BS4 sample app. This will give you an overview
        of how the Flask-BS4 package can render different types of input fields.
        
        First you should create a virtual environment. I prefer using:
        
        ```bash
        $ python3 -m venv venv
        ```
        
        To run this application yourself, please install its requirements first:
        
        ```bash
        $ pip install -r sample_app/requirements.txt
        ```
        
        Then, you can actually run the application. Optionally you can set
        `FLASK_ENV=development`.
        
        ```bash
        $ export FLASK_APP=sample_app
        $ flask run
        ```
        
        Afterwards, point your browser to [localhost:5000](http://localhost:5000),
        then check out the source.
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Flask
Description-Content-Type: text/markdown
