Skip to main content

Bootstrap4 components built with markyp-html

Project description

Build Status Downloads Downloads Downloads

markyp-bootstrap4

Create Bootstrap 4 web pages using purely Python.

The project is built on markyp and markyp-html.

Installation

The project is listed on the Python Package Index, it can be installed simply by executing pip install markyp-bootstrap4.

Getting started

If you are not familiar with the basic concepts of markyp, please start by having a look at its documentation here.

For a demo of the capabilities of markyp-bootstrap4, head over to the project's GitHub Pages. The source code of that page was generated by the demo.py script that you can find at the root of this repository.

The following example shows how to create a login form using markyp-bootstrap4.

from markyp_html import webpage
from markyp_html.forms import form

from markyp_bootstrap4 import req
from markyp_bootstrap4.layout import container, one, col, margin, offset
from markyp_bootstrap4.buttons import b_button
from markyp_bootstrap4.forms import form_group, form_check, form_check_label, input_, text

def login():
    return form(
        form_group(
            text.h5("Email"),
            input_.email(placeholder="Enter your email address")
        ),
        form_group(
            text.h5("Password"),
            input_.password(placeholder="Enter your password")
        ),
        form_check(
            input_.checkbox(),
            form_check_label("Remember Me"),
            class_=margin(bottom=2)
        ),
        b_button.primary("Sign In", type="submit")
    )

page = webpage(
    container(
        one(
            login(),
            md=6,
            class_=offset(md=3)
        )
    ),
    page_title="markyp-bootstrap4 example",
    head_elements=[
        req.bootstrap_css,
        *req.all_js
    ]
)

print(page)

Here is a list of things to notice in the example:

  • Bootstrap 4's requirements can be import with from markyp_bootstrap4 import req, and the required CSS and JavaScript imports should be added to the head_elements of the webpage.
  • The layout module contains the components you can use to define the layout of the webpage.
  • markyp_bootstrap4 components are grouped the same way as components in Bootstrap 4's documentation. The only difference is here every module name is in plural form.

Related projects

Community guidelines

In general, please treat each other with respect and follow the below guidelines to interact with the project:

  • Questions, feedback: Open an issue with a [Question] <issue-title> title.
  • Bug reports: Open an issue with a [Bug] <issue-title> title, an adequate description of the bug, and a code snippet that reproduces the issue if possible.
  • Feature requests and ideas: Open an issue with an [Enhancement] <issue-title> title and a clear description of the enhancement proposal.

Contribution guidelines

Every form of contribution is welcome, including documentation improvements, tests, bug fixes, and feature implementations.

Please follow these guidelines to contribute to the project:

  • Make sure your changes match the documentation and coding style of the project, including PEP 484 type annotations.
  • mypy is used to type-check the codebase, submitted code should not produce typing errors. See this page for more information on mypy.
  • Small fixes can be submitted simply by creating a pull request.
  • Non-trivial changes should have an associated issue in the issue tracker that commits must reference (typically by adding #refs <issue-id> to the end of commit messages).
  • Please write tests for the changes you make (if applicable).

If you have any questions about contributing to the project, please contact the project owner.

As mentioned in the contribution guidelines, the project is type-checked using mypy, so first of all, the project must pass mypy's static code analysis.

The project is tested using pytest. The chosen test layout is that tests are outside the application code, see this page for details on what it means in practice.

If pytest is installed, the test set can be executed using the pytest test command from within the project directory.

If pytest-cov is also installed, a test coverage report can be generated by executing pytest test --cov markyp_bootstrap4 from the root directory of the project.

License - MIT

The library is open-sourced under the conditions of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

markyp-bootstrap4-0.2210.1.tar.gz (47.2 kB view details)

Uploaded Source

Built Distribution

markyp_bootstrap4-0.2210.1-py3-none-any.whl (39.1 kB view details)

Uploaded Python 3

File details

Details for the file markyp-bootstrap4-0.2210.1.tar.gz.

File metadata

  • Download URL: markyp-bootstrap4-0.2210.1.tar.gz
  • Upload date:
  • Size: 47.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for markyp-bootstrap4-0.2210.1.tar.gz
Algorithm Hash digest
SHA256 c19c13c1b5076def4ed7965a016a9add4ac0d461a614c5b53cc0f20cd897c4f4
MD5 38f4182a9fd473aa98135afb27773b85
BLAKE2b-256 e85963685742283955691c601ab88332348b0cd8908055757b6e07d9509487f8

See more details on using hashes here.

File details

Details for the file markyp_bootstrap4-0.2210.1-py3-none-any.whl.

File metadata

File hashes

Hashes for markyp_bootstrap4-0.2210.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f875c877e23be9cb90766c12cea523b56d37329e7407071e42ea56fea40aa458
MD5 646281c853cb8177716e85c9dcb534cb
BLAKE2b-256 4bdb78bd986cb60a54d30be60e4b10812398c69ac4749b1700c6b5d8be2e50cb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page