Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2file: manage.py 

3description: allows using cli commands similar to Django. 

4Example all ``shopyo <cmd> [OPTIONS] [ARGS]...`` commands can also be run as 

5``python manage.py <cmd> [OPTIONS] [ARGS]...`` 

6""" 

7from shopyo.api.cli import cli 

8 

9if __name__ == "__main__": 

10 cli()