Go to file
Harshad Sharma c294b608c6 Add: display traceback within the browser if userscript crashes.
Use click instead of argparse.
2017-06-16 18:57:48 +05:30
ci Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
docs Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
examples Add --install option to userscripts through decorator. 2017-06-16 17:59:34 +05:30
src/qutescript Add: display traceback within the browser if userscript crashes. 2017-06-16 18:57:48 +05:30
tests Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
.bumpversion.cfg Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
.cookiecutterrc Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
.coveragerc Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
.editorconfig Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
.gitignore Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
.travis.yml Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
AUTHORS.rst Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
CHANGELOG.rst Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
CONTRIBUTING.rst Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
LICENSE Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
MANIFEST.in Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
README.rst Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
setup.cfg Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30
setup.py Add: display traceback within the browser if userscript crashes. 2017-06-16 18:57:48 +05:30
tox.ini Project skeleton with cookiecutter-pylibrary. 2017-06-16 09:47:06 +05:30

========
Overview
========

.. start-badges

.. list-table::
    :stub-columns: 1

    * - docs
      - |docs|
    * - tests
      - | |travis|
        |
    * - package
      - | |version| |wheel| |supported-versions| |supported-implementations|
        | |commits-since|

.. |docs| image:: https://readthedocs.org/projects/python-qutescript/badge/?style=flat
    :target: https://readthedocs.org/projects/python-qutescript
    :alt: Documentation Status

.. |travis| image:: https://travis-ci.org/hiway/python-qutescript.svg?branch=master
    :alt: Travis-CI Build Status
    :target: https://travis-ci.org/hiway/python-qutescript

.. |version| image:: https://img.shields.io/pypi/v/qutescript.svg
    :alt: PyPI Package latest release
    :target: https://pypi.python.org/pypi/qutescript

.. |commits-since| image:: https://img.shields.io/github/commits-since/hiway/python-qutescript/v0.1.0.svg
    :alt: Commits since latest release
    :target: https://github.com/hiway/python-qutescript/compare/v0.1.0...master

.. |wheel| image:: https://img.shields.io/pypi/wheel/qutescript.svg
    :alt: PyPI Wheel
    :target: https://pypi.python.org/pypi/qutescript

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/qutescript.svg
    :alt: Supported versions
    :target: https://pypi.python.org/pypi/qutescript

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/qutescript.svg
    :alt: Supported implementations
    :target: https://pypi.python.org/pypi/qutescript


.. end-badges

Painless userscripts for qutebrowser.

* Free software: BSD license

Installation
============

::

    pip install qutescript

Documentation
=============

https://python-qutescript.readthedocs.io/

Development
===========

To run the all tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox