I am Interested.
+256 787320738

On Sat, Feb 24, 2024, 4:01 PM <[email protected]> wrote:

> [email protected]
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/django-users/topics>
>  Google
> Groups
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email/#!overview>
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email/#!overview>
> Topic digest
> View all topics
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/django-users/topics>
>
>    - Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging
>    Project! <#m_1945082586141920503_group_thread_0> - 13 Updates
>    - Data model design questio: graph in database
>    <#m_1945082586141920503_group_thread_1> - 1 Update
>
> Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!
> <http://groups.google.com/group/django-users/t/4c27c87e899e0fe3?utm_source=digest&utm_medium=email>
> agoume koufana stephane <[email protected]>: Feb 23 01:49PM +0100
>
> Hello I'm interested ,
> My number : +33 646523241 .
> Available on whatsapp and Telegram .
> Regards,
>
>
>
>
> *-----------------------------------------------------------------------------------------------------------------------*
> *software ingeneer ,*
> *interested by enterprise architecture and social entrepreneurship*
> *Developpeur web & mobile Full stack | CDO ~#one day *
>
> *skype: stephane.agoume1*
> *mail : [email protected] <[email protected]>*
> *tel : +33 646523241*
>
>
> Le dim. 18 févr. 2024 à 17:48, SURAJ TIWARI <[email protected]> a
> écrit :
>
> fady ghalayiny <[email protected]>: Feb 23 03:47PM +0200
>
> Interested where is the link to join the group?
>
> On Wed, Feb 21, 2024, 9:42 PM Najeeb Mansur Sayaya <[email protected]>
> wrote:
>
> Zeeshan Iqbal <[email protected]>: Feb 23 08:58AM -0800
>
> Hi,
> Thanks for giving such a great opportunity. Consider adding me in your
> team. I would love to learn this skill for bulk messaging.
>
> Regard,
>
> Zeeshan Iqbal
>
> On Sunday, February 18, 2024 at 9:48:37 PM UTC+5 SURAJ TIWARI wrote:
>
> Sekou Dynasty <[email protected]>: Feb 23 06:18PM +0100
>
> Hi,
>
> Thank you for such a wonderful opportunity. And would it be possible to add
> +234 815 738 8907?
>
> I do appreciate your time.
>
> On Fri, 23 Feb 2024 at 18:06, Zeeshan Iqbal <[email protected]
> >
> wrote:
>
> Francis Akabo <[email protected]>: Feb 23 05:47PM
>
> I am interested in this project. Kindly get me started.
>
> Regards.
>
> talk fun <[email protected]>: Feb 23 11:42PM +0530
>
> Hi django users
> My dear friends,
> Can anyone help to create django food ordering website
> It is assessment given by company
> Kindly any one help
>
> On Fri, 23 Feb, 2024, 11:18 pm Francis Akabo, <[email protected]>
> wrote:
>
> talk fun <[email protected]>: Feb 23 11:43PM +0530
>
> Hi i need help to create django food ordering website
> It is assessment to complete
> Kindly need your help
>
> Sang <[email protected]>: Feb 23 11:50PM +0530
>
> I can help you with building food ordering web app in django. Catch me up
> at [email protected]
>
> Salaudeen Ridwan <[email protected]>: Feb 23 07:29PM +0100
>
> I am interested
>
> kabika Dieumerci <[email protected]>: Feb 23 07:44PM +0200
>
> Hi, add : +25766320871
>
> Mwesigwa Joshua <[email protected]>: Feb 23 08:26PM +0300
>
> Thanks alot for your invitation to this project. Am very excited to express
> my interest in working with you so as to familiarize myself with the core
> workarounds of the framework. Please consider me on +256762511280. Thank
> you
>
> Benjamin Nwoke <[email protected]>: Feb 23 06:52PM +0100
>
> I'm interested, I wish to have the details
>
> Lakhjeet Samra <[email protected]>: Feb 24 09:09AM
>
> Hi,
>
> I am interested to join django developers team. I want to know how to
> import calendar in Django project, so my users can add their future events.
>
>
> Lakhjeet
>
> Back to top <#m_1945082586141920503_digest_top>
> Data model design questio: graph in database
> <http://groups.google.com/group/django-users/t/50554d2dab42646b?utm_source=digest&utm_medium=email>
> Sébastien Hinderer <[email protected]>: Feb 23 09:20PM
> +0100
>
> Dear all,
>
> Using the mailing list rather than the forum because, like many visually
> impaired people, I find mailing lists way easier to use than forums, I
> hope the list is still active.
>
> I need to store in database and manipulate graphs of which both
> vertices and edges can each be of several types.
>
> At the moment I am modelling this as follows:
>
> class Vertex(models.Model):
> pass
>
> class Vertex_type_1(Vertex):
> # Data specific to vertices of type 1
> ...
>
> class Vertex_type_2(Vertex):
> # Data specific to vertices of type 2
> ...
>
> class Edge(models.Model):
> src = models.ForeignKey(Vertex,
> on_delete=models.CASCADE, related_name="+")
> dst = models.ForeignKey(Vertex,
> on_delete=models.CASCADE, related_name="+")
> class Meta:
> unique_together = ['src', 'dst']
>
> class Edge_type_1(Edge):
> # Data specific to edges of type 1
> ...
>
> class Edge_type_2(Edge):
> # Data specific to edges of type 2
> ...
>
> I will have to wwite algorithms that work at the graph level, e.g.
> to find paths. However, once a path has been found, at some point it
> will become necessary to see which types of vertices and edges it is
> that are involved in the path that has been found and I am wondering how
> I will do that.
>
> More concretely, with the current model, if an edge is found,
> does Django have a way to also find out which type of edge it is,
> i.e. which child class has given rise to that edge? Or do I need to add
> type fields to the Vertex and Edge classes so that it becomes possible
> to go from the parent to the children?
>
> I feel unsure because on the one hand it feels to me it is necessary
> with the current model to add such type fields, but on the other hand I
> feel this is kind of wrong, almost like a code smell suggesting that I
> am modelling things in a wrong way.
>
> Any insight would be warmly appreciated as I am a total beginner with
> Django.
>
> Many thanks in advance,
>
> Seb.
> Back to top <#m_1945082586141920503_digest_top>
> You received this digest because you're subscribed to updates for this
> group. You can change your settings on the group membership page
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/django-users/join>
> .
> To unsubscribe from this group and stop receiving emails from it send an
> email to [email protected].
>

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOPnU4%3DXQ3xMgDm0jtx5Pjhu-hoQJSW4%2BKMFN-t7mTp9quLJ7A%40mail.gmail.com.

Reply via email to