Re: any good books for django2

2019-01-29 Thread Danylo K.
https://www.packtpub.com/application-development/django-2-example Great tutorial style-book. On Tue, Jan 29, 2019 at 11:02 AM Lutalo Bbosa joseph wrote: > guys can anyone assist me with a link to any django2 book because it seems > its > most are not free > > -- > You received this message

Re: Best Learning Resources

2019-01-21 Thread Danylo K.
* I love this book:* *https://www.packtpub.com/application-development/django-2-example* On Wednesday, January 16, 2019 at 8:20:15 AM UTC-5, cale...@gmail.com wrote: > > Hi All, > > I'm just starting out with Django and python and wondering if anyone can > direct me to some goto learning

Re: Is Microsoft Visual Studion 2017 Environment is good for Django development ?

2019-01-21 Thread Danylo K.
Visual Studio 2017 is excellent for Django development. Just don't use project templates to create new Django projects. Create new project in command line tool (cmd) and then create new Visual Studio project using "Existing Python Project" option. Cheers. Danyo On Mon, Jan 21, 2019 at 9:56 AM

Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-17 Thread Danylo K.
try .\scripts\activate.bat On Thu, Jan 17, 2019 at 2:18 PM Django Geek Aditya wrote: > Shell Output after entering command is > PS E:\todo> . \Scripts\activate > . : The term '\Scripts\activate' is not recognized as the name of a > cmdlet, function, script file, or operable > program. Check

Re: working fine with sqllite but not showing result in mysql

2019-01-14 Thread Danylo K.
if you change the code to this, it will work: post = get_object_or_404(Post, slug=post, status='published', publish__year=year) # publish__month=month, # publish__day=day) On

Re: working fine with sqllite but not showing result in mysql

2019-01-14 Thread Danylo K.
I have the same issue. In MySQL, search works fine by the *year part*, but not by the *month* and *day* *parts*. Cheers! On Mon, Jan 14, 2019 at 1:54 PM Alex Kimeu wrote: > Have you configured MySQL correctly? > > On Mon, Jan 14, 2019 at 9:07 PM tribhuvan kishor < >