File: manuskript.py

package info (click to toggle)
manuskript 0.16.1-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,228 kB
  • sloc: javascript: 54,334; python: 25,835; sh: 253; xml: 174; makefile: 86
file content (12 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/env python3
 
import sys
sys.path.insert(1, "/app/lib/manuskript")
print(sys.version)

# for debugging only
import PyQt5.QtWebEngineWidgets as webengine
print(webengine)

from manuskript import main
main.run()