Skip to main content
python-live-stylus
==============

Convert stylus to css real time. Easily used with any web framwork.

It depends on the Python Stylus: https://github.com/bkad/python-stylus

And the Python Stylus depends on [Node](http://nodejs.org) and [Stylus](http://learnboost.github.com/stylus/)

So you need install nodejs and stylus node package before .


#Install

```
pip install live-stylus
```

#Usage

For example , in a flask project :

```python
from flask import Flask
from live_stylus import ConvStylus

app = Flask(__name__)

from views import *


if __name__ == "__main__":
app.debug = True
ConvStylus()
app.run()
```

In a bottle project :

```python
from bottle import route, run, template
from live_stylus import ConvStylus

@route('/hello/:name')
def index(name='World'):
return template('<b>Hello {{name}}</b>!', name=name)

if __name__ == "__main__":
ConvStylus()
run(host='localhost', port=8080)
```

Then when you modify a .styl file , it will be converted to a same name css file immediately.
eg. css/global.styl => css/global.css

If you use other web framwork , just put the ConvStylus() before the .run() or .start() code.

If you want monitor a explicitly directoty's stylus file , you can use:

```python
ConvStylus('/home/xxx/work/project/static/css')
```

## Questions?

If you have any questions, please feel free to ask through [New Issue](https://github.com/allenm/python-live-stylus/issues/new).

## License

python-live-stylus is available under the terms of the [MIT License](https://github.com/allenm/python-live-stylus/blob/master/license).

Download files

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

Source Distribution

live_stylus-0.2.7.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file live_stylus-0.2.7.tar.gz.

File metadata

  • Download URL: live_stylus-0.2.7.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for live_stylus-0.2.7.tar.gz
Algorithm Hash digest
SHA256 b76940b0c89966eface8228e9ba536bee1c86249828e3331c66919b3b0dd4715
MD5 ff7b55c8eaeacf6e26199756095d91e9
BLAKE2b-256 2941b498c4ed37a3d9dba06559ea2f6b15ae8c421860c0dcecb8f87bf5366e10

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.7 This release

1 file

0.2.6

1 file

0.2.5

1 file

0.2.4

1 file

0.2.3

1 file

0.2.1

1 file

0.2

1 file

0.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page