sending notification to one user using Channels 2

2019-03-22 Thread Mukul Mantosh


I want to send notification to specific authenticated user using Channels 2.


Stackoverflow: 
https://stackoverflow.com/questions/55310717/sending-notification-to-one-user-using-channels-2



-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/eb7c7c52-3f2e-421e-9de1-26b67a998c18%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Dispatching requests from one uwsgi to another uwsgi instance running Django Channels

2019-03-22 Thread Ahmed Ishtiaque
Aldian has pointed it out already, but I also use Nginx + gunicorn + daphne
for my production server. Nginx decides when to upgrade a request to wss://
and passes it on to my daphne instance to handle automatically. Would be
happy to share my config for that if you want.

Best,
Ahmed

On Fri, Mar 22, 2019 at 10:15 PM Aldian Fazrihady  wrote:

> Does it really use Django channels?  I am using Django channels and
> following its suggested package:  ASGI provided by Daphne
>
> Regards,
>
> Aldian Fazrihady
>
> On Sat, 23 Mar 2019, 07:58 Adam Zedan,  wrote:
>
>> I am currently using Django channels for websocket communication. I read
>> this
>> 
>>  article
>> and it states that I should split the project into two uwsgi instances. It
>> states that
>>
>> "The web server undertakes the task of dispatching normal requests to one
>>> uWSGI instance and WebSocket requests to another one"
>>
>>
>> Now I have two uwsgi instances running. This is how I am running both.
>>
>> This uwsgi handles the normal django site requests
>> uwsgi --virtualenv /home/ec2-user/MyProjVenv --socket /home/ec2-user/
>> MyProjVenv/MyProjWeb/site1.socket --chmod-socket=777 --buffer-size=32768
>> --workers=5 --master --module main.wsgi
>>
>>
>> This uwsgi handles the websocket requests
>> uwsgi --virtualenv /home/ec2-user/MyProjVenv --http-socket /home/ec2-user
>> /MyProjVenv/MyProjWeb/web.socket --gevent 1000 --http-websockets --
>> workers=2 --master --chmod-socket=777  --module main.wsgi_websocket
>>
>> Now the websocket uwsgi launches  main.wsgi_websocket
>>
>> The code for main.wsgi_websocket one is this
>> import os
>> import gevent.socket
>> import redis.connection
>> redis.connection.socket = gevent.socket
>> os.environ.update(DJANGO_SETTINGS_MODULE='main.settings')
>> from ws4redis.uwsgi_runserver import uWSGIWebsocketServer
>> application = uWSGIWebsocketServer()
>>
>> Now after spinning up the two uwsgi instances I am able to access the
>> website.The websocket uwsgi instance is also receiving data however I am
>> not sure if its passing that data to the website uwsgi instance. I am using
>> Django Channels here and this is the configuration I have specified in my
>> settings for Django Channels
>>
>> CHANNEL_LAYERS = {
>> "default": {
>> "BACKEND": "asgi_redis.RedisChannelLayer",
>> "CONFIG": {
>> "hosts": [(redis_host, 6379)],
>> },
>>"ROUTING": "main.routing.channel_routing",
>> },
>> }
>>
>> The channel routing is this
>> channel_routing = [
>> include("chat.routing.websocket_routing", path=r"^/chat/stream"),
>> include("chat.routing.custom_routing"),
>> ]
>>
>> and this is the websocket_routing which i have mentioned above
>>
>>
>>
>> websocket_routing = [
>> route("websocket.connect", ws_connect),
>>
>>
>> # Called when WebSockets get sent a data frame
>> route("websocket.receive", ws_receive),
>>
>>
>> # Called when WebSockets disconnect
>> route("websocket.disconnect", ws_disconnect),
>> ]
>>
>> Now the problem is that my ws_receive is never called. If I test on my
>> local dev machine using  "*ipaddress:8000/chat/stream*" this works
>> perfectly fine however I have no clue why my receive is not being called
>> when I use *ipadress:80/ws/ *. I am certain that my other uwsgi instance
>> is getting that data but I dont know how to find out if its passing it to
>> the other uwsgi instance of the djnago side and if it is then why is my
>> receive not being called ?. Any suggestions on this would definitely help
>>
>>
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/4c4e57fa-c603-4be0-ba1a-cf1e9919fc09%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAN7EoAZ3eoAW8XBKjBP5W11%2BxpOmQFPZt9t86fSWNR8twQ7QRA%40mail.gmail.com
> 

Re: Dispatching requests from one uwsgi to another uwsgi instance running Django Channels

2019-03-22 Thread Aldian Fazrihady
Does it really use Django channels?  I am using Django channels and
following its suggested package:  ASGI provided by Daphne

Regards,

Aldian Fazrihady

On Sat, 23 Mar 2019, 07:58 Adam Zedan,  wrote:

> I am currently using Django channels for websocket communication. I read
> this
> 
>  article
> and it states that I should split the project into two uwsgi instances. It
> states that
>
> "The web server undertakes the task of dispatching normal requests to one
>> uWSGI instance and WebSocket requests to another one"
>
>
> Now I have two uwsgi instances running. This is how I am running both.
>
> This uwsgi handles the normal django site requests
> uwsgi --virtualenv /home/ec2-user/MyProjVenv --socket /home/ec2-user/
> MyProjVenv/MyProjWeb/site1.socket --chmod-socket=777 --buffer-size=32768
> --workers=5 --master --module main.wsgi
>
>
> This uwsgi handles the websocket requests
> uwsgi --virtualenv /home/ec2-user/MyProjVenv --http-socket /home/ec2-user/
> MyProjVenv/MyProjWeb/web.socket --gevent 1000 --http-websockets --workers=
> 2 --master --chmod-socket=777  --module main.wsgi_websocket
>
> Now the websocket uwsgi launches  main.wsgi_websocket
>
> The code for main.wsgi_websocket one is this
> import os
> import gevent.socket
> import redis.connection
> redis.connection.socket = gevent.socket
> os.environ.update(DJANGO_SETTINGS_MODULE='main.settings')
> from ws4redis.uwsgi_runserver import uWSGIWebsocketServer
> application = uWSGIWebsocketServer()
>
> Now after spinning up the two uwsgi instances I am able to access the
> website.The websocket uwsgi instance is also receiving data however I am
> not sure if its passing that data to the website uwsgi instance. I am using
> Django Channels here and this is the configuration I have specified in my
> settings for Django Channels
>
> CHANNEL_LAYERS = {
> "default": {
> "BACKEND": "asgi_redis.RedisChannelLayer",
> "CONFIG": {
> "hosts": [(redis_host, 6379)],
> },
>"ROUTING": "main.routing.channel_routing",
> },
> }
>
> The channel routing is this
> channel_routing = [
> include("chat.routing.websocket_routing", path=r"^/chat/stream"),
> include("chat.routing.custom_routing"),
> ]
>
> and this is the websocket_routing which i have mentioned above
>
>
>
> websocket_routing = [
> route("websocket.connect", ws_connect),
>
>
> # Called when WebSockets get sent a data frame
> route("websocket.receive", ws_receive),
>
>
> # Called when WebSockets disconnect
> route("websocket.disconnect", ws_disconnect),
> ]
>
> Now the problem is that my ws_receive is never called. If I test on my
> local dev machine using  "*ipaddress:8000/chat/stream*" this works
> perfectly fine however I have no clue why my receive is not being called
> when I use *ipadress:80/ws/ *. I am certain that my other uwsgi instance
> is getting that data but I dont know how to find out if its passing it to
> the other uwsgi instance of the djnago side and if it is then why is my
> receive not being called ?. Any suggestions on this would definitely help
>
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4c4e57fa-c603-4be0-ba1a-cf1e9919fc09%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Dispatching requests from one uwsgi to another uwsgi instance running Django Channels

2019-03-22 Thread Adam Zedan
I am currently using Django channels for websocket communication. I read 
this 

 article 
and it states that I should split the project into two uwsgi instances. It 
states that

"The web server undertakes the task of dispatching normal requests to one 
> uWSGI instance and WebSocket requests to another one"


Now I have two uwsgi instances running. This is how I am running both.

This uwsgi handles the normal django site requests
uwsgi --virtualenv /home/ec2-user/MyProjVenv --socket /home/ec2-user/
MyProjVenv/MyProjWeb/site1.socket --chmod-socket=777 --buffer-size=32768 --
workers=5 --master --module main.wsgi


This uwsgi handles the websocket requests
uwsgi --virtualenv /home/ec2-user/MyProjVenv --http-socket /home/ec2-user/
MyProjVenv/MyProjWeb/web.socket --gevent 1000 --http-websockets --workers=2 
--master --chmod-socket=777  --module main.wsgi_websocket

Now the websocket uwsgi launches  main.wsgi_websocket

The code for main.wsgi_websocket one is this
import os
import gevent.socket
import redis.connection
redis.connection.socket = gevent.socket
os.environ.update(DJANGO_SETTINGS_MODULE='main.settings')
from ws4redis.uwsgi_runserver import uWSGIWebsocketServer
application = uWSGIWebsocketServer()

Now after spinning up the two uwsgi instances I am able to access the 
website.The websocket uwsgi instance is also receiving data however I am 
not sure if its passing that data to the website uwsgi instance. I am using 
Django Channels here and this is the configuration I have specified in my 
settings for Django Channels

CHANNEL_LAYERS = {
"default": {
"BACKEND": "asgi_redis.RedisChannelLayer",
"CONFIG": {
"hosts": [(redis_host, 6379)],
},
   "ROUTING": "main.routing.channel_routing", 
},
}

The channel routing is this
channel_routing = [
include("chat.routing.websocket_routing", path=r"^/chat/stream"),
include("chat.routing.custom_routing"),
]

and this is the websocket_routing which i have mentioned above



websocket_routing = [
route("websocket.connect", ws_connect),


# Called when WebSockets get sent a data frame
route("websocket.receive", ws_receive),


# Called when WebSockets disconnect
route("websocket.disconnect", ws_disconnect),
]

Now the problem is that my ws_receive is never called. If I test on my 
local dev machine using  "*ipaddress:8000/chat/stream*" this works 
perfectly fine however I have no clue why my receive is not being called 
when I use *ipadress:80/ws/ *. I am certain that my other uwsgi instance is 
getting that data but I dont know how to find out if its passing it to the 
other uwsgi instance of the djnago side and if it is then why is my receive 
not being called ?. Any suggestions on this would definitely help




-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4c4e57fa-c603-4be0-ba1a-cf1e9919fc09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How can I create schemas while writing creating table models.

2019-03-22 Thread Sushen Jamwal
Hi all,

I am finding it difficult to create tables in different schemas under one 
database. 

For ex. mydatabase.myschemaone.school (DB.SCHEMA.TABLE)

and mydatabase.myschematwo.school

Thanks, 
Sushen

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8641a80d-daba-4781-b4bd-29c08518d21f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 404 error when posting a multipart/form-data form

2019-03-22 Thread Manlio Perillo
On Friday, March 22, 2019 at 8:35:13 PM UTC+1, Raffaele Salmaso wrote:
>
> On Thu, Mar 21, 2019 at 2:42 PM Manlio Perillo  > wrote:
>
>> The view code is here:
>> https://gist.github.com/perillo/2f828209cea84ff8c753f6f2524119f1
>>
> I d
>


Because I have remove every extra components.  I removed all the middleware 
and all the other apps.
However, as I said, this bug occurred original in the django admin app.

I'm using the latest version of Django, and to make sure that the original 
source files have not been modified, I uninstalled and installed it again.
The bug is still here.

It may be a bug of Passenger (5.3.7), however I checked with a custom 
wsgi.py file and it sets the PATH_INFO correctly.

This is my view:
https://gist.github.com/perillo/fe4149fa610a52d090bb2062a9c83731

As i said at the start of the thread, if I comment the `{{ form }}` and 
uncomment the ``, Django works correctly.
What I find strange is that it seems the problem is caused by my view 
(since only my view know the name of the form field), but my view *is not* 
called, and instead it seems (from the trace file) that the url resolver 
did not found a match for the request path.


Thanks
Manlio Perillo 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6fef4fca-2fab-4dd9-8180-f7009013d1b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is_valid() method and cleaned_data attribute

2019-03-22 Thread Mohammad Etemaddar
Every field in Form has validators which check the value against their 
conditions.
as Django Doc sais 

:
The primary task of a Form 
 
object is to validate data. With a bound Form 
 
instance, call the is_valid() 

 
method to run validation and return a boolean designating whether the data 
was valid

Take a look at is_valid at Django source code 

 
(At BaseForm's source code).
as you see there it checks if the form is bound and *not has errors.*

If you see *errors*, it's a method with attribute decorator. that triggers 
the full_clean( ) method.
full_clean does _clean_fields which populates the *cleaned_data *with 
validation checked data.

So, If you call the is_valid() and it returns True, You know that all form 
validators are applied to the data and it had no errors. also the 
cleaned_data is ready to use.

On Friday, March 22, 2019 at 10:43:03 PM UTC+4:30, omar ahmed wrote:
>
> hello guys
> i created contact form
> in my view :
> if form.is_valid():
> message = form.cleaned_data['message']
> what is .is_valid() method and what is cleaned_data attribute ???
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d6ec41ed-b01d-42b8-bc57-9026988248e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 404 error when posting a multipart/form-data form

2019-03-22 Thread Raffaele Salmaso
On Thu, Mar 21, 2019 at 2:42 PM Manlio Perillo 
wrote:

> The view code is here:
> https://gist.github.com/perillo/2f828209cea84ff8c753f6f2524119f1
>
I don't see the {% csrf_token %} in the template

-- 
| Raffaele Salmaso
| https://salmaso.org
| https://bitbucket.org/rsalmaso
| https://github.com/rsalmaso

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


Re: is_valid() method and cleaned_data attribute

2019-03-22 Thread Marcio Bernardes
is_valid() validates the form, for instance, if you have a field for 
integers and the user passes a str the 'is_valid()' will return false. The 
cleaned_data is the method you can use to access the data from the input if 
the form is valid, if the form is not valid this method will not contain 
the invalid data, ref: 
https://docs.djangoproject.com/en/dev/ref/forms/api/#django.forms.Form.cleaned_data
. 

Em sexta-feira, 22 de março de 2019 15:13:03 UTC-3, omar ahmed escreveu:
>
> hello guys
> i created contact form
> in my view :
> if form.is_valid():
> message = form.cleaned_data['message']
> what is .is_valid() method and what is cleaned_data attribute ???
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/59443020-3c05-4c61-8f15-14bbc2b5fbfb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 404 error when posting a multipart/form-data form

2019-03-22 Thread Marcio Bernardes
Hey Manlio make sure to change the action option in the form html, use 
something like {% url ‘url_name’ %} there. Do not use this point path. 

Cheers!

Sent from my iPhone

> On 22. Mar 2019, at 16:09, Mohammad Etemaddar  
> wrote:
> 
> I'm not sure about this, but I think maybe it would be about your Django bug. 
> Have you updated your Django?
> 
>> On Friday, March 22, 2019 at 7:37:14 PM UTC+4:30, Manlio Perillo wrote:
>>> On Friday, March 22, 2019 at 3:23:32 PM UTC+1, Manlio Perillo wrote:
 On Friday, March 22, 2019 at 1:28:55 PM UTC+1, Hamady Medvall wrote:
 You have to add the path /bug in URLConfig
 
>>> 
>>> A GET request to /mp/bug/ does not return an error, only a POST request and 
>>> *only* when using a file upload.
>>> 
>>> From the trace I see that it's the URL resolver that raises the 404 
>>> exception.  But what I don't understand is why a GET request work.
>>> 
>>> This is the trace for a POST request: https://paste.ee/p/sjq5s
>>> 
>> 
>> Some more details.
>> 
>> I have the following main urlpatterns:
>> 
>> urlpatterns = [
>> urls.path('mp/', urls.include('lpg.mperillo.urls')),
>> ]
>> 
>> And in my application:
>> 
>> urlpatterns = [
>> urls.path('bug/', views.bug, name='bug'),
>> urls.path('debug/', views.debug, name='debug')
>> ]
>> 
>> When accessing https://fast-page.it/mp/bug/, Django tries to match the path 
>> `bug` with the pattern `mp` and it fail, raising a 404 exception.
>> This does not happen with a GET request or with a POST request without a 
>> file upload.  Also, I can't reproduce this error on my system, but only on 
>> the hosting server.
>> I have a different Django application on a different account of the same 
>> hosting company, and it works correctly.
>> 
>> I originally found the problem in the Django admin, when trying to create a 
>> model instance with a file field.
>> 
>> 
>> Thanks
>> Manlio Perillo 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/83a30de5-1f16-4694-88f8-d50e77844153%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1A13E75C-7DDF-4544-9940-A0823531B8F8%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: 404 error when posting a multipart/form-data form

2019-03-22 Thread Mohammad Etemaddar
I'm not sure about this, but I think maybe it would be about your Django 
bug. Have you updated your Django?

On Friday, March 22, 2019 at 7:37:14 PM UTC+4:30, Manlio Perillo wrote:
>
> On Friday, March 22, 2019 at 3:23:32 PM UTC+1, Manlio Perillo wrote:
>>
>> On Friday, March 22, 2019 at 1:28:55 PM UTC+1, Hamady Medvall wrote:
>>>
>>> You have to add the path /bug in URLConfig
>>>
>>>
>> A GET request to /mp/bug/ does not return an error, only a POST request 
>> and *only* when using a file upload.
>>
>> From the trace I see that it's the URL resolver that raises the 404 
>> exception.  But what I don't understand is why a GET request work.
>>
>> This is the trace for a POST request: https://paste.ee/p/sjq5s
>>
>>
> Some more details.
>
> I have the following main urlpatterns:
>
> urlpatterns = [
> urls.path('mp/', urls.include('lpg.mperillo.urls')),
> ]
>
> And in my application:
>
> urlpatterns = [
> urls.path('bug/', views.bug, name='bug'),
> urls.path('debug/', views.debug, name='debug')
> ]
>
> When accessing https://fast-page.it/mp/bug/, Django tries to match the 
> path `bug` with the pattern `mp` and it fail, raising a 404 exception.
> This does not happen with a GET request or with a POST request without a 
> file upload.  Also, I can't reproduce this error on my system, but only on 
> the hosting server.
> I have a different Django application on a different account of the same 
> hosting company, and it works correctly.
>
> I originally found the problem in the Django admin, when trying to create 
> a model instance with a file field.
>
>
> Thanks
> Manlio Perillo 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/83a30de5-1f16-4694-88f8-d50e77844153%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


is_valid() method and cleaned_data attribute

2019-03-22 Thread omar ahmed
hello guys
i created contact form
in my view :
if form.is_valid():
message = form.cleaned_data['message']
what is .is_valid() method and what is cleaned_data attribute ???

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0861a619-3b84-4520-ad2f-3d429af2bce4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: mysqlclient

2019-03-22 Thread hunar techie
cpanel terminal doesnt support whl

On Fri, Mar 22, 2019 at 6:56 PM ANIL UMARANE  wrote:

> Download MySQL client who
>   Pip install   whl
>
>
> On Fri, Mar 22, 2019, 9:23 PM hunar techie 
> wrote:
>
>> hi there
>> when i try to pip install mysqlclient through my cpanel i get this error
>>
>> [image: er.PNG]
>> thanks
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/5dc09b78-536f-43e7-88f3-1daf46b2755c%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Django users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/django-users/iDU-ueurTjA/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKfwX9wWPPAz4UBScebw%2Bv6WwW9a3NcQ31qzOgwCRKH8i4%3D0Ag%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: problem in running server

2019-03-22 Thread fazal rehman
Thanks it works 😊

On Fri, Mar 22, 2019, 8:43 PM Scheck David  activate your virtual env or pip install Django
>
> Le ven. 22 mars 2019 à 16:04, fazal rehman  a
> écrit :
>
>> (myvenv) C:\cdedjango\src\trydjango>python manage.py runserver
>> Traceback (most recent call last):
>>   File "manage.py", line 8, in 
>> from django.core.management import execute_from_command_line
>> ModuleNotFoundError: No module named 'django'
>>
>> The above exception was the direct cause of the following exception:
>>
>> Traceback (most recent call last):
>>   File "manage.py", line 14, in 
>> ) from exc
>> ImportError: Couldn't import Django. Are you sure it's installed and
>> available on your PYTHONPATH environment variable? Did you forget to
>> activate a virtual environment?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/442fe84e-783b-46bd-82d1-23231766bb25%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> --
>
> With kindest regards,
>
>
> *David SCHECK*
>
> PRESIDENT/DEVELOPER
>
> [image: Signature Logo Sphax Bleu-01.png]
>
> Phone: +32 4 87 86 70 12
> Visit our website ! https://www.sphax.org
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAOPG6seXUnePtwP9JzNEMVoKjJ14OSQcX3Nquwm4dZ-8t3Lrgw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: mysqlclient

2019-03-22 Thread ANIL UMARANE
Download MySQL client who
  Pip install   whl


On Fri, Mar 22, 2019, 9:23 PM hunar techie 
wrote:

> hi there
> when i try to pip install mysqlclient through my cpanel i get this error
>
> [image: er.PNG]
> thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/5dc09b78-536f-43e7-88f3-1daf46b2755c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


mysqlclient

2019-03-22 Thread hunar techie
hi there 
when i try to pip install mysqlclient through my cpanel i get this error

[image: er.PNG]
thanks 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/5dc09b78-536f-43e7-88f3-1daf46b2755c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: problem in running server

2019-03-22 Thread Scheck David
activate your virtual env or pip install Django

Le ven. 22 mars 2019 à 16:04, fazal rehman  a
écrit :

> (myvenv) C:\cdedjango\src\trydjango>python manage.py runserver
> Traceback (most recent call last):
>   File "manage.py", line 8, in 
> from django.core.management import execute_from_command_line
> ModuleNotFoundError: No module named 'django'
>
> The above exception was the direct cause of the following exception:
>
> Traceback (most recent call last):
>   File "manage.py", line 14, in 
> ) from exc
> ImportError: Couldn't import Django. Are you sure it's installed and
> available on your PYTHONPATH environment variable? Did you forget to
> activate a virtual environment?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/442fe84e-783b-46bd-82d1-23231766bb25%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 

With kindest regards,


*David SCHECK*

PRESIDENT/DEVELOPER

[image: Signature Logo Sphax Bleu-01.png]

Phone: +32 4 87 86 70 12
Visit our website ! https://www.sphax.org

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


Re: 404 error when posting a multipart/form-data form

2019-03-22 Thread Manlio Perillo
On Friday, March 22, 2019 at 3:23:32 PM UTC+1, Manlio Perillo wrote:
>
> On Friday, March 22, 2019 at 1:28:55 PM UTC+1, Hamady Medvall wrote:
>>
>> You have to add the path /bug in URLConfig
>>
>>
> A GET request to /mp/bug/ does not return an error, only a POST request 
> and *only* when using a file upload.
>
> From the trace I see that it's the URL resolver that raises the 404 
> exception.  But what I don't understand is why a GET request work.
>
> This is the trace for a POST request: https://paste.ee/p/sjq5s
>
>
Some more details.

I have the following main urlpatterns:

urlpatterns = [
urls.path('mp/', urls.include('lpg.mperillo.urls')),
]

And in my application:

urlpatterns = [
urls.path('bug/', views.bug, name='bug'),
urls.path('debug/', views.debug, name='debug')
]

When accessing https://fast-page.it/mp/bug/, Django tries to match the path 
`bug` with the pattern `mp` and it fail, raising a 404 exception.
This does not happen with a GET request or with a POST request without a 
file upload.  Also, I can't reproduce this error on my system, but only on 
the hosting server.
I have a different Django application on a different account of the same 
hosting company, and it works correctly.

I originally found the problem in the Django admin, when trying to create a 
model instance with a file field.


Thanks
Manlio Perillo 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a8efd09f-2050-40d3-94be-f66e3cc6d7dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


problem in running server

2019-03-22 Thread fazal rehman
(myvenv) C:\cdedjango\src\trydjango>python manage.py runserver
Traceback (most recent call last):
  File "manage.py", line 8, in 
from django.core.management import execute_from_command_line
ModuleNotFoundError: No module named 'django'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "manage.py", line 14, in 
) from exc
ImportError: Couldn't import Django. Are you sure it's installed and 
available on your PYTHONPATH environment variable? Did you forget to 
activate a virtual environment?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/442fe84e-783b-46bd-82d1-23231766bb25%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Which app for minio (s3) storage server?

2019-03-22 Thread sachinbg sachin
He how can I integrate otp attentication to my mobile app
On Mar 22, 2019 8:19 PM, "guettli"  wrote:

> Up to now all my projects worked with the basic file storage.
>
> Now I want use a s3 like storage server for the first time.
>
> The server implementation will be minio (not aws)
>
> I see three apps:
>
>   https://github.com/py-pa/django-minio-storage
>
>   https://github.com/etianen/django-s3-storage
>
>   https://github.com/jschneier/django-storages
>
> Do you have an advice which one could fit?
>
> Binary data with size of up to 100MBytes will get uploaded.
>
> Regards,
>   Thomas Güttler
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/ca98eb3d-6c77-4372-8dfe-13dc16d678ec%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Which app for minio (s3) storage server?

2019-03-22 Thread guettli
Up to now all my projects worked with the basic file storage.

Now I want use a s3 like storage server for the first time.

The server implementation will be minio (not aws)

I see three apps:

  https://github.com/py-pa/django-minio-storage

  https://github.com/etianen/django-s3-storage

  https://github.com/jschneier/django-storages

Do you have an advice which one could fit?

Binary data with size of up to 100MBytes will get uploaded.

Regards,
  Thomas Güttler

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ca98eb3d-6c77-4372-8dfe-13dc16d678ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Django active sessions

2019-03-22 Thread Alejandro Martin Herve
I would like to know if there is a way to detect if a session is no longer 
active. I have a Django web app that when a user logs in, his session is 
set to expire at browser close  request.session.set_expiry(0) this will 
close the session at browser close efectively but his expire time gets a 
default value defined by SESSION_COOKIE_AGE, that is equal to two weeks in 
seconds. My intention is not reduce this value, because I want that the 
session stays active as long as the browser stays open. So I would like to 
know when the session is not longer active because the user close the 
browser. If there is a way for this please I would like to hear it, I've 
already check the code of the Session model and can't find anything, please 
if somebody knows this, I'll appreciate the help thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/5708453a-cbd9-4e7e-80f8-847e86f1faf0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Create project in windows, but run it in Ubuntu

2019-03-22 Thread chandan kumar
Hi,

 I tried it doing so , but didn't work for me.
I had to give the same project to one of my friend who was using Django
installed in Ubuntu.
But it dint work there, so i had to install django again in his windows
10.
Thanks
*Chandan Chaudhary*
IIIT Guwahati
Btech(3rd Year)


On Fri, Mar 22, 2019 at 12:41 PM Aldian Fazrihady  wrote:

> Hi,
>
> That's is possible.
>
> On Fri, 22 Mar 2019, 19:28 Chafid Ahmad,  wrote:
>
>> Hi, I have a client who wanted to run a Django project that can run in
>> Ubuntu. As I don't have a UX machine to developed it, is it possible to
>> developed the project in Windows, but later export it to Ubuntu? My initial
>> plan is:
>> - Developed the project with pycharm in windows
>> - Upload the project to github
>> - retrieve the project from github to an ubuntu virtual machine and test
>> it
>> The reason I don't want to developed the project in virtual machine is
>> that my hardware resource is limited, I don't want to share it if I don't
>> absolutely have to.
>> Is this possible? If not can anyone help me with another alternative
>> solution?
>>
>> Cheers
>> Chafid
>> --
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CADf88xmVSz9s8Rpg0gGL1Pmswb-DF8Fz_OEo-EDQgaK7F65hAg%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAN7EoAZVyVQBOZ8MkKtDM1a5z89YkjgHZC-0%3DR-6t5Ad6Zs64Q%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Django active sessions

2019-03-22 Thread Alejandro Martin Herve
Hi, I would like to know if there is a way to detect if a session in no 
longer active, I'll explain better. I have a setup in my web app where when 
a user logs in automatically his
session is set to expire at browser close:
 
request.session.set_expiry(0)

But despite this work effectively, the session age time is set to 
*SESSION_COOKIE_AGE 
*by default (2 weeks), my intention is not diminish this value, what I 
would like to know
is when the session is no longer active because the user close his browser. 
I already check the Session model code and SessionStore class. I would 
appreciate the help thanks :)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c47f2c0e-8444-47e3-9b16-73bc5dd463c8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 404 error when posting a multipart/form-data form

2019-03-22 Thread Manlio Perillo
On Friday, March 22, 2019 at 1:28:55 PM UTC+1, Hamady Medvall wrote:
>
> You have to add the path /bug in URLConfig
>
>
A GET request to /mp/bug/ does not return an error, only a POST request and 
*only* when using a file upload.

>From the trace I see that it's the URL resolver that raises the 404 
exception.  But what I don't understand is why a GET request work.

This is the trace for a POST request: https://paste.ee/p/sjq5s


Thanks
Manlio Perillo

On Fri, Mar 22, 2019 at 10:45 AM Manlio Perillo  > wrote:
>
>> On Thursday, March 21, 2019 at 2:42:31 PM UTC+1, Manlio Perillo wrote:
>>>
>>> On Thursday, March 21, 2019 at 10:56:43 AM UTC+1, Mohammad Etemaddar 
>>> wrote:

 Can you send your view here?


>>> Here is the URL that reproduce the problem:
>>> https://fast-page.it/mp/bug/
>>>
>>> and here is the URL that prints the Django environment:
>>> https://fast-page.it/mp/debug/
>>>
>>> The view code is here:
>>> https://gist.github.com/perillo/2f828209cea84ff8c753f6f2524119f1
>>>
>>>
>>> What I find strange is that if I remove the {{ form }} and uncomment the 
>>> manual input element, there is no error.
>>>
>>>
>> No idea about the cause of the problem?
>>
>>
>> Thanks
>> Manlio Perillo
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/efac7049-20d6-4a33-b928-cf4a494a6995%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/51ff1c93-2204-4304-83df-e99ca4f5337e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: IIS configuration for python Django project

2019-03-22 Thread Larry Martell
On Fri, Mar 22, 2019 at 8:28 AM patel hastik  wrote:
>
> Hello, everyone
>
> I created python Django web Application I want to configure with IIS on the 
> window OS. I try many things and research about this I found video and 
> document and I follow all the step mention in the document but I am getting 
> Error "internal server Error 500.00 unknown FastCGI Occurred"
>
> my Question is I have to make any change in python and Django code to 
> configure my python Django project with IIS?
>
> can anyone help me with is thanks in advanced

I have a django app that I was able to get running on IIS. It was a
huge pain, with many battles along the way. In my case the app had to
run on both Windows and Linux so I had to make some settings changes,
but no code changes. I would check the logs (IIS logs, django logs,
any logs your app may generate). Also I found that connecting to the
app locally (i.e. from a browser running on the same machine as IIS)
gave me more informative error messages then when I ran from a remote
client. You can also try running the django devel server and seeing if
you get more info from that. Good luck.

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


Re: Create project in windows, but run it in Ubuntu

2019-03-22 Thread Bill Freeman
Using git does not require github.  You can use any accessible machine to
serve a git repository, to which you can push, and from which you can pull,
using, for example, git+ssh (you could also use an ssh tunnel, but git
supports ssh transport directly).  Do set up ssh to require keys and not
allow password access, for security.  You can make a user for each
developer to limit access.  git supports all the necessary features that
you get with github.  Any machine that all developers plus the deployment
machine can reach is OK, but something like the $5/mo linode plan means
that you can work remotely if traveling (as opposed to a box on your local
network that's not accessible from outside).

It is also possible to run a private instance of github, but I don't know
the costs and management effort involved.

On Fri, Mar 22, 2019 at 8:28 AM Chafid Ahmad  wrote:

> Hi, I have a client who wanted to run a Django project that can run in
> Ubuntu. As I don't have a UX machine to developed it, is it possible to
> developed the project in Windows, but later export it to Ubuntu? My initial
> plan is:
> - Developed the project with pycharm in windows
> - Upload the project to github
> - retrieve the project from github to an ubuntu virtual machine and test it
> The reason I don't want to developed the project in virtual machine is
> that my hardware resource is limited, I don't want to share it if I don't
> absolutely have to.
> Is this possible? If not can anyone help me with another alternative
> solution?
>
> Cheers
> Chafid
> --
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CADf88xmVSz9s8Rpg0gGL1Pmswb-DF8Fz_OEo-EDQgaK7F65hAg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: Create project in windows, but run it in Ubuntu

2019-03-22 Thread Aldian Fazrihady
Hi,

That's is possible.

On Fri, 22 Mar 2019, 19:28 Chafid Ahmad,  wrote:

> Hi, I have a client who wanted to run a Django project that can run in
> Ubuntu. As I don't have a UX machine to developed it, is it possible to
> developed the project in Windows, but later export it to Ubuntu? My initial
> plan is:
> - Developed the project with pycharm in windows
> - Upload the project to github
> - retrieve the project from github to an ubuntu virtual machine and test it
> The reason I don't want to developed the project in virtual machine is
> that my hardware resource is limited, I don't want to share it if I don't
> absolutely have to.
> Is this possible? If not can anyone help me with another alternative
> solution?
>
> Cheers
> Chafid
> --
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CADf88xmVSz9s8Rpg0gGL1Pmswb-DF8Fz_OEo-EDQgaK7F65hAg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Test FrameWork Cleanup

2019-03-22 Thread Gourav Sardana
Hey,

I am Gourav Sardana undergraduate computer science student.I am interested 
in the idea of test framework cleanup. @Mentors Can i ask you one thing?  
we have to build a software for improving code or we have to add this in 
our django core code?

Regards,
Gourav Sardana

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1ba6880e-dbb4-45af-a13a-548ad7d5320b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


PASSWORD_RESET_TIMEOUT_DAYS i want to set it to 3 hours

2019-03-22 Thread javed
 have a requirement that I have to expiry the token after 3 hours, but not 
found anything how I can do this because PASSWORD_RESET_TIMEOUT_DAYS allow 
me to set in days. Suggest me some workaround.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/978170b9-5e01-4c3b-885b-06ee52409723%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 404 error when posting a multipart/form-data form

2019-03-22 Thread Hamady Medvall
You have to add the path /bug in URLConfig

On Fri, Mar 22, 2019 at 10:45 AM Manlio Perillo 
wrote:

> On Thursday, March 21, 2019 at 2:42:31 PM UTC+1, Manlio Perillo wrote:
>>
>> On Thursday, March 21, 2019 at 10:56:43 AM UTC+1, Mohammad Etemaddar
>> wrote:
>>>
>>> Can you send your view here?
>>>
>>>
>> Here is the URL that reproduce the problem:
>> https://fast-page.it/mp/bug/
>>
>> and here is the URL that prints the Django environment:
>> https://fast-page.it/mp/debug/
>>
>> The view code is here:
>> https://gist.github.com/perillo/2f828209cea84ff8c753f6f2524119f1
>>
>>
>> What I find strange is that if I remove the {{ form }} and uncomment the
>> manual input element, there is no error.
>>
>>
> No idea about the cause of the problem?
>
>
> Thanks
> Manlio Perillo
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/efac7049-20d6-4a33-b928-cf4a494a6995%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: Hello From Nigeria

2019-03-22 Thread Nasim TKP
Guys let"s make a whatsapp or telegram group for our doubts and we can
share projects my number is +919048761884

On Fri, 22 Mar 2019, 10:02 am VeeraNagaRaja Sankar, 
wrote:

> me too  guys ,
> add me
> 9985864383
>
> Best Regards,
> Inti VeeraNagaRaja Sankar,M.Tech(IT)
> M: 9985864383
> intisank...@gmail.com 
> https://about.me/veeranagarajasankar
>
>
> On Thu, Mar 21, 2019 at 9:07 PM chaitanya goud <
> chaitanya.crea...@gmail.com> wrote:
>
>> Hi i am an django developer I can join
>>
>> On Mon, 11 Mar 2019, 18:46 Joshua Kayode, 
>> wrote:
>>
>>> Greetings, if you are a django developer in Nigeria, would you consider
>>> joining a WhatsApp group?
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAEL9fCFn_XXW26_wXAz0K%3DaHTA31mhWMhhCQcxvpMSn1ZMSuEg%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CA%2BkSnu5dNhWHAV8GAujgH-PWc7FxCfy7WGMtweO-T2qVRHq-BQ%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJFTHQa-i6fegitp%2BkFCMscL5odOtdPQzZ4_nkU8fghYNiXaqg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Create project in windows, but run it in Ubuntu

2019-03-22 Thread Chafid Ahmad
Hi, I have a client who wanted to run a Django project that can run in
Ubuntu. As I don't have a UX machine to developed it, is it possible to
developed the project in Windows, but later export it to Ubuntu? My initial
plan is:
- Developed the project with pycharm in windows
- Upload the project to github
- retrieve the project from github to an ubuntu virtual machine and test it
The reason I don't want to developed the project in virtual machine is that
my hardware resource is limited, I don't want to share it if I don't
absolutely have to.
Is this possible? If not can anyone help me with another alternative
solution?

Cheers
Chafid
--

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


IIS configuration for python Django project

2019-03-22 Thread patel hastik
Hello, everyone

I created python Django web Application I want to configure with IIS on the 
window OS. I try many things and research about this I found video and 
document and I follow all the step mention in the document but I am getting 
Error "internal server Error 500.00 unknown FastCGI Occurred" 

my Question is I have to make any change in python and Django code to 
configure my python Django project with IIS?

[image: 500.png]
can anyone help me with is thanks in advanced

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/549c9602-0e7f-46b6-933a-ab31cc4596c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Hello From Nigeria

2019-03-22 Thread Nasim TKP
https://chat.whatsapp.com/GXP15D4Mvxq6cApcqs3TFo
Join everyone we can make a community

On Fri, 22 Mar 2019, 10:13 am Mohan Goud,  wrote:

> 9640855205
>
>
>
>
> On Fri, Mar 22, 2019 at 12:32 PM VeeraNagaRaja Sankar <
> intisank...@gmail.com> wrote:
>
>> me too  guys ,
>> add me
>> 9985864383
>>
>> Best Regards,
>> Inti VeeraNagaRaja Sankar,M.Tech(IT)
>> M: 9985864383
>> intisank...@gmail.com 
>> https://about.me/veeranagarajasankar
>>
>>
>> On Thu, Mar 21, 2019 at 9:07 PM chaitanya goud <
>> chaitanya.crea...@gmail.com> wrote:
>>
>>> Hi i am an django developer I can join
>>>
>>> On Mon, 11 Mar 2019, 18:46 Joshua Kayode, 
>>> wrote:
>>>
 Greetings, if you are a django developer in Nigeria, would you consider
 joining a WhatsApp group?

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

>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CA%2BkSnu5dNhWHAV8GAujgH-PWc7FxCfy7WGMtweO-T2qVRHq-BQ%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJFTHQa-i6fegitp%2BkFCMscL5odOtdPQzZ4_nkU8fghYNiXaqg%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAB29Dk%3D9uuRddzF71SXNkcXT16q9-zamSd0oePziFZWYP0AOnQ%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: 404 error when posting a multipart/form-data form

2019-03-22 Thread Manlio Perillo
On Thursday, March 21, 2019 at 2:42:31 PM UTC+1, Manlio Perillo wrote:
>
> On Thursday, March 21, 2019 at 10:56:43 AM UTC+1, Mohammad Etemaddar wrote:
>>
>> Can you send your view here?
>>
>>
> Here is the URL that reproduce the problem:
> https://fast-page.it/mp/bug/
>
> and here is the URL that prints the Django environment:
> https://fast-page.it/mp/debug/
>
> The view code is here:
> https://gist.github.com/perillo/2f828209cea84ff8c753f6f2524119f1
>
>
> What I find strange is that if I remove the {{ form }} and uncomment the 
> manual input element, there is no error.
>
>
No idea about the cause of the problem?


Thanks
Manlio Perillo

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/efac7049-20d6-4a33-b928-cf4a494a6995%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is there any inline editing the data and delete data in table in Django?

2019-03-22 Thread Joel Mathew
This is simple to achieve with django formset plus jquery. You just need to
have a little imagination

On Fri, 22 Mar, 2019, 12:15 PM VeeraNagaRaja Sankar, 
wrote:

> hi Derek,
>
> Thank you but I saw this one not working for my methodology.
>
> Best Regards,
> Inti VeeraNagaRaja Sankar,M.Tech(IT)
> M: 9985864383
> intisank...@gmail.com 
> https://about.me/veeranagarajasankar
>
>
> On Thu, Mar 21, 2019 at 11:08 AM Derek  wrote:
>
>> If I had to do something like this right now I would probably look at:
>> *
>> https://bossanova.uk/jexcel/examples/tracking-changes-on-the-spreadsheet
>> ,
>> * plus the javascript needed to handle the front-end GET/POST requests
>> (MANY examples on the web) when data changes,
>> * along with Django DRF on the back-end to handle the server side data
>> generation and database updates.
>>
>> Please don't keep asking "how" and rather start with your own
>> development.
>>
>> On Wednesday, 20 March 2019 21:57:21 UTC+2, Chetan Ganji wrote:
>>>
>>> Hi Sankar,
>>>
>>> Derek is right, we can only give you suggestions as we are far away from
>>> you. How is really upto YOU.
>>> What you are trying to achieve is basically a front end task. You only
>>> have knowledge of django which is a backend technology.
>>>
>>> You have many options to make choice from -
>>> 1. You have to learn to use jquery to do it the way you want it.
>>> 2. Use the default UpdateView from django where EDIT/UPDATE view will be
>>> shown separately. i.e. let go of inline editing feature.
>>> 3. Find someone who will code it for you.
>>> 4. Any other that you can think of.
>>>
>>> Happy Coding :)
>>>
>>>
>>> Regards,
>>> Chetan Ganji
>>> +91-900-483-4183
>>> ganji@gmail.com
>>> http://ryucoder.in
>>>
>>>
>>> On Wed, Mar 20, 2019 at 11:58 AM VeeraNagaRaja Sankar <
>>> intis...@gmail.com> wrote:
>>>
 hi,

 means, i am only aware of Django so i need any code reference to do that
  thank you,

 Best Regards,
 Inti VeeraNagaRaja Sankar,M.Tech(IT)
 M: 9985864383
 intis...@gmail.com
 https://about.me/veeranagarajasankar


 On Wed, Mar 20, 2019 at 11:55 AM Derek  wrote:

> That is not an answerable question.  We have given you suggestions -
> the "how" is up to you.
>
> On Tuesday, 19 March 2019 09:36:27 UTC+2, veera nagaraja sankar Inti
> wrote:
>>
>>
>> how ?
>>
>> On Monday, March 4, 2019 at 12:40:03 PM UTC+5:30, Derek wrote:
>>>
>>> Grid / tabular editing outside of the admin is tricky; I have not
>>> been able to manage it and have not found a good app for it.
>>>
>>> Here are some suggested reading:
>>>
>>> * https://www.ibm.com/developerworks/library/wa-django/index.html
>>> * https://bossanova.uk/jexcel
>>> *
>>> https://medium.com/ag-grid/building-a-crud-application-with-ag-grid-part-4-3189034df922
>>>
>>> You'd also need an app like Django REST Framework to handle GET/POST
>>> of JSON data to populate your grid.
>>>
>>> On Wednesday, 27 February 2019 20:39:04 UTC+2, veera nagaraja sankar
>>> Inti wrote:

 need help friends ?..

 thq..

>>> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users...@googlegroups.com.
> To post to this group, send email to django...@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/562202e8-53a3-44d2-b0aa-ba710e180787%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users...@googlegroups.com.
 To post to this group, send email to django...@googlegroups.com.
 Visit this group at https://groups.google.com/group/django-users.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAJFTHQa_6OGseZ8TwrniWrUNDM%2BkN8a%3DChBFrF7j4XRysARaLw%40mail.gmail.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.

Re: Hello From Nigeria

2019-03-22 Thread Mohan Goud
9640855205




On Fri, Mar 22, 2019 at 12:32 PM VeeraNagaRaja Sankar 
wrote:

> me too  guys ,
> add me
> 9985864383
>
> Best Regards,
> Inti VeeraNagaRaja Sankar,M.Tech(IT)
> M: 9985864383
> intisank...@gmail.com 
> https://about.me/veeranagarajasankar
>
>
> On Thu, Mar 21, 2019 at 9:07 PM chaitanya goud <
> chaitanya.crea...@gmail.com> wrote:
>
>> Hi i am an django developer I can join
>>
>> On Mon, 11 Mar 2019, 18:46 Joshua Kayode, 
>> wrote:
>>
>>> Greetings, if you are a django developer in Nigeria, would you consider
>>> joining a WhatsApp group?
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAEL9fCFn_XXW26_wXAz0K%3DaHTA31mhWMhhCQcxvpMSn1ZMSuEg%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CA%2BkSnu5dNhWHAV8GAujgH-PWc7FxCfy7WGMtweO-T2qVRHq-BQ%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJFTHQa-i6fegitp%2BkFCMscL5odOtdPQzZ4_nkU8fghYNiXaqg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: Hello From Nigeria

2019-03-22 Thread VeeraNagaRaja Sankar
me too  guys ,
add me
9985864383

Best Regards,
Inti VeeraNagaRaja Sankar,M.Tech(IT)
M: 9985864383
intisank...@gmail.com 
https://about.me/veeranagarajasankar


On Thu, Mar 21, 2019 at 9:07 PM chaitanya goud 
wrote:

> Hi i am an django developer I can join
>
> On Mon, 11 Mar 2019, 18:46 Joshua Kayode, 
> wrote:
>
>> Greetings, if you are a django developer in Nigeria, would you consider
>> joining a WhatsApp group?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAEL9fCFn_XXW26_wXAz0K%3DaHTA31mhWMhhCQcxvpMSn1ZMSuEg%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BkSnu5dNhWHAV8GAujgH-PWc7FxCfy7WGMtweO-T2qVRHq-BQ%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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