Skip to content

aoloe/scribus-script-repository

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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()

About

Repository with python scripts from the Scribus community

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 6