GitHub - aoloe/scribus-script-repository: Repository with python scripts from the Scribus community (original) (raw)
Scribus Scripts Repository
If you want to extend the scripts in the repository you're welcome to clone it, fork it, send patches or make pull requests.
Downlad of Scripts
- Open the script in Github
- Click on the Download raw file icon in the small toolbar at the top right of the script.
Script basic skeleton
"""Description of the script
© mit, ale rimoldi, 2023 """
try: import scribus # pylint: disable=import-error except ImportError: pass
def main(): try: scribus except NameError: print('This script must be run from inside Scribus.') return
if not scribus.haveDoc():
scribus.messageBox('Export Error', 'You need an open document.', icon=scribus.ICON_CRITICAL)
return
if name == 'main': main()