sciter-sdk / pysciter

Python bindings for Sciter
https://sciter.com
MIT License
396 stars 40 forks source link
gui htmlayout python-bindings sciter tiscript

Python bindings for Sciter

AppVeyor status Travis Status PyPI License Join the forums at https://sciter.com/forums

Check this page for other language bindings (Delphi / D / Go / .NET / Python / Rust).


Introduction

Sciter is an embeddable multiplatform HTML/CSS/script engine with GPU accelerated rendering designed to render modern desktop application UI. It's a compact, single dll/dylib/so file (4-8 mb) engine without any additional dependencies.

Screenshots

Check the screenshot gallery of the desktop UI examples.

Description

Physically Sciter is a mono library which contains:

Internally it contains the following modules:

Sciter supports all standard elements defined in HTML5 specification with some additions. CSS is extended to better support the Desktop UI development, e.g. flow and flex units, vertical and horizontal alignment, OS theming.

Sciter SDK comes with a demo "browser" with a builtin DOM inspector, script debugger and documentation viewer:

Sciter tools

Check https://sciter.com website and its documentation resources for engine principles, architecture and more.

Getting started:

  1. Download the Sciter.TIS or Sciter.JS SDK and extract it somewhere.
  2. Add the corresponding target platform binaries to PATH (bin.win/x64, bin.osx or bin.lnx/x64) and install Sciter shared library to your LIBRARY_PATH.
  3. Install pysciter: python3 setup.py install or pip install pysciter.
  4. Run the minimal pysciter sample: python3 examples/minimal.py. Also you can run script from zip archive directly: python3 ./archive.zip :)

Brief look:

Minimal sciter app is extremely small:

import sciter

if __name__ == '__main__':
    frame = sciter.Window(ismain=True, uni_theme=True)
    frame.load_file("minimal.htm")
    frame.expand()
    frame.run_app()

It looks similar to this:

Minimal pysciter sample

Interoperability

In respect of tiscript or JavaScript functions calling:

answer = self.call_function('script_function', "hello, python!", "and", ["other", 3, "arguments"])

Calling python from script can be implemented as following:

def GetNativeApi(): # called from sciter.EventHandler.on_script_call
  def on_add(a, b):
      return a + b

  def on_sub(a, b):
      raise Exception("sub(%d,%d) raised exception" % (a, b))

  api = { 'add': on_add,  # plain function
          'sub': on_sub,  # raise exception at script
          'mul': lambda a,b: a * b }   # lambdas supported too
  return api

So, we can access our api now from TIScript:

// `view` represents window where script is runnung.
// `stdout` stream is a standard output stream (shell or debugger console, for example)

var api = view.GetNativeApi();

// returned `api` object looks like {add: function(a,b) { return a + b; }};
stdout.println("2 + 3 = " + api.add(2, 3));

or from JavaScript:

// `Window.this` represents the window where this script is running.
const api = Window.this.GetNativeApi();
console.log("2 + 3", api.add(2, 3));

Check pysciter/examples folder for more complex usage.

What is supported right now:

Platforms:

Python 3.x.

License

Bindings library licensed under MIT license. Sciter Engine has the own license terms and end used license agreement for SDK usage.