Metadata-Version: 2.4
Name: yo-dj
Version: 0.1.0
Summary: A lightning-fast CLI shortcut tool for Django developers.
Author-email: Your Name <your.email@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# 🎧 YO-Dj

A lightning-fast, CLI shortcut tool for Django developers.

Tired of typing `python manage.py` a hundred times a day? Hate setting up a Makefile for every new Django project? **YO-Dj** fixes that. 

Just install it once globally, and talk to Django like your bro.

## Installation

```bash
pip install yo-dj

```

##  Instead of writing out full Django commands, just say yo:

# What you type , What actually runs

```bash
yo serv,python manage.py runserver
yo p serv,python manage.py runserver
yo mkm,python manage.py makemigrations
yo p mkm,python manage.py makemigrations
yo mg,python manage.py migrate
yo create su,python manage.py createsuperuser
yo sh,python manage.py shell
```

## Need to pass arguments? No problem. It passes them straight through.

```bash
yo mkm users
# Runs: python manage.py makemigrations users
```

## Need a command that isn't mapped? It falls back to standard manage.py behavior.

```bash
yo collectstatic
# Runs: python manage.py collectstatic
```

* Contributing
    ## Want to add more slang or features? Pull requests are highly encouraged!

        Fork the repo

        Create your feature branch (git checkout -b feature/cool-new-slang)

        Commit your changes (git commit -m 'Add new slang')

        Push to the branch (git push origin feature/cool-new-slang)

        Open a Pull Request
