Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stylus

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylus

A bridge to the Stylus css compiler

  • 0.1.2
  • PyPI
  • Socket score

Maintainers
1

Python Stylus

python-stylus bridges your Python code and the Stylus library.

Prerequisites

This libraries assumes you have a couple of things in place already for stylus to work:

  • Node installed with the node command available to use in your runtime.
  • Stylus installed in your working directory's node_modules folder or in a location specified in your NODE_PATH environment variable.

Installation

pip install stylus

Usage

from stylus import Stylus
compiler = Stylus()

compiler.compile("""
border-radius()
  -webkit-border-radius arguments
  -moz-border-radius arguments
  border-radius arguments


body
  font 12px Helvetica, Arial, sans-serif

a.button
  border-radius 5px
""")

# import plugins
compiler.use("nib")

compiler.compile("""
@import 'nib'
body
  background: linear-gradient(top, white, black)
""")

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc