Fwd: Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Parul.
-- Forwarded message -
From: Parul. 
Date: Wed, Jun 23, 2021, 11:34 PM
Subject: Error while creating an ecommerce website :PLEASE HELP!
To: 


Hi,
I am working on an ecommerce website. I am facing an error. Can anyone
please help me solve this error.
I am not able to fetch the PRODUCT_ID

1. views.py (APP-CART)
---
from django.shortcuts import render,redirect
from .models import Cart
from new_app.models import Product

# Create your views here.


def cart_home(request):

cart_obj,new_obj=Cart.objects.new_or_get(request)
products=Cart.objects.all()



return render(request,'carts/home.html',{})


def cart_update(request):
print(request.POST)
# print(dict(request.POST.items()))
# print("in func")

product_id=1
print('id below')
print(product_id) // not able to get the value of product id in
console
product_obj=Product.objects.get(id=product_id)
cart_obj,new_obj=Cart.objects.new_or_get(request)
if product_obj in cart_obj.products.all():
cart_obj.products.remove(product_obj)
else:
cart_obj.products.add(product_obj)
return redirect('home')




2. models.py  (cart)


from django.db import models
from django.conf import settings
from new_app.models import Product
from django.db.models.signals import pre_save,post_save,m2m_changed



User=settings.AUTH_USER_MODEL

class CartManager(models.Manager):
def new_or_get(self,request):
cart_id=request.session.get("cart_id",None)
# qs=self.get_queryset().filter(id=cart_id)
qs=self.get_queryset().only('products')

print(qs)
if qs.count()==1:
new_obj=False
cart_obj=qs.first()
print('cart obj below')
print(cart_obj)
if request.user.is_authenticated and cart_obj.user is None:

cart_obj.user=request.user
cart_obj.save()


else:
cart_obj=Cart.objects.new_cart(user=request.user)
new_obj=True
request.session['cart_id']=cart_obj.id
return cart_obj,new_obj

def new_cart(self,user=None):
user_obj=None
if user is not None:
if user.is_authenticated:
user_obj=user
return self.model.objects.create(user=user_obj)

class Cart(models.Model):

user=models.ForeignKey(User,null=True,blank=True,on_delete=models.CASCADE)
products=models.ManyToManyField(Product,blank=True)

subtotal=models.DecimalField(default=0.00,max_digits=100,decimal_places=2)

total=models.DecimalField(default=0.00,max_digits=100,decimal_places=2)
timestamp=models.DateTimeField(auto_now_add=True)
updated=models.DateTimeField(auto_now=True)

objects=CartManager()

def __str__(self):
return str(self.id)


def m2m_changed_cart_receiver(sender,instance,action,*args,**kwargs):
print(action)
if action=='post_add' or action=='post_remove' or action=='clear':
products=instance.products.all()
total=0
for x in products:
total += x.price
if instance.subtotal != total:
instance.subtotal=total
instance.save()
m2m_changed.connect(m2m_changed_cart_receiver,sender=Cart.products.through)


def pre_save_cart_receiver(sender,instance,*args,**kwargs):
if instance.subtotal>0:
instance.total=instance.subtotal + 10
else:
instance.total=0.00

pre_save.connect(pre_save_cart_receiver,sender=Cart)




OUTPUT IN CONSOLE:

  GETTING EMPTY DICTIONARY  INSTEAD OF GETTING PRODUCT
ID i.e. 1
id below
1
]>


So, I am unable to fetch the productc id there besides the csrf
i tried to individually print the product id.. which came as 1...(written
under"id below" in output)

Can anyone pls help me with this.




Also, adding update_cart.html
{% csrf_token
%}
  
  {% if product in cart.products.all %}
  remove
  {% else %}
  add to cart
  {% endif %}

  

-- 
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/CAHjHRFqpGEcZj6-Enq_uwZJRbKZRVwJEti9BfKBwg%2Bv%3Dkr4kjA%40mail.gmail.com.


Re: Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Parul.
Hi,
I tried to pass the id..but its not working
I observed while debugging, the try catch block is not getting
implemented... i tried to put some print statements there..but they are not
getting printed
The print statements in models.py -- new_or_get func()  are working

On Thu, Jun 24, 2021 at 12:08 AM Aadil Rashid 
wrote:

> First pass Id as an argument along with request to that particular view
> function
>
> On Thu, 24 Jun, 2021, 12:06 AM Parul.,  wrote:
>
>> Hi ,
>>
>> I am doing : product_obj=Product.objects.get(id=product_id)
>> in the cart_update function in views.py
>>
>> but when trying to print this object... i am not getting anything... is
>> this function is not working?
>>
>>
>> On Wed, Jun 23, 2021 at 11:38 PM Aadil Rashid 
>> wrote:
>>
>>> Pass I'd to the view you are you are using,
>>> And then get products thrid that I'd by simple ORM quriy
>>>
>>> Product = model name.objects.get(id=id)
>>>
>>> On Wed, 23 Jun, 2021, 11:35 PM Parul.,  wrote:
>>>
>>>> Hi,
>>>> I am working on an ecommerce website. I am facing an error. Can anyone
>>>> please help me solve this error.
>>>> I am not able to fetch the PRODUCT_ID
>>>>
>>>> 1. views.py (APP-CART)
>>>>
>>>> ---
>>>> from django.shortcuts import render,redirect
>>>> from .models import Cart
>>>> from new_app.models import Product
>>>>
>>>> # Create your views here.
>>>>
>>>>
>>>> def cart_home(request):
>>>>
>>>> cart_obj,new_obj=Cart.objects.new_or_get(request)
>>>> products=Cart.objects.all()
>>>>
>>>>
>>>>
>>>> return render(request,'carts/home.html',{})
>>>>
>>>>
>>>> def cart_update(request):
>>>> print(request.POST)
>>>> # print(dict(request.POST.items()))
>>>> # print("in func")
>>>>
>>>> product_id=1
>>>> print('id below')
>>>> print(product_id) // not able to get the value of product id in
>>>> console
>>>> product_obj=Product.objects.get(id=product_id)
>>>> cart_obj,new_obj=Cart.objects.new_or_get(request)
>>>> if product_obj in cart_obj.products.all():
>>>> cart_obj.products.remove(product_obj)
>>>> else:
>>>> cart_obj.products.add(product_obj)
>>>> return redirect('home')
>>>>
>>>>
>>>>
>>>>
>>>> 
>>>> 2. models.py  (cart)
>>>>
>>>>
>>>> from django.db import models
>>>> from django.conf import settings
>>>> from new_app.models import Product
>>>> from django.db.models.signals import pre_save,post_save,m2m_changed
>>>>
>>>>
>>>>
>>>> User=settings.AUTH_USER_MODEL
>>>>
>>>> class CartManager(models.Manager):
>>>> def new_or_get(self,request):
>>>> cart_id=request.session.get("cart_id",None)
>>>> # qs=self.get_queryset().filter(id=cart_id)
>>>> qs=self.get_queryset().only('products')
>>>>
>>>> print(qs)
>>>> if qs.count()==1:
>>>> new_obj=False
>>>> cart_obj=qs.first()
>>>> print('cart obj below')
>>>> print(cart_obj)
>>>> if request.user.is_authenticated and cart_obj.user is
>>>> None:
>>>>
>>>> cart_obj.user=request.user
>>>> cart_obj.save()
>>>>
>>>>
>>>> else:
>>>> cart_obj=Cart.objects.new_cart(user=request.user)
>>>> new_obj=True
>>>> request.session['cart_id']=cart_obj.id
>>>> return cart_obj,new_obj
>>>>
>>>> def new_cart(self,user=None):
>>>> user_obj=None
>>>> if user is not None:
>>>>

Re: Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Parul.
Hi ,

I am doing : product_obj=Product.objects.get(id=product_id)
in the cart_update function in views.py

but when trying to print this object... i am not getting anything... is
this function is not working?


On Wed, Jun 23, 2021 at 11:38 PM Aadil Rashid 
wrote:

> Pass I'd to the view you are you are using,
> And then get products thrid that I'd by simple ORM quriy
>
> Product = model name.objects.get(id=id)
>
> On Wed, 23 Jun, 2021, 11:35 PM Parul.,  wrote:
>
>> Hi,
>> I am working on an ecommerce website. I am facing an error. Can anyone
>> please help me solve this error.
>> I am not able to fetch the PRODUCT_ID
>>
>> 1. views.py (APP-CART)
>>
>> ---
>> from django.shortcuts import render,redirect
>> from .models import Cart
>> from new_app.models import Product
>>
>> # Create your views here.
>>
>>
>> def cart_home(request):
>>
>> cart_obj,new_obj=Cart.objects.new_or_get(request)
>> products=Cart.objects.all()
>>
>>
>>
>> return render(request,'carts/home.html',{})
>>
>>
>> def cart_update(request):
>> print(request.POST)
>> # print(dict(request.POST.items()))
>> # print("in func")
>>
>> product_id=1
>> print('id below')
>> print(product_id) // not able to get the value of product id in
>> console
>> product_obj=Product.objects.get(id=product_id)
>> cart_obj,new_obj=Cart.objects.new_or_get(request)
>> if product_obj in cart_obj.products.all():
>> cart_obj.products.remove(product_obj)
>> else:
>> cart_obj.products.add(product_obj)
>> return redirect('home')
>>
>>
>>
>>
>> 
>> 2. models.py  (cart)
>>
>>
>> from django.db import models
>> from django.conf import settings
>> from new_app.models import Product
>> from django.db.models.signals import pre_save,post_save,m2m_changed
>>
>>
>>
>> User=settings.AUTH_USER_MODEL
>>
>> class CartManager(models.Manager):
>> def new_or_get(self,request):
>> cart_id=request.session.get("cart_id",None)
>> # qs=self.get_queryset().filter(id=cart_id)
>> qs=self.get_queryset().only('products')
>>
>> print(qs)
>> if qs.count()==1:
>> new_obj=False
>> cart_obj=qs.first()
>> print('cart obj below')
>> print(cart_obj)
>> if request.user.is_authenticated and cart_obj.user is
>> None:
>>
>> cart_obj.user=request.user
>> cart_obj.save()
>>
>>
>> else:
>> cart_obj=Cart.objects.new_cart(user=request.user)
>> new_obj=True
>> request.session['cart_id']=cart_obj.id
>> return cart_obj,new_obj
>>
>> def new_cart(self,user=None):
>> user_obj=None
>> if user is not None:
>> if user.is_authenticated:
>> user_obj=user
>> return self.model.objects.create(user=user_obj)
>>
>> class Cart(models.Model):
>>
>> user=models.ForeignKey(User,null=True,blank=True,on_delete=models.CASCADE)
>> products=models.ManyToManyField(Product,blank=True)
>>
>> subtotal=models.DecimalField(default=0.00,max_digits=100,decimal_places=2)
>>
>>
>> total=models.DecimalField(default=0.00,max_digits=100,decimal_places=2)
>> timestamp=models.DateTimeField(auto_now_add=True)
>> updated=models.DateTimeField(auto_now=True)
>>
>> objects=CartManager()
>>
>> def __str__(self):
>> return str(self.id)
>>
>>
>> def m2m_changed_cart_receiver(sender,instance,action,*args,**kwargs):
>> print(action)
>> if action=='post_add' or action=='post_remove' or action=='clear':
>> products=instance.products.all()
>> total=0
>> for x in products:
>> total += x.price
>> if instance.subtotal != total:
>> instance.subtotal=total
>> instance.save()
>>
>> m2m_changed.connect(m2m_chan

Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Parul.
Hi,
I am working on an ecommerce website. I am facing an error. Can anyone
please help me solve this error.
I am not able to fetch the PRODUCT_ID

1. views.py (APP-CART)
---
from django.shortcuts import render,redirect
from .models import Cart
from new_app.models import Product

# Create your views here.


def cart_home(request):

cart_obj,new_obj=Cart.objects.new_or_get(request)
products=Cart.objects.all()



return render(request,'carts/home.html',{})


def cart_update(request):
print(request.POST)
# print(dict(request.POST.items()))
# print("in func")

product_id=1
print('id below')
print(product_id) // not able to get the value of product id in
console
product_obj=Product.objects.get(id=product_id)
cart_obj,new_obj=Cart.objects.new_or_get(request)
if product_obj in cart_obj.products.all():
cart_obj.products.remove(product_obj)
else:
cart_obj.products.add(product_obj)
return redirect('home')




2. models.py  (cart)


from django.db import models
from django.conf import settings
from new_app.models import Product
from django.db.models.signals import pre_save,post_save,m2m_changed



User=settings.AUTH_USER_MODEL

class CartManager(models.Manager):
def new_or_get(self,request):
cart_id=request.session.get("cart_id",None)
# qs=self.get_queryset().filter(id=cart_id)
qs=self.get_queryset().only('products')

print(qs)
if qs.count()==1:
new_obj=False
cart_obj=qs.first()
print('cart obj below')
print(cart_obj)
if request.user.is_authenticated and cart_obj.user is None:

cart_obj.user=request.user
cart_obj.save()


else:
cart_obj=Cart.objects.new_cart(user=request.user)
new_obj=True
request.session['cart_id']=cart_obj.id
return cart_obj,new_obj

def new_cart(self,user=None):
user_obj=None
if user is not None:
if user.is_authenticated:
user_obj=user
return self.model.objects.create(user=user_obj)

class Cart(models.Model):

user=models.ForeignKey(User,null=True,blank=True,on_delete=models.CASCADE)
products=models.ManyToManyField(Product,blank=True)

subtotal=models.DecimalField(default=0.00,max_digits=100,decimal_places=2)

total=models.DecimalField(default=0.00,max_digits=100,decimal_places=2)
timestamp=models.DateTimeField(auto_now_add=True)
updated=models.DateTimeField(auto_now=True)

objects=CartManager()

def __str__(self):
return str(self.id)


def m2m_changed_cart_receiver(sender,instance,action,*args,**kwargs):
print(action)
if action=='post_add' or action=='post_remove' or action=='clear':
products=instance.products.all()
total=0
for x in products:
total += x.price
if instance.subtotal != total:
instance.subtotal=total
instance.save()
m2m_changed.connect(m2m_changed_cart_receiver,sender=Cart.products.through)


def pre_save_cart_receiver(sender,instance,*args,**kwargs):
if instance.subtotal>0:
instance.total=instance.subtotal + 10
else:
instance.total=0.00

pre_save.connect(pre_save_cart_receiver,sender=Cart)




OUTPUT IN CONSOLE:

  GETTING EMPTY DICTIONARY  INSTEAD OF GETTING PRODUCT
ID i.e. 1
id below
1
]>


So, I am unable to fetch the productc id there besides the csrf
i tried to individually print the product id.. which came as 1...(written
under"id below" in output)

Can anyone pls help me with this.




Also, adding update_cart.html
{% csrf_token
%}
  
  {% if product in cart.products.all %}
  remove
  {% else %}
  add to cart
  {% endif %}

  

-- 
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/CAHjHRFpf_EfU%3DSSFFTMOeb5JkuNKL%3DuSNVtp782A2r_R-M0_DA%40mail.gmail.com.


Re: maping url

2021-02-16 Thread Parul.
Hi,
can you please provide code snapshots of where you are getting this error?

a possibility can be you are trying to iterate in a dictionary.

On Tue, Feb 16, 2021 at 12:27 PM Peter Kirieny 
wrote:

> hi guys, i cloned a project from github and then added a new app into my
> project
> now am trying to map my app's url to my project but i get this error
>
> TypeError: argument of type 'type' is not iterable
>
> anyone with any idea kindly 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/CAL8t8eqA0%2B_vumUtLX%3Dy8KhR7Cb2ZCMOxfs-HrRoYnwwR5QP-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/CAHjHRFrC-sp363cXUsW%2Bfqm0b8fWG-umbxj2DGEBGfTg1LO06w%40mail.gmail.com.


Fwd: attempt to write a readonly database

2020-12-23 Thread Parul.
Can anyone help with this?


OperationalError at /users/
Request Method: POST
Request URL: http://localhost:8000/users/
Django Version: 3.0.3
Exception Type: OperationalError
Exception Value:

attempt to write a readonly database

Exception Location:
C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
in execute, line 396
Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
Python Version: 3.8.5
Python Path:

['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']

Server time: Wed, 23 Dec 2020 16:14:46 +



->>> Also, i checked the properties in db.sqlite3, all the
permissions are checked...write permission also
can anyone 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/CAHjHRFquxJoTDDxHkokqtm7fHY4R6jCF_kt1Td%2BMs-PN-qw_eg%40mail.gmail.com.


attempt to write a readonly database

2020-12-23 Thread Parul.
OperationalError at /users/
Request Method: POST
Request URL: http://localhost:8000/users/
Django Version: 3.0.3
Exception Type: OperationalError
Exception Value:

attempt to write a readonly database

Exception Location:
C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
in execute, line 396
Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
Python Version: 3.8.5
Python Path:

['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']

Server time: Wed, 23 Dec 2020 16:14:46 +



->>> Also, i checked the properties in db.sqlite3, all the
permissions are checked...write permission also
can anyone 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/CAHjHRFoBMq5VCKnBPiCEgSrLvZ7P0vvwd5Ah-_cDOv8kX1oKhg%40mail.gmail.com.


Re: 127.0.0.1 refused to connect.

2020-12-21 Thread Parul.
Hi,

The problem got resolved. I just ran the environment again
And used python manage.py runserver
It worked. Ran on localhost:8000

May be the port which I was using wasn't free earlier.

Thanks for all the solutions.

On Mon, Dec 21, 2020, 3:01 PM Anirudh Jain 
wrote:

> Please send picture of your cmd/terminal where you are running the
> localserver
>
> On Fri, 18 Dec 2020, 21:59 Parul.,  wrote:
>
>> i am not able to connect , i tried to use 0.0.0.0:8000 , 0.0.0.0:8080 as
>> well, still getting same error.
>> used 127.0.0.1 with ports 8000 and 8080 still getting error
>> i have put '*' in ALLOWED_HOSTS
>>
>> --
>> 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/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com?utm_medium=email&utm_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/CAC3mK7d6-Zyop2q09MjKB1G9KE_oN2%3DKpr0jKafmLFHdqni9Ww%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAC3mK7d6-Zyop2q09MjKB1G9KE_oN2%3DKpr0jKafmLFHdqni9Ww%40mail.gmail.com?utm_medium=email&utm_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/CAHjHRFouQ0rGr376CFWa_aZKEV-FHMkout6m%3DBSzfTctP3wtQw%40mail.gmail.com.


Re: 127.0.0.1 refused to connect.

2020-12-20 Thread Parul.
Hy ,
I added the code but it's still not working

On Sun, Dec 20, 2020, 10:48 PM pycode  wrote:

> Add views.py with
> from django.http import HttpResponse
>
> def homepage(request):
>return HttpResponse ('hello world')
>
> urls.py
>
> from . import views
>
> urlpatterns = [
>path('/', views.homepage)
> ]
>
> On Fri, Dec 18, 2020, 9:59 PM Parul.  wrote:
>
>> i am not able to connect , i tried to use 0.0.0.0:8000 , 0.0.0.0:8080 as
>> well, still getting same error.
>> used 127.0.0.1 with ports 8000 and 8080 still getting error
>> i have put '*' in ALLOWED_HOSTS
>>
>> --
>> 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/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com?utm_medium=email&utm_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/CABFQhy5W1SX-1WuP%3DUSy%2BU3T-bg3S1zRKnZWvk%2Bf4P7H27ty%2Bw%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CABFQhy5W1SX-1WuP%3DUSy%2BU3T-bg3S1zRKnZWvk%2Bf4P7H27ty%2Bw%40mail.gmail.com?utm_medium=email&utm_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/CAHjHRFoApxRfQRVDwObOwabVTxe54NLQkhyM_pG4HZKt4nZbHw%40mail.gmail.com.


Re: 127.0.0.1 refused to connect.

2020-12-20 Thread Parul.
Hy,
I am not able to indentify the exact problem here. I tried various
combinations like using only
Python manage.py runserver
Then
Python manage.py runserver 8080 /8000

Still getting the error message as
"Refused to connect "


This has really become an obstacle for me as I am not able to continue
further.
I tried all the above suggestions except uninstalling django... considering
that as my last option ..
Please help


On Sat, Dec 19, 2020, 10:12 AM Frank Chukka  wrote:

> try running the server without including the ip or port,just run "python
> manage.py runserver" only.
>
> The way I tend to solve problems like this is I reduce the search space by
> ruling out what is obviously not the issue(e.g I don't think you have to
> reinstall your os or that it has anything to do with https since you're
> running locally) next I look at the error message(especially the last line
> in cmd) then I do a little bit of Googling.just keep ruling out what didn't
> work eventually you will arrive at d solution.for example,you can startup a
> new project in a virtual environment n run the server of the new project,if
> you don't get the error again you can be rest assured the error has to do
> with the specific project you're working but if you do then the next
> suspect should probably be your os.since the server is not running at all
> that rules out the Web browser.
>
> Just be patient,chop it off bit by bit and you will eventually get
> there.best of luck
> On 18 Dec 2020 7:11 pm, "Parul."  wrote:
>
>> I am using the command python manage.py runserver
>> But it is not running the servers
>> I tried localhost with 8000 and 8080 also
>> The tried 0.0.0.0:8000 and with 8080
>>
>>
>> I am not running any other servers.
>>
>> While checking the ip4 in cmd...it's showing 192.168.1.11 tried python
>> manage.py runserver with this also but didn't work.
>>
>> On Fri, Dec 18, 2020, 11:27 PM Akanimoh Osutuk 
>> wrote:
>>
>>> The port is probably being used by another app. Are u running other
>>> development servers?
>>>
>>> On Fri, 18 Dec 2020, 18:34 Parul.,  wrote:
>>>
>>>> This is the error which I am getting.
>>>>
>>>> On Fri, Dec 18, 2020, 10:59 PM Akanimoh Osutuk 
>>>> wrote:
>>>>
>>>>> What errors are you getting?
>>>>>
>>>>> On Fri, 18 Dec 2020, 17:28 Parul.,  wrote:
>>>>>
>>>>>> i am not able to connect , i tried to use 0.0.0.0:8000 , 0.0.0.0:8080
>>>>>> as well, still getting same error.
>>>>>> used 127.0.0.1 with ports 8000 and 8080 still getting error
>>>>>> i have put '*' in ALLOWED_HOSTS
>>>>>>
>>>>>> --
>>>>>> 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/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com
>>>>>> <https://groups.google.com/d/msgid/django-users/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com?utm_medium=email&utm_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/CADA0syjmtd4q9Lfx6dzqoZTiK-FQ8zz6V22ArB-5HdzUB7azkw%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/django-users/CADA0syjmtd4q9Lfx6dzqoZTiK-FQ8zz6V22ArB-5HdzUB7azkw%40mail.gmail.com?utm_medium=email&utm_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/djang

Re: Django/python free Training

2020-12-19 Thread Parul.
Interested

On Sat, Dec 19, 2020, 10:37 PM ule...@gmail.com  wrote:

> i'm interested.
>
> Op vrijdag 18 december 2020 om 15:27:14 UTC+1 schreef rampage...@gmail.com
> :
>
>> Hi guys,
>>
>> I am manucho from Kenya and am good developer with django and python and
>> i want to teach people what i know .I want to start a youtube channel for
>> Django and python based tutorials ..If intrested you can message me here on
>> concepts and projects you want covered and i will start immediately.
>>
>> Regards,
>> Manucho.
>>
> --
> 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/b2a0cba0-4fe9-4b90-b192-2c3029ab183bn%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/CAHjHRFofFdLrbALF%3DnBYKT5eNVGL13eA7YXHKgDxKW9Q3bZL%2Bg%40mail.gmail.com.


Re: 127.0.0.1 refused to connect.

2020-12-18 Thread Parul.
I am using the command python manage.py runserver
But it is not running the servers
I tried localhost with 8000 and 8080 also
The tried 0.0.0.0:8000 and with 8080


I am not running any other servers.

While checking the ip4 in cmd...it's showing 192.168.1.11 tried python
manage.py runserver with this also but didn't work.

On Fri, Dec 18, 2020, 11:27 PM Akanimoh Osutuk  wrote:

> The port is probably being used by another app. Are u running other
> development servers?
>
> On Fri, 18 Dec 2020, 18:34 Parul.,  wrote:
>
>> This is the error which I am getting.
>>
>> On Fri, Dec 18, 2020, 10:59 PM Akanimoh Osutuk 
>> wrote:
>>
>>> What errors are you getting?
>>>
>>> On Fri, 18 Dec 2020, 17:28 Parul.,  wrote:
>>>
>>>> i am not able to connect , i tried to use 0.0.0.0:8000 , 0.0.0.0:8080
>>>> as well, still getting same error.
>>>> used 127.0.0.1 with ports 8000 and 8080 still getting error
>>>> i have put '*' in ALLOWED_HOSTS
>>>>
>>>> --
>>>> 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/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/django-users/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com?utm_medium=email&utm_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/CADA0syjmtd4q9Lfx6dzqoZTiK-FQ8zz6V22ArB-5HdzUB7azkw%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/django-users/CADA0syjmtd4q9Lfx6dzqoZTiK-FQ8zz6V22ArB-5HdzUB7azkw%40mail.gmail.com?utm_medium=email&utm_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/CAHjHRFo2GOfxpcDbJJZ1LHLYUHRoguAuStvwVW0h%2Bzw2AuxvUw%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAHjHRFo2GOfxpcDbJJZ1LHLYUHRoguAuStvwVW0h%2Bzw2AuxvUw%40mail.gmail.com?utm_medium=email&utm_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/CADA0sygCesoKDxeJxYTY%3DN61VG50ViW5bj%2Bq2nVxwvu6qYrfpQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CADA0sygCesoKDxeJxYTY%3DN61VG50ViW5bj%2Bq2nVxwvu6qYrfpQ%40mail.gmail.com?utm_medium=email&utm_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/CAHjHRFo%3DiW576Jyxz234HdmfxDb8X7qR8NF-sOp6%3DZv39eeo3g%40mail.gmail.com.


Re: This site can’t be reached 127.0.0.1 refused to connect.

2020-12-18 Thread Parul.
I tried ALLOWED_HOSTS['*']
Still not working

On Fri, Dec 18, 2020, 9:59 PM Parul.  wrote:

> Hi,
> I am also facing this issue
> tried   I had to add 127.0.0.1 to ALLOWED_USERS in settings.py but still
> issue not resolved, also tried '*' in ALLOWED_HOSTS...
> used 0.0.0.0:8000/8080 as well...still facing that issue
> can anybody please help
>
> On Friday, June 8, 2018 at 7:04:58 PM UTC+5:30 Илья Барков wrote:
>
>> I had a similar problem in Firefox, in other browsers everything worked
>> well. Cleared the cache and cookies!
>>
>> https://support.mozilla.org/en-US/kb/websites-dont-load-troubleshoot-and-fix-errors#w_the-problem-only-happens-with-certain-websites
>>
>> 2018-06-06 4:33 GMT+03:00 James Farris :
>>
>>> What’s the actual error?
>>>
>>> Did you mean ALLOWED_HOSTS? If so you can just add:
>>> ALLOWED_HOSTS=[‘*’]
>>>
>> On Tue, Jun 5, 2018 at 12:55 PM Jamie Roberts 
>>> wrote:
>>>
>> Hi,
>>>>
>>>> This is from memory and may not be your problem but ... I had to add
>>>> 127.0.0.1 to ALLOWED_USERS in settings.py
>>>>
>>>> Sent from my iPhone
>>>>
>>>
>>>> On 5 Jun 2018, at 16:38, Avitab Ayan Sarmah  wrote:
>>>>
>>>> While going through the turolal 7 of the django project, couldn't
>>>> connect to the url.Please comment why my local host refused to connect
>>>>
>>>> --
>>>> 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...@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/e948142e-163f-4a82-bc91-46c16c292c5d%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/django-users/e948142e-163f-4a82-bc91-46c16c292c5d%40googlegroups.com?utm_medium=email&utm_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...@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/93BADF4F-E86D-47B7-9034-1D61408850D6%40gmail.com
>>>> <https://groups.google.com/d/msgid/django-users/93BADF4F-E86D-47B7-9034-1D61408850D6%40gmail.com?utm_medium=email&utm_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...@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/CAE-E-_0fGD-7a%3DY4w-%2BjvR%3DZ3Zj6QdyRmZgc9PDWjXuaW_gX2A%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/django-users/CAE-E-_0fGD-7a%3DY4w-%2BjvR%3DZ3Zj6QdyRmZgc9PDWjXuaW_gX2A%40mail.gmail.com?utm_medium=email&utm_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/53a13c9f-3865-46c0-99c1-d2957ed90118n%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/53a13c9f-3865-46c0-99c1-d2957ed90118n%40googlegroups.com?utm_medium=email&utm_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/CAHjHRFq-ErZU%3DqDK_pJa%3DhFd3S10V3PiURoL8mvOHU8rGwA%2Bjg%40mail.gmail.com.


Re: Django/python free Training

2020-12-18 Thread Parul.
Interested
I am a beginner in django , it will be really useful.


On Fri, Dec 18, 2020, 9:51 PM Sujayeendra G 
wrote:

> Hi Manucho,
>
> I’m interested to subscribe for your channel.
> I have a concept of building Lead Management in Python/Django. If you can
> able to teach CRM related course. It will be really useful for many of us.
>
> Thank you
> Regards
> Sujay
>
> Sent from Sujay’s iPhone
>
> On 18-Dec-2020, at 8:48 PM, yashwanth balanagu <
> balanaguyashwa...@gmail.com> wrote:
>
> 
> Interested
>
> On Fri, Dec 18, 2020 at 8:00 PM Parvez Khan Pathan <
> iamparvezkha...@gmail.com> wrote:
>
>> I'm interested
>>
>>
>> On Fri, 18 Dec 2020, 7:57 pm Python Class, 
>> wrote:
>>
>>> Hi guys,
>>>
>>> I am manucho from Kenya and am good developer with django and python and
>>> i want to teach people what i know .I want to start a youtube channel for
>>> Django and python based tutorials ..If intrested you can message me here on
>>> concepts and projects you want covered and i will start immediately.
>>>
>>> Regards,
>>> Manucho.
>>>
>>> --
>>> 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/5c715780-23c4-4d31-9219-a1e7b92c14f1n%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/CADaFQ_%2BQQWj5Scj4pfw%3D5774ewucePhTHFR3e1btEOQeFpFPVQ%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/CAM6tB-Dck2pnQ-FE5FuJU1H8NcjmxqcSkV95H38WikX0a7YMuw%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/17C965F9-2B55-4D2E-87A2-2B76FB243C74%40gmail.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/CAHjHRFpjs65bUaspXpLifAg%3DJJ0m3DBimELoFRDgodKs_jcQvA%40mail.gmail.com.


127.0.0.1 refused to connect.

2020-12-18 Thread Parul.
i am not able to connect , i tried to use 0.0.0.0:8000 , 0.0.0.0:8080 as 
well, still getting same error. 
used 127.0.0.1 with ports 8000 and 8080 still getting error 
i have put '*' in ALLOWED_HOSTS

-- 
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/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com.


Re: This site can’t be reached 127.0.0.1 refused to connect.

2020-12-18 Thread Parul.
Hi,
I am also facing this issue
tried   I had to add 127.0.0.1 to ALLOWED_USERS in settings.py but still 
issue not resolved, also tried '*' in ALLOWED_HOSTS... 
used 0.0.0.0:8000/8080 as well...still facing that issue
can anybody please help

On Friday, June 8, 2018 at 7:04:58 PM UTC+5:30 Илья Барков wrote:

> I had a similar problem in Firefox, in other browsers everything worked 
> well. Cleared the cache and cookies!
>
> https://support.mozilla.org/en-US/kb/websites-dont-load-troubleshoot-and-fix-errors#w_the-problem-only-happens-with-certain-websites
>
> 2018-06-06 4:33 GMT+03:00 James Farris :
>
>> What’s the actual error? 
>>
>> Did you mean ALLOWED_HOSTS? If so you can just add:
>> ALLOWED_HOSTS=[‘*’]
>>
> On Tue, Jun 5, 2018 at 12:55 PM Jamie Roberts  
>> wrote:
>>
> Hi,
>>>
>>> This is from memory and may not be your problem but ... I had to add 
>>> 127.0.0.1 to ALLOWED_USERS in settings.py
>>>
>>> Sent from my iPhone
>>>
>>
>>> On 5 Jun 2018, at 16:38, Avitab Ayan Sarmah  wrote:
>>>
>>> While going through the turolal 7 of the django project, couldn't 
>>> connect to the url.Please comment why my local host refused to connect
>>>
>>> -- 
>>> 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...@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/e948142e-163f-4a82-bc91-46c16c292c5d%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...@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/93BADF4F-E86D-47B7-9034-1D61408850D6%40gmail.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...@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/CAE-E-_0fGD-7a%3DY4w-%2BjvR%3DZ3Zj6QdyRmZgc9PDWjXuaW_gX2A%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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/53a13c9f-3865-46c0-99c1-d2957ed90118n%40googlegroups.com.


Job Opportunity with Firefly e-Ventures

2010-09-09 Thread parul gupta
Firefly e-Ventures <http://www.htmedia.in/RightListing.aspx?Page=Page-
HTMedia-Internet>`__ (Gurgaon, India)


**Job Description**:

Person should have worked on Python/ Django, MYSQL, Javascript, XMS,
JSON

**Open Source Developer**

*Maintain and enhance existing code and database schemas.
*Mentor and advise team members
*Estimate tasks required to complete various programming projects
including time and resource required
*Experience in Web development
*MUST have worked on Python/ Django, MYSQL, Javascript, XMS, JSON
*Knowledge of MYSQL, JASCRIPT, XMS, JSON will be a plus

**Firefly e-Ventures Ltd., a 100% HT Media subsidiary, focusses on
creating and building brands and businesses in the Internet media
space. Firefly aims to combine HT Media’s 84-year old legacy as one of
India’s largest and most respected names in the media industry, with
the innovation and energy that characterize the Internet space.
Compelling product ideas, creative use of design and intuitive user
interface, backed by a knowledgeable sales force and customer service
are the hallmarks of Firefly products. With brands like
Hindustantimes.com, Livemint.com, Desimartini.com and Shine.com in its
portfolio, Firefly promises to be an exciting addition to the HT Media
family.**

* **Contact**: Parul Gupta,  Senior Executive
* **E-mail contact**: parul.gu...@hindustantimes.com,
parul85gu...@gmail.com
* **Other Contact Info**: 0124-3954805, 9717148584
* **Web**: http://www.htmedia.in/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.