Re: mysqlclient installation error

2019-06-11 Thread Desh Deepak
Hi,
MySQL client is not available for Django 2.2 and newer version.
You can uninstall 2.2 and download older Django version 2.0 for the
database connection.


Thanks
Desh Deepak
+917011101001

On Tue, 11 Jun 2019, 19:37 Raja Sekar Sampath,  wrote:

> Hi Guys,
>
> While installing mysqlclient using pip, getting this error
>
> VS C++ Build tool was installed in system and updated the setup tools,
> still getting this issue..
> Any solution for this ?
>
> My Environment :
>
> OS : Windows 10
> Python : 3.7
> Django : 2.2
> DB : MariaDB 10.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/19576386-dd91-4e29-9fce-762a60461368%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/19576386-dd91-4e29-9fce-762a60461368%40googlegroups.com?utm_medium=email_source=footer>
> .
> 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/CAJ0m4xigw7eocG2K2uUsT6SUHic6CdLrK3CDJQF-LMWoNd86ng%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Login problems

2019-06-10 Thread Desh Deepak
> Hi, Luka


You can create again superuser and save it.

-- 
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/CAJ0m4xgLtPXj9Y1SVSpBkREr55FWKxyh4r9tGYDAuL6gL69aCg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


ValueError

2019-07-10 Thread Desh Deepak
Hi, I want to insert some data in MysqlDatabase from the template (HTML
file).
but, it shows error like this...

The view Naturalgreen.views.index didn't return an HttpResponse
object. It returned None instead.

Request Method: GET
Request URL: http://127.0.0.1:8000/
Django Version: 2.0
Exception Type: ValueError
Exception Value:


Python Version: 3.7.3
Django Version: 2.0


(views.py)
from django.shortcuts import render
from django.http import HttpResponse
from Naturalgreen.models import signin


# Create your views here.

def index(request):
if request.method == 'POST':
if request.POST.get('username') and request.POST.get('password'):
POST = naturalgreen_signin()
POST.username = request.POST.get('username')
POST.password = request.POST.get('password')
post.save()
return HttpResponseRedirect(request, "index.html")
else:
return HttpResponse(request, 'home.html')


(models.py)

from django.db import models

# Create your models here.
class signin(models.Model):
username = models.CharField(max_length=200, blank=False)
password = models.CharField(max_length=150, blank=False)


class Meta:
db_table ="naturalgree_signin"


(index.html)
{% load static %}




Natural Green





Please Enter your Login Details !

{% csrf_token %}
Username: 
Password: 
Login









thanks:
Desh Deepak
+917011101001
deshdeepak...@gmail.com

-- 
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/CAJ0m4xjVuP91YmjZ423UZfgiRoPtg3GvgsRgZR_KMc2vOgFXBQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Help

2019-07-01 Thread Desh Deepak
pip install virtualenv

On Mon, 1 Jul 2019, 19:18 Pragesh Yadav,  wrote:

> When creat virtual environment. I got an error message - '"virtualenv"' is
> not recognized as an internal or external command,
> operable program or batch file.
>
> --
> 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/CADO27iqccH5YnpznBFY9d%2BGkeJPHekNSa-tVAae8k9OBgx%3DYNA%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/CAJ0m4xg9n0FUmuQcJ1zrqZqY4aKnJKjEy0%3DbQG6V3k8JNPa-uw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Start-up project for fresher student:

2019-08-03 Thread Desh Deepak
Yes, sure

On Sat, 3 Aug 2019, 15:54 SHUBHAM .SINGH. RATHORE, <
shubhamsingh...@gmail.com> wrote:

> Hey I am interested in this startup project
>
> On Tue, 23 Jul 2019 12:48 am iampawam goswami, 
> wrote:
>
>> Hello everybody
>> I what starts my django project what will be the best startup application
>> for practices to fresher...Please reply me.
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAM%3DXy2p1SiSL2WoPvCc8g_%3DB_zaojf%3DfWkDBA_dpDfwd4gtgPQ%40mail.gmail.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CALkhXJVc%3DFFdrqCXdaoQ%3DJTavjywG%2BjuFAg0xxaDS7cw1Dk_sg%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xhmY_7tG25044v%3D0EqxQz-4T%2BHDPWNRgtwzxdv1oF09tw%40mail.gmail.com.


Re: i need a project developed in django +mysql database and front end in bootstrap-4

2019-08-28 Thread Desh Deepak
Hi,  Waqas

I am Desh Deepak from New Delhi, My Qualification MCA done from IGNOU.
I am experience in Python technology like python based frameworks: Django,
flask and also knowledge about MySQL8.0.

My github id: deshxpm (https://www.github.com/deshxpm)
and linkedin id: deshdeepak...@gmail.com




Best Regards
Desh Deepak
+917011101001
deshdeepak...@gmail.com

On Wed, Aug 28, 2019 at 4:08 PM Waqas Ahmad 
wrote:

> For Contact me ::: waqasahmadtarar...@gmail.com
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/df5feb98-feb3-418a-be0c-e374664bfa29%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/df5feb98-feb3-418a-be0c-e374664bfa29%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xgGTKLJi8NYg%2BCpYZast70X%3D4PBgbChEUgvrEuWow6apA%40mail.gmail.com.


Re: migrate error

2019-09-10 Thread Desh Deepak
Show me your view.py code.

On Tue, 10 Sep 2019, 20:03 Chukwuka,  wrote:

> Might help if you post the migration file 0027.. for testapp
>
> On Mon, Sep 9, 2019 at 9:29 PM Pradeep Singh 
> wrote:
>
>> from django.db import models
>> from django import forms
>> from django.core import validators
>> from django.core.urlresolvers import reverse
>> from django.contrib.auth.models import User
>> from django.db.models.signals import post_save
>> from django.dispatch import receiver
>> from django.utils import timezone
>> from datetime import datetime
>> # Create your models here.
>> class Contact(models.Model):
>>   name = models.CharField(max_length=200)
>>   email = models.CharField(max_length=100)
>>   phone = models.CharField(max_length=100)
>>   message = models.TextField(blank=True)
>>   contact_date = models.DateTimeField(default=datetime.now, blank=True)
>>
>>   def __str__(self):
>> return self.name
>>
>> class Profile(models.Model):
>> user = models.OneToOneField(User, on_delete=models.CASCADE)
>> bio = models.TextField(max_length=500, blank=True)
>> location = models.CharField(max_length=30, blank=True)
>> #sbirth_date = models.DateField(null=True, blank=True)
>>
>> @receiver(post_save, sender=User)
>> def update_user_profile(sender, instance, created, **kwargs):
>> if created:
>> Profile.objects.create(user=instance)
>> instance.profile.save()
>>
>> class Realtor(models.Model):
>>   name = models.CharField(max_length=200)
>>   photo = models.ImageField(upload_to='media/images/')
>>   description = models.TextField(blank=True)
>>   phone = models.CharField(max_length=20)
>>   email = models.CharField(max_length=50)
>>   is_mvp = models.BooleanField(default=False)
>>   hire_date = models.DateTimeField(default=datetime.now, blank=True)
>>   def __str__(self):
>> return self.name
>>
>> PROPERTY_TYPE = (('Select Property Type','Select Property
>> Type'),('Appartment', 'Appartment'),('DDA Appartment', 'DDA Appartment'),
>> ('Builder Floor', 'Builder Floor'), ('Indepedent house', 'Indepedent
>> house'),('Residental Land','Residental Land'))
>> TYPE = (('Select Type','Select Type'),('1 BHK', '1 BHK'), ('2 BHK', '2
>> BHK'), ('3 BHK', '3 BHK'),('4 BHK','4 BHK'),('LAND','Land'),('Janta
>> Flat','Janta Flat'),('LIG Flat','LIG Flat'),('MIG Flat','MIG Flat'),('HIG
>> Flat','HIG Flat'))
>> CITY=(('Select City','Select City'),('West Delhi', 'West Delhi'), ('South
>> Delhi', 'South Delhi'), ('North Delhi', 'North Delhi'),('East Delhi','East
>> Delhi'))
>>
>> class Property(models.Model):
>> realtor= models.ForeignKey(Realtor,  on_delete=models.DO_NOTHING)
>> #image=models.ImageField(upload_to='media/images/',blank=True,
>> null=True)
>> house_name=models.CharField(max_length=30)
>> #PROPERTY_TYPE = (('Select Property Type','Select Property
>> Type'),('Appartment', 'Appartment'),('DDA Appartment', 'DDA Appartment'),
>> ('Builder Floor', 'Builder Floor'), ('Indepedent house', 'Indepedent
>> house'),('Residental Land','Residental Land'))
>> property_type=models.CharField(max_length=20,
>> choices=PROPERTY_TYPE,default='Select Property Type')
>> #TYPE = (('Select Type','Select Type'),('1 BHK', '1 BHK'), ('2 BHK',
>> '2 BHK'), ('3 BHK', '3 BHK'),('4 BHK','4 BHK'),('LAND','Land'),('Janta
>> Flat','Janta Flat'),('LIG Flat','LIG Flat'),('MIG Flat','MIG Flat'),('HIG
>> Flat','HIG Flat'))
>> type=models.CharField(max_length=10,choices=TYPE,default='Select
>> Type')
>> area=models.CharField(max_length=10,blank=False)
>> #CITY=(('Select City','Select City'),('West Delhi', 'West Delhi'),
>> ('South Delhi', 'South Delhi'), ('North Delhi', 'North Delhi'),('East
>> Delhi','East Delhi'))
>> city=models.CharField(max_length=20,choices=CITY,default='Select
>> city')
>> location=models.CharField(max_length=30)
>> price=models.CharField(max_length=20)
>> description=models.TextField(blank=True)
>> publish_date = models.DateTimeField(default=datetime.now, blank=True)
>> publish_date = models.DateTimeField(default=datetime.now, blank=True)
>> image= models.ImageField(upload_to='media/images/',blank=True,
>> null=True )
>> image_1 = models.ImageField(upload_to='media/images/', blank=True ,
>> null=True)
>> image_2 = models.ImageField(upload_to='media/images/', blank=True ,
>> null=True)
>> image_3 = models.ImageField(upload_to='media/images/', blank=True ,
>> null=True)
>> image_4 = models.ImageField(upload_to='media/images/', blank=True ,
>> null=True)
>> image_5 = models.ImageField(upload_to='media/images/', blank=True ,
>> null=True)
>> image_6 = models.ImageField(upload_to='media/images/', blank=True ,
>> null=True)
>> #submitted = models.DateField(auto_now_add=True)
>>
>> class Meta:
>> abstract=True
>>
>>
>>
>>
>> class Buy(Property):
>>
>> def __str__(self):
>> return self.house_name
>>
>>
>> class Rent(Property):
>>
>> def __str__(self):
>> return 

Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-20 Thread Desh Deepak
Sorry for the late reply,

You can try these commands on your terminal:-

pip uninstall Django

Then

pip install Django 2.0

and try to run the server again.


Thanks and regards:-
 Desh Deepak
 deshdeepak...@gmail.com
 +917011101001

On Fri, 19 Jul 2019, 18:06 anchal agarwal, 
wrote:

> Hello Django users,
> i am trying to deploy my django on AWS
> I am following this
> https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
> Everything was going right but when i run python manage.py migrate , it's
> giving me this error
> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
> required (found 3.7.17).
> how can i resolve this?
> Please help me
>
> --
> 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/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com?utm_medium=email_source=footer>
> .
> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xj%2BjiMYNPhmE%2BimYDjP20OOzm_W-ftjrOSyFAPz8NCQAg%40mail.gmail.com.


Re: disable back button after login ????????????????????????????????????????????????????????

2019-07-20 Thread Desh Deepak
Show me your source code!!!


On Sat, 20 Jul 2019, 18:45 Kasper Laudrup,  wrote:

> On 19/07/2019 19.30, AKSHAY BHUVA wrote:
> >
> > Disable Back button after login...
> > please help me..
> >
>
> You can't, but more importantly, learn how to ask a question if you want
> someone to help you.
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/46bb3d0e-35f4-c51d-dd4f-98d6333844f6%40stacktrace.dk
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xhKJek3Tv97hULHs-JUg7fwo6uRxYtWJgR4MHGuejpE4Q%40mail.gmail.com.


Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-19 Thread Desh Deepak
Hi, show me your database connection, also tell me python and Django
version.


On Fri, 19 Jul 2019, 18:06 anchal agarwal, 
wrote:

> Hello Django users,
> i am trying to deploy my django on AWS
> I am following this
> https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
> Everything was going right but when i run python manage.py migrate , it's
> giving me this error
> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
> required (found 3.7.17).
> how can i resolve this?
> Please help me
>
> --
> 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/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%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/CAJ0m4xiKUd3sOH0mwJtsUKS-mO8w4hok6VmKoS%3DFEbaSJ9XSag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: mysql data connectivity problem

2019-11-19 Thread Desh Deepak
You need to changes Database section inside settings.py

On Tue, 19 Nov 2019, 18:59 Prof soul,  wrote:

> Hi i'm soul i'm new to django and late, i got an idea to handle the django
> but  there is still lack of database  connectivity with django anybody know
> about it in easy manner
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/9b619168-8796-4d81-a728-ec34cd9eac11%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xhMFbzYTjSzNPHVqk6iKUEaKOPjocCKv8eF_EHSjRkkqw%40mail.gmail.com.


Re: TemplateDoesNotExist

2019-09-25 Thread Desh Deepak
Create template folder inside testapp.

Like this:
testapp>template>base.html



On Wed, 25 Sep 2019, 10:47 yerri swamy,  wrote:

>
>
> On Mon, Sep 23, 2019 at 6:53 PM Desh Deepak 
> wrote:
>
>> Show me your views.py file.
>>
>> On Mon, 23 Sep 2019, 18:48 Abu Yusuf,  wrote:
>>
>>> 1. ensure you have a folder templates inside static folder
>>> 2. ensure you filled up templates_dir: 'templates'
>>> 3. ensure 'base.html' exists inside templates folder
>>>
>>> On Mon, Sep 23, 2019 at 6:40 PM yerri swamy 
>>> wrote:
>>>
>>>> Hi guys,
>>>>
>>>> By using templates folder i am not getting what i am expecting
>>>> and i am getting error 'Template Does Not Exist' ,and also defaulty it's
>>>> not coming templates variable in settings.py file,How do i slove this error
>>>> please explain me any one.
>>>>
>>>> --
>>>> 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 view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/django-users/208e411a-a8f5-4238-b846-f086826f2ff4%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/django-users/208e411a-a8f5-4238-b846-f086826f2ff4%40googlegroups.com?utm_medium=email_source=footer>
>>>> .
>>>>
>>> --
>>> 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 view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CACNsr29mvap_G4%2Bc70NrkDZEQvPye%3D22caxfBvdUvMt_b7kXqQ%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/django-users/CACNsr29mvap_G4%2Bc70NrkDZEQvPye%3D22caxfBvdUvMt_b7kXqQ%40mail.gmail.com?utm_medium=email_source=footer>
>>> .
>>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJ0m4xiPWfJ%3Dt-CjkDL81F7wn5ETmcBRacMyBi5n0zpO0C%3DUQg%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAJ0m4xiPWfJ%3Dt-CjkDL81F7wn5ETmcBRacMyBi5n0zpO0C%3DUQg%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKMSwL-OH3MOgjE5YDwVtsH-2xPv5oNxvuWHna8MZYUXS0iR0A%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAKMSwL-OH3MOgjE5YDwVtsH-2xPv5oNxvuWHna8MZYUXS0iR0A%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xhvoPjpgJXQKk61oG4rfnVRnUwLCX1CgYH%3DGdze8BGAfw%40mail.gmail.com.


Re: TemplateDoesNotExist

2019-09-23 Thread Desh Deepak
Show me your views.py file.

On Mon, 23 Sep 2019, 18:48 Abu Yusuf,  wrote:

> 1. ensure you have a folder templates inside static folder
> 2. ensure you filled up templates_dir: 'templates'
> 3. ensure 'base.html' exists inside templates folder
>
> On Mon, Sep 23, 2019 at 6:40 PM yerri swamy 
> wrote:
>
>> Hi guys,
>>
>> By using templates folder i am not getting what i am expecting
>> and i am getting error 'Template Does Not Exist' ,and also defaulty it's
>> not coming templates variable in settings.py file,How do i slove this error
>> please explain me any one.
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/208e411a-a8f5-4238-b846-f086826f2ff4%40googlegroups.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACNsr29mvap_G4%2Bc70NrkDZEQvPye%3D22caxfBvdUvMt_b7kXqQ%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xiPWfJ%3Dt-CjkDL81F7wn5ETmcBRacMyBi5n0zpO0C%3DUQg%40mail.gmail.com.


Re: getting error when i changed database sqllite3 to mysql

2019-10-06 Thread Desh Deepak
pip install pymysql

And then,

setting.py
import pymysql


pymysql.install_as_MySqldb()


And edit

DATABASE: = {
'default' :{
   'ENGINE': 'django.db.backends.mysql',
'NAME': 'database name',
'USER': 'username',
'PASSWORD': 'password',
'HOST' : 'localhost',
'PORT' : '3306',
 }
}


You need to create database before run migrate command...


On Sun, 6 Oct 2019, 05:31 Motaz Hejaze,  wrote:

> If you have data , export it to csv , then after creating the mysql
> database populate it with data ftom csv file
>
> On Sun, 6 Oct 2019, 1:16 am Aldian Fazrihady,  wrote:
>
>> Have you created the database on MySQL?
>>
>> On Sun, Oct 6, 2019 at 4:36 AM Gulsher Khan 
>> wrote:
>>
>>> I trying to change default database(sqllite) which is given by the
>>> Django. I want to use mysql database. I put lots of effort but nothing went
>>> well. I successfully has been install mysql, mysqlclient, mysql-connector
>>> whatever i have read in the documentation.
>>>
>>> I'm using OS: Ubuntu 19.04
>>>
>>> --
>>> 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 view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/ea48f010-5ea5-4d58-9033-2e83a3e1de06%40googlegroups.com
>>> 
>>> .
>>>
>>
>>
>> --
>> Regards,
>>
>> Aldian Fazrihady
>> http://aldianfazrihady.com
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAN7EoAZJXnYbh9-dteFP0HWj1ipnKhgSpwM0s%3DH-2-QEN-upQA%40mail.gmail.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHV4E-frya_dhk98K_NzGh0hqGNqVsxsRCppzNNJnJNKwELeGw%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xj_RVPEkxbEFO6%3DQhW91fjf9a7Sk0%3DmrEX_NMr9xHU%3Dew%40mail.gmail.com.


Re: getting error when i changed database sqllite3 to mysql

2019-10-07 Thread Desh Deepak
You can't use above version of django 2.0 with pymysql.


On Mon, 7 Oct 2019, 03:24 'Dick in Texas' via Django users, <
django-users@googlegroups.com> wrote:

> I have tried to use a new, empty database, but that did not work.  Still
> got the question if I have installed MySQLclient.
>
> Tried the statements from Desh Deepak.  The install and import went well.
> However, when I tried to migrate, I got the message:  module 'pymysql' has
> no attribute 'install_as_MySqldb'.  I put this statement directly below the
> import statement.
>
>
> Below is some of my additional background info that may help.
>
> i am begining a django project and want to use MySQL instead of SQLlite.
> So, I watched a video to learn how to use MySQL with Python.  VBased on
> that, I was able to install MySQL into a C:\MySQL directory successfully.
> I also created a database with userid(root) and password.  Then I wrote a
> Python program that read in a CSV file, created a table in the same
> database and then INSERTed the rows into the table.  Also needed to 'import
> mysql.connector'.  Using SQL Workbench, I was able to verify that all was
> successful.
> Next I tried to access this database from Django without success.  Here's
> what I did.  First I created a virtual environment and then activated it.
> Next, ran 'django-admin startproject  .  This created the
> settings file, but it is set up for SQLlite.  I edited this file to change
> these parameters:
> DATABASES = {
> 'default': {
> 'ENGINE': 'django.db.backends.mysql',
> 'NAME': 'gammon',
> 'USER':'root',
> 'PASSWORD':'1ltarty#',
> 'HOST': 'localhost',
> 'PORT': '3306',
> I skip the 'migrate' step.  Next was 'python manage.py runserver. This
> failed.  I got many error message which I saved in a text file.  At the
> beginning of the messages MySQLdb could not be imported as it couldn't be
> found.  Neat the end of the errors, there is a message asking if I had
> insjtalled mysqlclient.
> I have researched these two errors without much success.  I tried to
> install MySQLclient, but always get a message that the requirement was
> already satisfied.  I cannot find any module MySQLdb anywhere on  my PC.  I
> think these two areas are related.  Since I am able to use MySQL with
> vanilla Python successfully, I suspect I have a PATH error perhaps.
> I am now at a loss as to what I might try next.  Does anyone have any
> ideas?  All comments appreciated.
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/d4b3ffa0-cab7-473e-8615-993b4aac4609%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/d4b3ffa0-cab7-473e-8615-993b4aac4609%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xhTytpwEKqTiaiVyx%2BQ4%2Bp2g%2ByHBiiidanuCZVU7T1W%3DQ%40mail.gmail.com.


Re: TemplateDoesNotExist

2019-10-04 Thread Desh Deepak
yourapp/urls.py

from django.urls import path

from . import path

urlpatterns =[
   path(' ', views.index, name='index'),
]



views.py

def index(request):
   return render(request, 'index.html')






On Thu, 3 Oct 2019, 17:03 Tosin Ayoola,  wrote:

> Did you set your template folder correctly in your setting file and in
> your view are you pointing to the right directory where your .html is
> located?
>
> On Oct 3, 2019 08:18, "yerri swamy"  wrote:
>
> I tried like this
> testapp>template>base.html
> but also its showing same issue please help me anyone..
> views.py
>
>1.
>
>from django.shortcuts import render
>
>2.
>3.
>
># Create your views here.
>
>4.
>
>def hello_world(request):
>
>5.
>
>   
>
>1.
>
>   return render(request,'testapp/template/base.html',{})
>
>
>
> On Wed, Sep 25, 2019 at 11:34 AM Desh Deepak 
> wrote:
>
>> Create template folder inside testapp.
>>
>> Like this:
>> testapp>template>base.html
>>
>>
>>
>> On Wed, 25 Sep 2019, 10:47 yerri swamy, 
>> wrote:
>>
>>>
>>>
>>> On Mon, Sep 23, 2019 at 6:53 PM Desh Deepak 
>>> wrote:
>>>
>>>> Show me your views.py file.
>>>>
>>>> On Mon, 23 Sep 2019, 18:48 Abu Yusuf, 
>>>> wrote:
>>>>
>>>>> 1. ensure you have a folder templates inside static folder
>>>>> 2. ensure you filled up templates_dir: 'templates'
>>>>> 3. ensure 'base.html' exists inside templates folder
>>>>>
>>>>> On Mon, Sep 23, 2019 at 6:40 PM yerri swamy 
>>>>> wrote:
>>>>>
>>>>>> Hi guys,
>>>>>>
>>>>>> By using templates folder i am not getting what i am
>>>>>> expecting and i am getting error 'Template Does Not Exist' ,and also
>>>>>> defaulty it's not coming templates variable in settings.py file,How do i
>>>>>> slove this error please explain me any one.
>>>>>>
>>>>>> --
>>>>>> 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 view this discussion on the web visit
>>>>>> https://groups.google.com/d/msgid/django-users/208e411a-a8f5-4238-b846-f086826f2ff4%40googlegroups.com
>>>>>> <https://groups.google.com/d/msgid/django-users/208e411a-a8f5-4238-b846-f086826f2ff4%40googlegroups.com?utm_medium=email_source=footer>
>>>>>> .
>>>>>>
>>>>> --
>>>>> 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 view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/django-users/CACNsr29mvap_G4%2Bc70NrkDZEQvPye%3D22caxfBvdUvMt_b7kXqQ%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/django-users/CACNsr29mvap_G4%2Bc70NrkDZEQvPye%3D22caxfBvdUvMt_b7kXqQ%40mail.gmail.com?utm_medium=email_source=footer>
>>>>> .
>>>>>
>>>> --
>>>> 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 view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/django-users/CAJ0m4xiPWfJ%3Dt-CjkDL81F7wn5ETmcBRacMyBi5n0zpO0C%3DUQg%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/django-users/CAJ0m4xiPWfJ%3Dt-CjkDL81F7wn5ETmcBRacMyBi5n0zpO0C%3DUQg%40mail.gmail.com?utm_medium=email_source=footer>
>>>> .
>>>>
>>> --
>>> 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 view this discussion on the web visit
>>> https://groups.google.com/d/msg

Re: Django 2.2.6 fails to serve some static files in Windows 10

2019-10-02 Thread Desh Deepak
You need to edit external css link:

Solution:
href="{% static 'css/styles.css' %}"








Regards:
Desh Deepak
+917011101001
deshdeepak...@gmail.com





On Wed, 2 Oct 2019, 21:37 red sky,  wrote:

> My system: Windows 10 1903. Python 3.7.4, 64 bit.
>
> My directory structure:
> %USERPROFILE%/Desktop/myproject/manage.py
> %USERPROFILE%/Desktop/myproject/some_app (...)
> %USERPROFILE%/Desktop/myproject/myproject/db.sqlite3
> %USERPROFILE%/Desktop/myproject/myproject/urls.py
> %USERPROFILE%/Desktop/myproject/myproject/static (...)
> %USERPROFILE%/Desktop/myproject/myproject/static/css (...)
> %USERPROFILE%/Desktop/myproject/myproject/media (...)
> %USERPROFILE%/Desktop/myproject/myproject/some_apps (...)
> %USERPROFILE%/Desktop/myproject/myproject/settings/
> %USERPROFILE%/Desktop/myproject/myproject/settings/__init__.py
> %USERPROFILE%/Desktop/myproject/myproject/settings/settings_base.py
> %USERPROFILE%/Desktop/myproject/myproject/settings/settings_devel.py
> %USERPROFILE%/Desktop/myproject/myproject/settings/settings_production.py
>
>
> My urls.py (last part):
> if ENVIRONMENT=="development":
> import debug_toolbar
> urlpatterns += [path('__debug__/',include (debug_toolbar.urls))]
> urlpatterns += static(MEDIA_URL,document_root=MEDIA_ROOT)
> urlpatterns += static(STATIC_URL,document_root=STATIC_ROOT)
> urlpatterns += router.urls
>
> My settings:
>
> STATIC_URL = '/static/'
> STATIC_ROOT = os.path.join(BASE_DIR , 'static')
> MEDIA_ROOT = BASE_DIR + '/media/'
> (...)
> MEDIA_URL='/media/'
>
> I also tried with and without the following setting in several variants:
> STATIFCILES_DIRS = ["","//",STATIC_ROOT,
> "%userprofile%\\Desktop\\myproject\\myproject\\"]
>
> The template: The error happens both with  href="/static/css/styles.css" and
> {% load static %} (...) href="{% static css/styles.css}" . I think the
> template is not the problem here.
>
> The error:"GET /static/css/styles.css HTTP/1.1" 404 1767
>
> The error takes place also with static requests (
> http://127.0.0.1:8000/static/css/styles.css)
>
> Strange behaviour:
> If I change the setting static_url to STATIC_URL = "static/" the css file
> is served. However, debug_toolbar ceases to serve her own static files and
> doesn't work anymore ("GET
> /myproject/static/debug_toolbar/img/ajax-loader.gif HTTP/1.1" 404 14554)
>
> I have tried many things, to no avail.
>
> Thank you.
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/aa231cc0-c3bf-4d3d-8bf0-6578d1952eff%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/aa231cc0-c3bf-4d3d-8bf0-6578d1952eff%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xgGtsdnSmGVvniNf__obX3XBqD2p6YPHhYhy3WH8T3z8Q%40mail.gmail.com.


Re: installation of django

2020-02-11 Thread Desh Deepak
Hi,


If you unable install django till now, you can connect your computer with
my computer then i can solve the problem easily.

Or call on +91 7011101001 for more information.



Thank & regards
Desh Deepak
+91 7011101001

On Tue, 11 Feb 2020, 21:58 Gregory Vaks,  wrote:

> I would try to open new terminal and see if you somehow already have
> django.
>
> If not try that pip command again - it should work fine but it may have to
> do with your internet connection...I would try to make sure you have a
> stable connection.
>
> On Tuesday, February 11, 2020 at 11:24:26 AM UTC-5, paarull shukla wrote:
>>
>> Please help me out. I m trying to install last 4 days back..
>>
>> On Tue, 11 Feb, 2020, 9:51 PM paarull shukla, 
>> wrote:
>>
>>> No. Not an error but getting collecting django. After that installation
>>> didn't start
>>>
>>> On Tue, 11 Feb, 2020, 9:49 PM Irfan Khan,  wrote:
>>>
>>>> Are you getting any error messages?
>>>>
>>>> On Tue, 11 Feb 2020 at 9:43 PM, paarull shukla 
>>>> wrote:
>>>>
>>>>> heloo guys i m not able to install django please help me it .i m
>>>>> facing issue last 10 days . i m getting collecting django after tht
>>>>> installation not started
>>>>>
>>>>> --
>>>>> 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...@googlegroups.com.
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/django-users/879c4e25-5ff9-4858-bf6d-b794bef3aed7%40googlegroups.com
>>>>> <https://groups.google.com/d/msgid/django-users/879c4e25-5ff9-4858-bf6d-b794bef3aed7%40googlegroups.com?utm_medium=email_source=footer>
>>>>> .
>>>>>
>>>> --
>>>> 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...@googlegroups.com.
>>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/django-users/CALKGVioTRShH5x6UdqwyT2eCY3UVQ%2BZvP4%2BVdaFE0_H6np5mMg%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/django-users/CALKGVioTRShH5x6UdqwyT2eCY3UVQ%2BZvP4%2BVdaFE0_H6np5mMg%40mail.gmail.com?utm_medium=email_source=footer>
>>>> .
>>>>
>>> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/decc4513-ea84-46b2-91cc-9465d528c191%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/decc4513-ea84-46b2-91cc-9465d528c191%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xh96GcM_K26A2ixGEtjZoYdXAEhWJ6XgQqU_bHA9X0J2A%40mail.gmail.com.


Re: Hello Everbody! Happy New Year

2020-01-04 Thread Desh Deepak
Wish you the same,

My name is Desh Deepak from New Delhi India.


Can you help me about  django Custom user authentication and  restAPI.

Thanks in advance

Thanks & Regards
Desh Deepak
+91 7011101001




On Sat, 4 Jan 2020, 20:12 Murilo A. Gigliotti, 
wrote:

> Hello All,
>
>
>
> Thanks for the opportunity to stay here in the group.
>
> Let me introduce myself.
>
> My name is Murilo Gigliotti, I am from Brazil and I live in São Paulo city.
>
> I've been studying *Python + Django* since the beginning of 2019.
>
> Now I am able to help the community with my work.
>
> I have a IT company named Gigliotti Tech - Knowlegde Technologies
> (Gigliotti Tech - Tecnologias do Conhecimento).
>
> The company's web site is www.gigliottitech.com.br
>
> Anyway, It's a very pleasure to me to participate of this group.
>
> If you want to talk about projects, please send an email to
> mur...@gigliottitech.com.br
>
>
>
> PS: Next month (February 12 to 22) I will be in New York, so let me know
> if I could meet anyone there.
>
>
>
> See you
>
> Best regards.
>
>
>
> [image: ASSINATURA DE EMAIL tech]
>
> *[image: Odoo icone2] Odoo Business Partner*
>
> Mais informações visite http://www.gigliottitech.com.br/
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/027601d5c30d%2418ca4d00%244a5ee700%24%40com.br
> <https://groups.google.com/d/msgid/django-users/027601d5c30d%2418ca4d00%244a5ee700%24%40com.br?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xjViq7tRxSHjOiAnrAuqGVZLR6ne%2B%3DqoqM09cOoR-1tcQ%40mail.gmail.com.


Re: Hello Everbody! Happy New Year

2020-01-04 Thread Desh Deepak
Can you explain details.
Some example of code...!!


Thanks in advance

On Sun, 5 Jan 2020, 00:03 Evil Kunt,  wrote:

> Hey ,
>
> For rest , if you like i can help you with i use DRF , Falcon and HUG
> mostly .
>
> For user auth , i use django standard auth library .
>
> Regards ,
> Kunt.
>
> On 4 Jan 2020 20:33, "Desh Deepak"  wrote:
>
> Wish you the same,
>
> My name is Desh Deepak from New Delhi India.
>
>
> Can you help me about  django Custom user authentication and  restAPI.
>
> Thanks in advance
>
> Thanks & Regards
> Desh Deepak
> +91 7011101001
>
>
>
>
> On Sat, 4 Jan 2020, 20:12 Murilo A. Gigliotti, <
> mur...@gigliottitech.com.br> wrote:
>
>> Hello All,
>>
>>
>>
>> Thanks for the opportunity to stay here in the group.
>>
>> Let me introduce myself.
>>
>> My name is Murilo Gigliotti, I am from Brazil and I live in São Paulo
>> city.
>>
>> I've been studying *Python + Django* since the beginning of 2019.
>>
>> Now I am able to help the community with my work.
>>
>> I have a IT company named Gigliotti Tech - Knowlegde Technologies
>> (Gigliotti Tech - Tecnologias do Conhecimento).
>>
>> The company's web site is www.gigliottitech.com.br
>>
>> Anyway, It's a very pleasure to me to participate of this group.
>>
>> If you want to talk about projects, please send an email to
>> mur...@gigliottitech.com.br
>>
>>
>>
>> PS: Next month (February 12 to 22) I will be in New York, so let me know
>> if I could meet anyone there.
>>
>>
>>
>> See you
>>
>> Best regards.
>>
>>
>>
>> [image: ASSINATURA DE EMAIL tech]
>>
>> *[image: Odoo icone2] Odoo Business Partner*
>>
>> Mais informações visite http://www.gigliottitech.com.br/
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/027601d5c30d%2418ca4d00%244a5ee700%24%40com.br
>> <https://groups.google.com/d/msgid/django-users/027601d5c30d%2418ca4d00%244a5ee700%24%40com.br?utm_medium=email_source=footer>
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJ0m4xjViq7tRxSHjOiAnrAuqGVZLR6ne%2B%3DqoqM09cOoR-1tcQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAJ0m4xjViq7tRxSHjOiAnrAuqGVZLR6ne%2B%3DqoqM09cOoR-1tcQ%40mail.gmail.com?utm_medium=email_source=footer>
> .
>
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CABCeVgxGwLt7E%3D3eBj2J7UnhxbXHZWvUKx4rGzriWmF9sS6TMg%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CABCeVgxGwLt7E%3D3eBj2J7UnhxbXHZWvUKx4rGzriWmF9sS6TMg%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xip-b5EgkJBXJ8vNpF2M5gS34mWEVyxsf--feLYLzNoYw%40mail.gmail.com.


Re: Active Open Source Project to contribute to

2020-03-11 Thread Desh Deepak
Interested
Share your project...


On Wed, Mar 11, 2020 at 10:49 PM shree hari  wrote:

> Im interested
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e1374387-b94d-4c94-b72c-64575c11652a%40googlegroups.com
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xjdsf0rtH3_6%3DY2Mh_HvM1%2BgorUo-hJkZXCm8Bxg7%3Dgww%40mail.gmail.com.


Re: How To Send Json data To Django

2020-03-13 Thread Desh Deepak
Hi,

Go to the below link:
https://youtu.be/9N6a-VLBa2I


Thanks & regards
Desh Deepak
+91 7011101001

On Fri, 13 Mar 2020 at 9:26 PM, venna venkatReddy 
wrote:

> Hi i am learing django, so i decided to do one small project on django is
> that Exam type website.
>
> I Need Help, Regrading How To Send Json data To Django
>
> when i entering the question and answers from fronend. I successfult
> stored on Local Storage in json formate, But Once click on clikc on submit
> buten its need to send to backend models,
>
> How to send to that json local storaga json data to bakend
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/7fd58db8-966a-402f-9428-f7623581d0a4%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/7fd58db8-966a-402f-9428-f7623581d0a4%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xhs8HLdMB6j_do%2BSUbcMsfHzOV_6MD6g59fAXa4necm2A%40mail.gmail.com.


Re: Need Help In My Project (URGENT)

2020-04-25 Thread Desh Deepak
Share your code

On Thu, 23 Apr 2020, 5:36 am 'raghav' via Django users, <
django-users@googlegroups.com> wrote:

>
> My name is Raghav and I am a final year student.
> I want a project for my final semester, the subject of which is the *"Courier
> Management System"*,
> I am not able to complete my project on time due to any problem. The
> problem is that I can no longer go to the institution where I was training.
> Due to lockdown.
> My computer is too old which is causing the problem.
> This community is a family that keeps on helping each other
> I hope someone helps me.
>
> Contact - shubhamnagariya1...@gmail.com()
> Email me if anyone wants to help me
>
> If anyone has a project that works like a courier management service,
> contact me its urgent.
>
> - Thank you
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/da6ec428-ceee-4a12-bd86-3354b63f035b%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xiCRkPUXOC4A8E%3DU6QegywdJxPE1yLkhAjqRpR3Kqc_Gg%40mail.gmail.com.


Re: How to pass a variable to views from a template using href ?

2020-05-19 Thread Desh Deepak
You can use slug

On Tue, 19 May 2020, 6:44 pm ratnadeep ray,  wrote:

> Hi all,
>
> My requirement is to pass a variable to the view from the template using
> href.
>
> For example, I have written the following line of code:
>
> SQL data
>
>
> So using the above line, can we send the value "SQL" clicking on the link
> of "SQL data" to the method "execute" written in the views? If not, then
> what way can I do so?
>
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/7e892826-f4c1-426d-bf9b-1a1b0b2b17be%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xiv67vWFfQGqub73TJeb2ekfCaqg%2BO3RoirSbM6ADYPpg%40mail.gmail.com.


Re: help on my quizz app

2020-08-30 Thread Desh Deepak
Query with id for next and preview object

On Sun, 30 Aug 2020, 2:45 pm ola neat,  wrote:

> hey guys, I need help, I'm working a a simple quizz app, but now i nid
> help on how to make the users navigate from 1 question to the other( using
> next button after answering the question) and including a time to ensure
> the user can't continue when the time is up, any help will be appreciated
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHLKn719VVV%3DVvGVPed8NHONTDY4KRBwr8n%2BaT8Zse-nbzdHvg%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xgjJ7NMJiBNJLXU8JH%2Bg8_kfZyeq_oqOeEFGX7rj%3DvPJA%40mail.gmail.com.


Re: How to provide background image via url() in django

2020-07-16 Thread Desh Deepak
Try it

url(" static 'some_path/image.png' ")

On Fri, 17 Jul 2020, 4:38 am sunday honesty, 
wrote:

> Hi django users, pls help me with this:
>
> In case we supply background image via the url() function as
> background-image: url("some_path/image.png")
>
> How do we do this in django static files?
> I tried
>
> url("{% static 'some_path/image.png' %}")
>
> but it didn't work, how do I do this pls?
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/c711150b-910c-4cbb-9823-48e0657fe352o%40googlegroups.com
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xjEH01K4x83%2BbaRkfn7BCPeFzL%3DurCjVu3AfoPyJBeK6w%40mail.gmail.com.


Re: DjangoProject

2020-08-11 Thread Desh Deepak
Access Granted

On Tue, 11 Aug 2020, 10:25 pm Vishnu Bhandari, 
wrote:

> Git Repo - VishnuWorld
>
> On Tue, 11 Aug, 2020, 10:24 pm Desh Deepak, 
> wrote:
>
>> Hello everyone, I want to developing a django project. Who wants to
>> collaborate to do a project and learn django share your github user id for
>> github reposetory access.
>>
>> Live on Heroku
>> http://kidszania.herokuapp.com/
>>
>>
>> Thanks
>> Desh Deepak
>> +91 7011101001
>>
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJ0m4xi70WZ9ZsL4nBU3HmNU%2BZ8TLgNgL4BwAfS7%3DhxNZ-SxNg%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAJ0m4xi70WZ9ZsL4nBU3HmNU%2BZ8TLgNgL4BwAfS7%3DhxNZ-SxNg%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CALeETX%2Bqb70rsCub66Xy5vNAMpHzzFL4XC7%2BXbhWiOYBr%2Bpi5w%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CALeETX%2Bqb70rsCub66Xy5vNAMpHzzFL4XC7%2BXbhWiOYBr%2Bpi5w%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xgmSaH8cpStQkU3pRBUcAPEFLMOP8kofgqWXY13unu_hQ%40mail.gmail.com.


DjangoProject

2020-08-11 Thread Desh Deepak
Hello everyone, I want to developing a django project. Who wants to
collaborate to do a project and learn django share your github user id for
github reposetory access.

Live on Heroku
http://kidszania.herokuapp.com/


Thanks
Desh Deepak
+91 7011101001

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xi70WZ9ZsL4nBU3HmNU%2BZ8TLgNgL4BwAfS7%3DhxNZ-SxNg%40mail.gmail.com.


Re: Project Collaboration Team

2020-06-23 Thread Desh Deepak
Interested

On Tue, 23 Jun 2020, 9:44 am Shubhanshu Arya, 
wrote:

> Hello Everyone,
> I want to make a team in which we will make some very good level projects
> together. These projects will be very helpful in our interview as well.
> Must have prior knowledge about Django/Python. We will do daily meetings
> and discuss our project and we will use Github to team collaborations . If
> someone is interested to join this team please email me on
> shubhanshuarya...@gmail.com.
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/53b14968-ae6f-428a-be58-5edd290f2487o%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xhED5x9s1RQGQPC5fzZ_46sqU3ATVeeZ3k%3DaTq1PpctaA%40mail.gmail.com.


Re: hldp on my api

2020-12-19 Thread Desh Deepak
You have missed adding the Content-Type header in the headers section. Just
set the Content-Type header to application/json and it should work.

On Sun, 20 Dec 2020, 1:37 am ola neat,  wrote:

> halo guys, i'm working api that requires user to upload image and send
> text as form input on the same endpoint, i've done all is needed but i've
> been faced wit an err, hoping anyone can help out,
> attached below is my code(serializer views) and d  err msg
> hoping anyone can 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHLKn70xJbnK0zXE9rc_Q5q8UYhp6xHCvjz3Gv7vTX5Y2-D_gQ%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xjo9-UXNpi%2Bmzs0Y_jHhg_t-DbYMWqPFRwa83Rb9im0LA%40mail.gmail.com.


Re: NameError: name 'SignUpForm' is not defined

2021-03-12 Thread Desh Deepak
Enter after line 6 write this:
from  .forms import SignUpForm

On Sat, 13 Mar 2021, 9:26 am Desh Deepak,  wrote:

> Need to import form
>
>
> Ex. From appname import formname
>
> On Sat, 13 Mar 2021, 4:10 am Noyon Barman, 
> wrote:
>
>> I can't fix it, anyone please suggest to me
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/4f9095ca-7715-4496-9072-c372434a918bn%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/4f9095ca-7715-4496-9072-c372434a918bn%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xj5NvgyDAgPzs157aw4_%2BwSNPXj%2BHGRh_XCApwV_KTbNA%40mail.gmail.com.


Re: NameError: name 'SignUpForm' is not defined

2021-03-12 Thread Desh Deepak
Need to import form


Ex. From appname import formname

On Sat, 13 Mar 2021, 4:10 am Noyon Barman, 
wrote:

> I can't fix it, anyone please suggest to me
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/4f9095ca-7715-4496-9072-c372434a918bn%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xgP9d4kWgUFX7dZYFwcU2nTpxUkL5wG_3nE61yD95zUOQ%40mail.gmail.com.


Re: Chat Application in Django

2021-03-10 Thread Desh Deepak
I also working chat application

On Thu, 11 Mar 2021, 12:21 am sakshi jain,  wrote:

> shut up I know everthing ...U rascal
>
> On Thu, Mar 11, 2021, 00:19 Kasper Laudrup  wrote:
>
>> On 10/03/2021 19.36, sakshi jain wrote:
>> > ur chat appilication in django
>> >
>>
>> If you don't understand how something works, in this case either a forum
>> like this one, the English language or basic human interaction, then
>> there's nothing wrong in asking for clarification.
>>
>> Confirming that you lack this basic understanding like you're doing now,
>> just confirms other peoples initial impression that you might simply be
>> an idiot or a troll.
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/8272c34f-a484-ee02-53c4-c7a8ba8e4291%40stacktrace.dk
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJhs3iNjFJwa6HR9M3z2mnxMOVrZTk92omzjP_QU2bhnj7Sb1Q%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xiLPNb46twPpEnwkhJrbcAMdLWTkkS9u4k4yiktMk2jwQ%40mail.gmail.com.


Re: Date Range picker

2021-02-24 Thread Desh Deepak
U can use js libraray

On Wed, 24 Feb 2021, 4:03 pm neha bhurke,  wrote:

> Hello ,
>
> I want to create a date picker in which it should contain a format of list
> which consist of today , yesterday, tomorrow ,  next week , previous week ,
> next month previous month ...
>
> How can I create this
>
> Please help me .
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/8791262b-6e5e-4ef5-92d4-ee7f74e9d3d8n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xgSxeB8y_Drs%3DWvxc8YTYcotoOe5gAB3SgG5dDb%3DYQvZA%40mail.gmail.com.


Re: Job related query

2021-02-18 Thread Desh Deepak
Interested

On Fri, 19 Feb 2021, 10:32 am neha bhurke,  wrote:

> Hello everyone,
>
> We are looking for a python Django web app developer should have the total
> knowledge about python Django and should be experienced person at least for
> 2-3 years..
> If anyone  interested …
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/c8e7ef0a-c72f-405f-94ce-00d953a77c52n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xi2FSLNEPvgyJg_bwv73C9_yZXBK%3DKaN7MVCwXSixY7uw%40mail.gmail.com.


Re: Hiii Every one

2021-07-15 Thread Desh Deepak
Azure, Aws

On Thu, 15 Jul 2021, 10:08 pm Mahendra,  wrote:

> Which is the best hosting platform for Python and Django?
>
> Mahendra Yadav
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAN-6G3wWVEF0PmxeNng8uw-ZV6eDUFdEYwcqvG3OCf-UYX76-A%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xioagaA5F9fHVgPxMM-D7ZpEaOfumsg38T_wGb3ZKWVkw%40mail.gmail.com.


Re: Job -Fullstack python expert ( Django framework)

2022-08-24 Thread Desh Deepak
I am Interested

On Wed, Aug 24, 2022, 9:02 PM Wennie Catabay 
wrote:

> I'm interested
>
> On Sat, Aug 20, 2022, 2:21 AM pcintegral@gmail.com, <
> pcintegral.pcintegr...@gmail.com> wrote:
>
>> I see many are very interested in this: Can you send resume to
>> jumezur...@lokdon.com asap if you are on expert level. I am looking for
>> experienced people from MEAAP region: Middle east, Africa and Asian pacific
>> region.
>>
>> We in fact will hire the right person after 90 days trial or probationary
>> period.Thanks.
>>
>> On Thursday, August 18, 2022 at 3:04:11 PM UTC-4 pcintegral@gmail.com
>> wrote:
>>
>>> This project is very straight to the point. We are building a micro
>>> service on top of Django framework. We currently have a virtual private
>>> cloud on DO and will like to migrate to AWS in the nearest future. This
>>> hosts our encryption SDK including authentication APIs and licensing
>>> mechanism.
>>>
>>> Our current stack is Django framework (major code in java) using python
>>> over the py4j bridge to call and run it. This consumed via API (RestFul).
>>> We recently added Springboot.
>>>
>>> What we want to accomplish:
>>> We really need the qualified person to be ready to hit the ground
>>> running with new ideas and able to train or teach other fullstack
>>> developers. We fully cloud based.
>>> 1. Design and Build a micro service with clusters to address demand with
>>> licensing of our SDK orchestrated in a way that unauthorized cannot break
>>> to use it.
>>> 2. Automate our licensing protocols as we release bearer tokens for the
>>> use of our algorithm
>>> 3. Expand the API to include other functionality with 2 other companies
>>> 4. Build a fetch request based on push from clients mobile and web
>>> application in which our encryption algo is already embedded.
>>> 5. Integrate with eth staking for challenge where the actionable
>>> parameter e.g BMI could now be shared with data brokers n a secure and
>>> privacy preserving way.
>>>
>>> If you have the skills and believe that you are a good fit don't
>>> hesitate to reach me asap.
>>> We require that you will be available online e.g skype, whatsapp and as
>>> well as in our app for message..There could be a possible long term
>>> opportunity for the right candidate.
>>>
>>> There are many interesting projects.
>>>
>>> Be certain that you are a guru and can impart knowledge to others.
>>>
>>> Reach if you are interested.
>>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/5d77de0d-b274-4ede-9f71-18037c3b6c62n%40googlegroups.com
>> 
>> .
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAGiktAnP%3DZdY%2B3Gw9%3D1VsLs4KR0NU7hBtGMWor5_1F4dEE9nbg%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xgo-z2aiWRhFbap7Acip9T7f3qFfOf_EobuqftWBuO4-g%40mail.gmail.com.


Re: Page Integration

2022-11-10 Thread Desh Deepak
https://docs.djangoproject.com/en/4.1/topics/auth/default/

On Thu, Nov 10, 2022, 9:02 PM Pooja Kumari  wrote:

> Hi.. Can anyone help me with django templates? Actually I have a
> registration page where user can signup and data will be saved in admin
> panel or database but I am not able to do that. Registration page is
> working when I hit URL but data is not saving in database. Let me know If
> anyone have idea about this type of project. I'll be very grateful for your
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHYvwbWDVFjuddPah3WUX8M9H6ojvDSjQD_mn7W6AgcT_pQsGQ%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xgOZ_hJQgrBOLzuuCrdY%3DL%3DPmm-%2BtMyfv_BTj%2BWqkBzyA%40mail.gmail.com.


Re: Freelance Django and Python work

2023-06-13 Thread Desh Deepak
Yes, i am interested

On Tue, Jun 13, 2023, 6:40 PM אורי  wrote:

> Hi,
>
> There was a small typo, you can send your email to
> jobs+django-freelan...@speedy.net and not jobs+jango-freelan...@speedy.net.
> If you already sent it to jobs+jango-freelan...@speedy.net I received it,
> don't send it again.
>
> Thanks,
> Uri Rodberg, Speedy Net.
> אורי
> u...@speedy.net
>
>
> ‪On Tue, Jun 13, 2023 at 1:29 PM ‫אורי‬‎  wrote:‬
>
>> Hi,
>>
>> I'm looking for a programmer to hire as a freelancer for Django and
>> Python work.
>>
>> - Experience with Python and Django
>> - Experience with open source
>> - Committed to the Django repository on GitHub - an advantage
>> - Committed to other open-source projects in Python - an advantage
>> - Experience with Stack Overflow -  an advantage
>> - BSc or BA in computers or science (math, physics) -  an advantage
>> - Knowledge of HTML, CSS, and JavaScript - an advantage
>> - Can issue receipts
>>
>> I need about 5 hours per month on average. Some months I might need up to
>> 15 hours per month. Some months I might not need anything. The work is
>> remote. My project is open source. I can give you a free license to
>> PyCharm. My website is at https://en.speedy.net/ and
>> https://github.com/speedy-net/speedy-net
>>
>> To apply please send one email to jobs+jango-freelan...@speedy.net, with
>> your name, your email address, where you live, your experience, how many
>> commits you committed to Django, how many commits you committed to other
>> open source projects, a link to your profile on LinkedIn, a link to your
>> profile on GitHub, a link to your profile on Stack Overflow, your diploma
>> if you have any, how much you charge per hour and in which currency (I
>> prefer USD or Euro), and if you can issue receipts. If you don't have a
>> profile on one of the above websites please mention this too.
>>
>> Thanks,
>> Uri Rodberg, Speedy Net.
>> אורי
>> u...@speedy.net
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CABD5YeFyKeqkJfmc8PAi9X-qyL9-H_PWaCr7w6Qi0Ax3u9E7XA%40mail.gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xg0PnDJvGiTqgZxGudY1LaWrM7pJsAVvtoxFtYEiuW%2BNQ%40mail.gmail.com.