Coder Social home page Coder Social logo

chainsaw's Introduction

chainsaw GitHub release Travis branch GitHub issues GitHub forks GitHub stars GitHub license Awesomeness

CSS Stylesheet creator made in pure Python

How to

    from src.chainsaw import *
    from src.component import *
    from src.rule import *
    from src.minify import *

    boldRed = Rule({"color" : "red", "font-weight" : "bold"}) # Define the styles in the rule
    h1 = Component("h1") # Create a component to hold the Rules, and make it apply to the HTML tag h1
    h1.addRule(boldRed) # Apply the rule to the component
    style = Chainsaw(h1) # Create the stylesheet and give it h1

    print(style) # You can get the raw CSS by using the Chainsaw object like a string

Installing

To setup/install the requirements for chainsaw:

$ make install

Then, to make sure everything's going well:

$ make
-- snip --
$ make minify
-- snip --
$ make loader
-- snip --

That will test three current major functions of chainsaw.

License

Apache License, Version 2.0

See the LICENSE file

chainsaw's People

Stargazers

Angus Goucher avatar

Watchers

James Cloos avatar Angus Goucher avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.