Example #1
0
def main():
    if int(os.environ.get('DEWI_CORE_DEV_WITH_PLUGINS', '0')) == 1:
        app = Application('dewi-review')
        app.load_plugin('dewi_core.commands.review.ReviewPlugin')
    else:
        app = Application('dewi-review', ReviewCommand)
    app.run()
Example #2
0
def main():
    if int(os.environ.get('DEWI_CORE_DEV_WITH_PLUGINS', '0')) == 1:
        app = Application('dewi-edit')
        app.load_plugin('dewi_core.commands.edit.edit.EditPlugin')
    else:
        app = Application('dewi-edit', EditCommand)
    app.run(sys.argv[1:])
Example #3
0
def main():
    app = Application('steven')
    app.load_plugin('steven.StevenPlugin')
    app.run(sys.argv[1:])

    if __name__ == '__main__':
        main()
Example #4
0
def main():
    app = Application('steven-ssh', XSshCommand)
    app.run(sys.argv[1:])
Example #5
0
def main():
    app = Application('dewi-primes', PrimesCommand)
    app.run(sys.argv[1:])
Example #6
0
def main():
    app = Application('dewi-fetch-covidhu', FetchCovidHuCommand)
    app.run(sys.argv[1:])
Example #7
0
def main():
    app = Application('dewi-hash', HashCommand)
    app.run(sys.argv[1:])
Example #8
0
def main():
    app = Application('dewi-http', HttpCommand)
    app.run(sys.argv[1:])
Example #9
0
def main():
    app = Application('dewi-edit-or-review')
    app.load_plugin('dewi_core.commands.edit.edit.EditPlugin')
    app.load_plugin('dewi_core.commands.review.ReviewPlugin')
    app.load_plugin('dewi_core.commands.editreview.EditReviewPlugin')
    app.run()
Example #10
0
def main():
    app = Application('dewi-dedup-images', ImageDeduplicatorCommand)
    app.run(sys.argv[1:])
Example #11
0
def main():
    app = Application('dewi-json-formatter', JsonFormatterCommand)
    app.run(sys.argv[1:])
Example #12
0
def main():
    app = Application('dewi-worktime', WorktimeCommand)
    app.run(sys.argv[1:])
Example #13
0
def main():
    app = Application('dewi-lithurgical', LithurgicalCommand)
    app.run(sys.argv[1:])
Example #14
0
def main():
    app = Application('dewi-packt', PacktCommand)
    app.run(sys.argv[1:])
Example #15
0
def main():
    app = Application('dewi-dice', DiceCommand)
    app.run(sys.argv[1:])
Example #16
0
def main():
    app = Application('dewi-find', FindCommand)
    app.run(sys.argv[1:])
Example #17
0
def main():
    app = Application('dewi-stocks', StocksCommand)
    app.run(sys.argv[1:])
Example #18
0
def main():
    app = Application('dewi-sysinfo', SysInfoCommand)
    app.run(sys.argv[1:])
Example #19
0
def main():
    app = Application('dewi-filesync', FileSyncCommand)
    app.run(sys.argv[1:])
Example #20
0
def main():
    app = Application('dewi-collect-images', ImageCollectorCommand)
    app.run(sys.argv[1:])
Example #21
0
def main():
    app = Application('dewi-safe-delete-images', SafeEraserCommand)
    app.run(sys.argv[1:])
Example #22
0
def main():
    app = Application('dewi-sort-photos', PhotoSorterCommand)
    app.run(sys.argv[1:])
Example #23
0
def main():
    app = Application('steven')
    app.load_plugin('steven.StevenPlugin')
    app.run(sys.argv[1:])
Example #24
0
def main():
    app = Application('dewi-split-zorp-log', SplitZorpLogCommand)
    app.run(sys.argv[1:])
Example #25
0
def main():
    app = Application('dewi-ssh-ubuntu-windows', SshToUbuntuOnWindows)
    app.run(sys.argv[1:])