Skip to content
View go-live-trip's full-sized avatar

Block or report go-live-trip

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. An example of psycopg2 cursor suppor... An example of psycopg2 cursor supporting prepared statements
    1
    #!/usr/bin/env python
    2
    """An example of cursor dealing with prepared statements.
    3
    4
    A cursor can be used as a regular one, but has also a prepare() statement. If
    5
    prepare() is called, execute() and executemany() can be used without query: in
  2. Jinja2 macro to render WTForms field... Jinja2 macro to render WTForms fields with Twitter Bootstrap
    1
    {% macro form_field(field) -%}
    2
        {% set with_label = kwargs.pop('with_label', False) %}
    3
        {% set placeholder = '' %}
    4
        {% if not with_label %}
    5
            {% set placeholder = field.label.text %}