You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
674 B
ReStructuredText

========
Overview
========
7 years ago
Painless userscripts for qutebrowser.
7 years ago
* Free software: BSD license
7 years ago
Status
======
7 years ago
Very alpha, "works for me" on MacOS Sierra with Python 3.6;
if you like what you see, please test it on your platform
and help by submitting pull-requests if your current skills
allow.
Installation
============
::
7 years ago
git clone https://github.com/hiway/python-qutescript.git qutescript
cd qutescript
pip install -e .
7 years ago
Usage
=====
7 years ago
::
7 years ago
#!/usr/bin/env python
7 years ago
from qutescript import userscript
7 years ago
@userscript
def hello_world(request):
request.send_text('Hello, world!')
7 years ago
if __name__ == '__main__':
hello_world()