Re: please help me to solve

2022-07-26 Thread Chelsea Fan
thanks bro On Wed, Jul 27, 2022 at 7:36 AM Abdul Qoyyuum wrote: > This is a Django group. I don't know how its implemented in Android but > for your use case, you will need to learn Socket programming. Other than > that, I can't help you. Sorry. > > On Tue, Jul 26, 2022 at 6:55 PM Chelsea Fan

Re: Invitation: PYTHON SESSION @ Sat Jul 16, 2022 8pm - 8:30pm (IST) (Django users)

2022-07-26 Thread Satyajit Barik
Hey Pythonian & Djangoian, I am delighted to invite you on behalf of python & django to become a member today in WhatsApp group. Here you can join in our WhatsApp group using below link https://chat.whatsapp.com/Bq2jcxLJVG50v9Wbkvz6Vy

Re: please help me to solve

2022-07-26 Thread Abdul Qoyyuum
This is a Django group. I don't know how its implemented in Android but for your use case, you will need to learn Socket programming. Other than that, I can't help you. Sorry. On Tue, Jul 26, 2022 at 6:55 PM Chelsea Fan wrote: > Hello, such a question, we plan to implement an application for

Re: Google Authentication code

2022-07-26 Thread Victor Dickson
If I am clear about your question, then django-allauth should help you achieve that. NB: Template customization can be a drag when you just getting started. On Tuesday, 26 July 2022 at 02:11:31 UTC Ryan Nowakowski wrote: > Your question is a little unclear but I'm assuming that you are trying

Re: Invitation: PYTHON SESSION @ Sat Jul 16, 2022 8pm - 8:30pm (IST) (Django users)

2022-07-26 Thread government jobsalert
is the session still available? you can share contact at governmentjobsalert.in -- 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

Casting a variable as array in a query

2022-07-26 Thread Sencer Hamarat
I'm having a problem with this query: I believe, Q(bundle__contains=OuterRef("book_id")) part of the query is expecting an array instead of single value. I'm getting this error: ProgrammingError: operator does not exist: jsonb @> bigint LINE 1: ...lisher"."book_id") OR U0."bundle" @>

Re: Pass or refer parent query value into subquery

2022-07-26 Thread Ross Meredith
Sorry I haven't used the JSONField myself before. On Tue, Jul 26, 2022 at 5:01 PM Sencer Hamarat wrote: > Thanks Ross, > Very appreciated. > That's what I need. > > I'm also having a problem with this query after I implemented the solution: > > I believe, >

Become Django member in WhatsApp group

2022-07-26 Thread Satyajit Barik
Dear Pythonian & Djangoian, I am delighted to invite you on behalf of python & django to become a free member today in WhatsApp group. Here you can join in our WhatsApp group using below link https://chat.whatsapp.com/Bq2jcxLJVG50v9Wbkvz6Vy

Re: Blog application with django

2022-07-26 Thread Lakshyaraj Dash
I can do the backend part. If you need bootstrap in frontend then tell me. But I can build a minimal version of the blog... On Tue, Jul 26, 2022, 21:03 MAHESH KUMAR wrote: > Hi all > >

Re: Blog application with django

2022-07-26 Thread Lakshyaraj Dash
I can help you but I need some time for that. Is there any deadline? Because it may take 1 week because I'm doing my studies now but you can checkout my project at the following urls. GitHub Link https://www.github.com/codewithlaksh Discussion website (temporarily deployed to heroku)

Re: Blog application with django

2022-07-26 Thread MAHESH KUMAR
i try to your number but iam not able to contact On Tue, Jul 26, 2022 at 9:21 PM Ammar Mohammed wrote: > Hi > I can help you with that > Please contact me in whatsapp : > httpa://wa.me/249113075979 > > Regards > Ammar Mohammed > On 26 Jul 2022 17:33, "MAHESH KUMAR" wrote: > >> Hi all >> >>

Re: Pass or refer parent query value into subquery

2022-07-26 Thread Sencer Hamarat
Thanks Ross, Very appreciated. That's what I need. I'm also having a problem with this query after I implemented the solution: I believe, Q(bundle__contains=OuterRef("book_id")) part of the query is expecting an array instead of direct value. I'm getting this error: ProgrammingError: operator

Re: Blog application with django

2022-07-26 Thread Ammar Mohammed
Hi I can help you with that Please contact me in whatsapp : httpa://wa.me/249113075979 Regards Ammar Mohammed On 26 Jul 2022 17:33, "MAHESH KUMAR" wrote: > Hi all > https://www.health.harvard.edu/mind-and-mood/relaxation- > techniques-breath-control-helps-quell-errant-stress-response > > I want

Re: Blog application with django

2022-07-26 Thread Ross Meredith
Lol. Ok, well, yes, django can be used to create a blog. But you can't really just send an email around saying you want this blog - it doesn't really work like that. Sounds like you need to learn how to use django. There are countless tutorials online. Many of them probably teach you how to

Re: Blog application with django

2022-07-26 Thread MAHESH KUMAR
click above link in mail i want that type of Blog application On Tue, Jul 26, 2022 at 9:04 PM Ross Meredith wrote: > Sorry it's not clear what you are asking. > > On Tue, Jul 26, 2022 at 4:33 PM MAHESH KUMAR > wrote: > >> Hi all >> >>

Re: Blog application with django

2022-07-26 Thread Ross Meredith
Sorry it's not clear what you are asking. On Tue, Jul 26, 2022 at 4:33 PM MAHESH KUMAR wrote: > Hi all > > https://www.health.harvard.edu/mind-and-mood/relaxation-techniques-breath-control-helps-quell-errant-stress-response > > I want this type blog application please help me anybody coding

Re: Pass or refer parent query value into subquery

2022-07-26 Thread Ross Meredith
https://docs.djangoproject.com/en/4.0/ref/models/expressions/#django.db.models.OuterRef On Tue, Jul 26, 2022 at 4:27 PM Sencer Hamarat wrote: > Hi, > > I need to pass the parent query book_id value into the subquery. > Here is the model and the current state of the query I reached. > > class

Blog application with django

2022-07-26 Thread MAHESH KUMAR
Hi all https://www.health.harvard.edu/mind-and-mood/relaxation-techniques-breath-control-helps-quell-errant-stress-response I want this type blog application please help me anybody coding part please Thanks & Regards -- You received this message because you are subscribed to the Google

Pass or refer parent query value into subquery

2022-07-26 Thread Sencer Hamarat
Hi, I need to pass the parent query book_id value into the subquery. Here is the model and the current state of the query I reached. class Publisher(models.Model): book = models.ForeignKey(Book) bundle = models.JSONField() current_sales_count_query = Publisher.objects.filter(

please help me to solve

2022-07-26 Thread Chelsea Fan
Hello, such a question, we plan to implement an application for Android, for a TV and for a phone, it will be an application with the broadcast of different channels, you will need to stream somehow, i.e. there is no direct access. which technologies I 'v to use for it? -- You received this