Re: Guessable entry points

2015-05-01 Thread Marc Tamlyn
Yes to python -m django No to django as another alias for django-admin. After all, someone who is just "guessing" will probably type dj and get django-admin[.py] anyway. On 1 May 2015 at 15:03, Aymeric Augustin wrote: > On 1 mai 2015, at 15:51, Enrique Paredes wrote: > > > So along this line of

Re: Guessable entry points

2015-05-01 Thread Aymeric Augustin
On 1 mai 2015, at 15:51, Enrique Paredes wrote: > So along this line of thought, `django-admin` is a good command name? Well, it’s a reasonably unambiguous way to refer to the django-admin command, which is good for the docs. “django” is more ambiguous: it can refer to the framework itself (

Re: Guessable entry points

2015-05-01 Thread Florian Apolloner
On Friday, May 1, 2015 at 3:51:50 PM UTC+2, Enrique Paredes wrote: > > So along this line of thought, `django-admin` is a good command name? > Does not really matter imo, that is what we have now and we should not change this without a really good reason. Cheers, Florian -- You received t

Re: Guessable entry points

2015-05-01 Thread Enrique Paredes
So along this line of thought,  `django-admin` is a good command name?  To me the admin, in the django world is a clear distint concept to what this command does. Besides to be used to it, seems more natural to call it `django`.  Cheers, E. On Fri, May 1, 2015 at 2:33 PM, Michael Ma

Re: Guessable entry points

2015-05-01 Thread Michael Manfre
I like the alias. On Fri, May 1, 2015 at 5:58 AM, Aymeric Augustin < aymeric.augus...@polytechnique.org> wrote: > `python -m django` as a alias for `django-admin` sounds good. > > -- > Aymeric. > > > > On 30 avr. 2015, at 19:15, Ryan Hiebert wrote: > > https://github.com/django/django/pull/4588

Re: Guessable entry points

2015-05-01 Thread Aymeric Augustin
`python -m django` as a alias for `django-admin` sounds good. -- Aymeric. > On 30 avr. 2015, at 19:15, Ryan Hiebert wrote: > > https://github.com/django/django/pull/4588 > > > I this PR I suggest to add a `django` entry point that is identical t

Guessable entry points

2015-04-30 Thread Ryan Hiebert
https://github.com/django/django/pull/4588 I this PR I suggest to add a `django` entry point that is identical to `django-admin`, and a `__main__.py` that also is a mirror of `django-admin`. There’s also related discussion at https://github.com/djang