Metadata-Version: 1.1 Name: django-shortcuts Version: 1.6 Summary: You spend way too much time typing 'python manage.py' Home-page: http://github.com/jgorset/django-shortcuts Author: Johannes Gorset Author-email: jgorset@gmail.com License: UNKNOWN Description: Django shortcuts ================ You spend too much time typing ``python manage.py``. Usage ----- Django shortcuts installs a ``django`` binary that proxies Django's ``manage.py`` and ``django-admin.py`` scripts. :: $ django $ cd any/project/subdirectory $ django Requirements ------------ Some commands require additional packages + South + Haystack + Django Command Extensions Shortcuts --------- :: # Django 'c' : 'collectstatic', 'r' : 'runserver', 'sd' : 'syncdb', 'sp' : 'startproject', 'sa' : 'startapp', 't' : 'test', # Shell 'd' : 'dbshell', 's' : 'shell', # Auth 'csu': 'createsuperuser', 'cpw': 'changepassword', # South 'm' : 'migrate', 'mm' : 'makemigrations', 'sm' : 'schemamigration', 'dm' : 'datamigration', # Haystack 'ix' : 'update_index', 'rix': 'rebuild_index', # Django Extensions 'sk' : 'generate_secret_key', 'rdb': 'reset_db', 'rp' : 'runserver_plus', 'shp': 'shell_plus', 'url': 'show_urls', 'gm' : 'graph_models', 'rs' : 'runscript' Installation ------------ :: $ pip install django-shortcuts Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: Natural Language :: English Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7