Re: Google Summer of Code 2019

2019-01-31 Thread gaurav jain
One Idea i have a one command django project maker to instead having 1+n 
commands(n number of apps) and linking them in setting we can have command 
take the number of apps and app_names in ine do and then later we can add 
functionality for heroku ,docker etc

On Wednesday, January 16, 2019 at 8:03:55 PM UTC+5:30, Tim Graham wrote:
>
> Org applications for Google's Summer of Code are now open (deadline 
> February 6). Do you think the Django Software Foundation should participate?
>
> We haven't had any high quality student applications that we could accept 
> for the past two years.
>
> Perhaps it's partly a function of a poor ideas page (
> https://code.djangoproject.com/wiki/SummerOfCode2018). Perhaps we don't 
> do a great job of publicizing our involvement and attracting high quality 
> students. Perhaps it's because the student payment isn't all that much 
> (+/-$6000 USD, depending on student's country)* for the amount of work 
> involved (also, students have to put in a lot of work up front in their 
> application, with no guarantee of being accepted into the program).
>
> If you have any ideas about mentoring or suggesting a project, or if 
> you're serious about being a student (you should start contributing to 
> Django now if you don't already), please share.
>
> * https://developers.google.com/open-source/gsoc/help/student-stipends
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/636bd240-4422-4864-aa96-76d8836fdeab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


GSoC Idea

2019-01-31 Thread gaurav jain
from django.db import models
from django.contrib.auth.models import User

class CommenInfo(models.Model):
archived = models.BooleanField(default=False)
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)

def delete(self):
self.archived = True
super().save()

class Meta:
abstract = True
class Team(CommenInfo):
pass


-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/73471eba-70a9-416d-8877-1d3c94555fe4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


GSoC-19 Project Ideas

2019-01-31 Thread gaurav jain
Hi Everyone,
I had some ideas for the upcoming GSoC.
1. To make a code coverter old clean flask monolithic code to be converted 
to simple Django Code. All we would need is to change the queries and shift 
rest of the code. 
2. I have personally been using a code generator for my 
APIs(https://github.com/GauravJain98/drf-generator). So similar to this i 
wanted something like create react app that would take the project name the 
number of apps and name of apps and make the whole this for us.

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/d1eb040a-5656-4889-b589-c504a9c9c13c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Plot cordinate on google map as like as snap road

2019-01-31 Thread Manish Kumar Yadav
Hi I want to plot cordinates on google map using gmplot here its draw 
straight line, Is there anyway to plot a road route with help of cordinates

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/9a41939b-2a03-4914-82a7-4e30de5824e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Plot cordinate on google map as like as snap road

2019-01-31 Thread Tim Graham
This mailing list is for the development of Django itself, not for support 
using Django. Please use the django-users mailing list for that, or IRC 
#django on freenode, or a site like Stack Overflow. However, given your 
question doesn't seem Django related, you probably don't want to ask in a 
Django support channel.

On Thursday, January 31, 2019 at 6:24:36 AM UTC-5, Manish Kumar Yadav wrote:
>
> Hi I want to plot cordinates on google map using gmplot here its draw 
> straight line, Is there anyway to plot a road route with help of cordinates
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/1ebe94e8-fd10-4eca-98a1-91b6afa39397%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: GSoC-19 Project Ideas

2019-01-31 Thread Kiran Capoor
Hi Gaurav,

In regards to your query, there is already a solution for this called -
cookiecutter-django by pydanny. Although it’s a starter template and not a
direct integration with core django. For adding multiple apps you change
cookiecutter’s code a bit and you will get the results.

Regards,
Kiran Capoor


On Thu, 31 Jan 2019 at 16:54, gaurav jain  wrote:

> Hi Everyone,
> I had some ideas for the upcoming GSoC.
> 1. To make a code coverter old clean flask monolithic code to be converted
> to simple Django Code. All we would need is to change the queries and shift
> rest of the code.
> 2. I have personally been using a code generator for my APIs(
> https://github.com/GauravJain98/drf-generator). So similar to this i
> wanted something like create react app that would take the project name the
> number of apps and name of apps and make the whole this for us.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to django-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/d1eb040a-5656-4889-b589-c504a9c9c13c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
-- 
Sent from iPhone

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAANvM2k86eot9Z25R%3Dbuu-BKy7zOhRi0M9jrjqDeoZrWdLjebQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Potential suspension of Channels development

2019-01-31 Thread Asif Saif Uddin
Hi Andrew!! I would love to help as a co-maintainer of the projects related 
to django-channels. my github: auvipy

On Thursday, January 31, 2019 at 4:18:57 AM UTC+6, Andrew Godwin wrote:
>
> Just to update on this - nobody has individually come forward to help 
> full-time, though I have seen Carlton help out on a few issues (thanks for 
> that).
>
> I've added the PySlackers group into the support docs, as well - thanks 
> for that offer.
>
> I'm still planning to remove myself from watching all the repos come Feb 
> 1st, and barring positive confirmation someone else is going to actively 
> take over I'll put up notices on all the projects that they are actively 
> unmaintained apart from security issues.
>
> Andrew
>
>
> On Thu, Jan 17, 2019 at 10:06 AM Andrew Godwin  > wrote:
>
>> Hi all,
>>
>> I'm writing to you all to update you on the current situation of Channels 
>> and related libraries (channels-redis and Daphne) and potentially ask for 
>> help.
>>
>> I've been the sole maintainer of these projects for quite a while and it 
>> has become unsustainable - all of my energy is taken up fielding issues and 
>> support requests and I haven't been able to even get myself to start 
>> looking at Django async stuff because of it.
>>
>> Given that, if nobody else can step forward to take over, I'll have to 
>> put those three projects (Channels, channels-redis, and Daphne) into an 
>> explicit maintenance mode where they only accept security requests via the 
>> normal security@ route, and start the process of retiring them as active 
>> Django projects, as I don't want to give the impression they're still 
>> maintained if they're not.
>>
>> (note: the asgiref project is still fine and should probably move out of 
>> Django to its own effort at some point giving the growing set of ASGI tools)
>>
>> If people are willing to take over maintenance, I'm happy to help explain 
>> some things but I don't have the bandwidth to bring someone completely up 
>> from scratch, so I can't help mentor someone who is totally new to 
>> maintaining open-source Python (sorry!).
>>
>> Once I recover a bit from the burnout I'll be able to come back and help 
>> with the really complex bugs; the main thing I need out of is the seemingly 
>> endless support requests and weird WebSocket client bugs.
>>
>> My personal deadline for this is two weeks, on February 1st. If you want 
>> to help out, please feel free to reply either here or get in touch with me 
>> personally to chat about what's involved.
>>
>> Andrew
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/92585b46-0e1d-4d34-b3a9-42815b590012%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Potential suspension of Channels development

2019-01-31 Thread Andrew Godwin
OK, another update on the update (sorry, I am using the last of my energy
to arrange this handover, so I missed some things yesterday)

I'm going to hand over to a team of Carlton, Jamesie and Asif for now -
I'll get the docs on the repo sorted out tonight and make write up a few
more docs on how to run the release side of things.

I'll give Carlton admin access to the repo if he doesn't have it already,
and the two of you I'll grant commit access. Hopefully that should be
enough to give this a solid go. I'll leave notifications for @andrewgodwin
on, on github, for now, so if you really need me try that, but I may turn
that off if it turns out to be too much.

Thanks all who came forward. I'm hopeful that things can be kept going!

Andrew

On Wed, Jan 30, 2019 at 2:18 PM Andrew Godwin  wrote:

> Just to update on this - nobody has individually come forward to help
> full-time, though I have seen Carlton help out on a few issues (thanks for
> that).
>
> I've added the PySlackers group into the support docs, as well - thanks
> for that offer.
>
> I'm still planning to remove myself from watching all the repos come Feb
> 1st, and barring positive confirmation someone else is going to actively
> take over I'll put up notices on all the projects that they are actively
> unmaintained apart from security issues.
>
> Andrew
>
>
> On Thu, Jan 17, 2019 at 10:06 AM Andrew Godwin 
> wrote:
>
>> Hi all,
>>
>> I'm writing to you all to update you on the current situation of Channels
>> and related libraries (channels-redis and Daphne) and potentially ask for
>> help.
>>
>> I've been the sole maintainer of these projects for quite a while and it
>> has become unsustainable - all of my energy is taken up fielding issues and
>> support requests and I haven't been able to even get myself to start
>> looking at Django async stuff because of it.
>>
>> Given that, if nobody else can step forward to take over, I'll have to
>> put those three projects (Channels, channels-redis, and Daphne) into an
>> explicit maintenance mode where they only accept security requests via the
>> normal security@ route, and start the process of retiring them as active
>> Django projects, as I don't want to give the impression they're still
>> maintained if they're not.
>>
>> (note: the asgiref project is still fine and should probably move out of
>> Django to its own effort at some point giving the growing set of ASGI tools)
>>
>> If people are willing to take over maintenance, I'm happy to help explain
>> some things but I don't have the bandwidth to bring someone completely up
>> from scratch, so I can't help mentor someone who is totally new to
>> maintaining open-source Python (sorry!).
>>
>> Once I recover a bit from the burnout I'll be able to come back and help
>> with the really complex bugs; the main thing I need out of is the seemingly
>> endless support requests and weird WebSocket client bugs.
>>
>> My personal deadline for this is two weeks, on February 1st. If you want
>> to help out, please feel free to reply either here or get in touch with me
>> personally to chat about what's involved.
>>
>> Andrew
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To post to this group, send email to django-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/django-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAFwN1uq3tsuWiW6AkBegMV8O2XiYxCvwimBFOg8KLj6MVDZweQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.