mirror of
https://github.com/kennethreitz-archive/feedharvest.git
synced 2026-06-05 07:26:13 +00:00
18 lines
263 B
Python
Executable File
18 lines
263 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from feedharvest import app
|
|
from flaskext.script import Manager, Command
|
|
|
|
|
|
manager = Manager(app)
|
|
|
|
|
|
@manager.command
|
|
def hello():
|
|
"""Hello World!"""
|
|
print r'\o/'
|
|
|
|
|
|
if __name__ == "__main__":
|
|
manager.run() |