Re: Automatic nested serialization for OneToOneField

2024-01-23 Thread Osama imran
Hello everyone If anyone looking for expert python backend developer. I am available for full time. On Tue, Jan 23, 2024, 8:17 PM Samuele Bonini wrote: > I came across some behavior that doesn't quite look right to me, and could > possibly be a bug in the way Django REST treats automatic deep >

Re: django

2023-07-03 Thread Osama imran
I am full stack mobile and web developer with python. Working in this industry for last 5 years. On Mon, Jul 3, 2023, 5:31 PM #Shrddhu wrote: > Yes I am interested. I have knowledge of python, django > > On Mon, Jul 3, 2023, 5:47 PM Amirmahdi Tafreshi > wrote: > >> Definitely yes. >> "Don't

Re: Blog application with django

2022-07-26 Thread Osama imran
I can help if this is paid On Tue, Jul 26, 2022, 8:34 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 with django please help me anybody in > coding

Re: How to make my own model authentication and authorizations in Django Rest Framework

2020-10-01 Thread Osama Imran
; many instances there are many answers to your questions. > > Here's a link to the DRF docs for authentication: > https://www.django-rest-framework.org/tutorial/4-authentication-and-permissions/ > > ~Carl > > On Wed, Sep 30, 2020 at 2:45 PM Osama Imran wrote: > >> Hello A

How to make my own model authentication and authorizations in Django Rest Framework

2020-09-30 Thread Osama Imran
Hello All, I am new to Django rest frame work and my questions is how I can apply Authentication and Authorizations to any model for API view which I have developed from scratch and what is the best way to implement these concepts. please help. Thank you -- You received this message

Re: Need help in project

2020-09-20 Thread Osama imran
Hello All I am a software engineer with 4 years of experience if anyone wants project and product development. Please contact me. osamaimra...@gmail.com On Sun, 20 Sep 2020, 2:45 pm Ashutosh Mishra, wrote: > Can you please tell me the flow,I. Am a beginner in def. > > On Sun 20 Sep, 2020, 15:11

guideline regarding making Django API with Django Channels and websocket

2020-08-03 Thread Osama Imran
Hello everyone I want to make messenger API in which user can create groups add people and one to one chat and invite people using Django channels and web socket please suggest me god tutorial Thanks in Advance ! -- You received this message because you are subscribed to the Google Groups

Re: Looking For Django Developer for 2-3months(paid accordingly)

2020-07-18 Thread Osama imran
Message me on Skype please Osamaimran25 is my Skype ID On Sat, 18 Jul 2020, 10:56 am Kushal Neupane, wrote: > Interested to work with you. > > On Sat, Jul 18, 2020, 11:40 Osama imran wrote: > >> Hi i am a Django developer with 4 year's of experience and have good >>

Re: Looking For Django Developer for 2-3months(paid accordingly)

2020-07-17 Thread Osama imran
Hi i am a Django developer with 4 year's of experience and have good experience on skills you have mentioned. Please message me for further details. My Skype is osamaimran25 Thanks and Regards Osama On Sat, 18 Jul 2020, 4:05 am Chaitanya Sai, wrote: > Hi Djangonauts, > I am looking for Django

Re: API for order taking, editing and deleting in waiter applicattion and sending order items in the chef application with django web application

2020-04-04 Thread Osama imran
Is it paid task? On Sat, 4 Apr 2020, 6:11 pm naveen Kumar, wrote: > You can go through DRF > Google it you can find the docs where you can follow step by step to build > the API > > On Sat, 4 Apr 2020, 5:49 pm Kushal Neupane, wrote: > >> I am working with resturant management system. i

how to update and create when we have three nested fields coming out from 3 tables/models

2019-06-24 Thread Osama imran
model.py from django.db import models # Create your models here. class Subject(models.Model): subject_name = models.CharField('Subject',max_length=20) def __str__(self): return self.subject_name class Person(models.Model): name = models.CharField(max_length=50) age =