Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread kateregga julius
Add

*​**Kateregga Julius*
*Email: julikats2...@gmail.com *
*Kampala-Uganda*

*Skype: Katslog*


On Sun, 25 Feb 2024 at 10:04, Kato Joshua  wrote:

> Add me +256752567534
>
> On Sat, Feb 24, 2024, 4:38 PM emmanuel odor  wrote:
>
>> Let's do it...
>>
>> *Emmanuel Odor*
>>
>> Phone: *+234-7037-411553* <+234-7037-411553>
>> Mobile: *+234-9 <+234-8093-910965>055511066*
>> Skype: *Emmanuel Odo r
>>*
>>   24 Bajulaiye  Road, Shomolu,
>>   Lagos State
>> 
>> .
>>
>>
>>
>> On Sun, Feb 18, 2024 at 5:48 PM SURAJ TIWARI 
>> wrote:
>>
>>> 🚀 Join Our Django WhatsApp Bulk Messaging Project!
>>>
>>> 👋 Hello everyone,
>>>
>>> Are you looking for an exciting opportunity to gain hands-on experience
>>> in Django development? Do you want to work on a meaningful project that
>>> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
>>> our dynamic team!
>>>
>>> 🌟 Benefits:
>>>
>>>- Get hands-on experience working on a real-world Django project.
>>>- Learn how to leverage WhatsApp for bulk messaging, a valuable
>>>skill in today's digital landscape.
>>>- Opportunities for hybrid work, allowing flexibility in your
>>>schedule.
>>>- Collaborate with experienced developers and gain valuable
>>>mentorship.
>>>- Access to cutting-edge tools and technologies.
>>>
>>> 💼 Opportunities Available:
>>>
>>>- Django developers
>>>- Frontend developers
>>>- UI/UX designers
>>>- Quality assurance testers
>>>
>>> 🤝 How to Join: Simply reply to this message expressing your interest,
>>> and we'll provide you with all the necessary details to get started on our
>>> project.
>>>
>>> Let's work together to create something amazing and gain valuable
>>> experience along the way! 💻✨
>>>
>>> Best regards,
>>>
>>> Suraj Tiwari
>>>
>>>
>>> --
>>> 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/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/CAF54d_3D950Swmz2dorxAeNy06Dhwsk5VOjBC1whfPjS5U-FKg%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/CAMaX-Zg7SDKigAnu6WWrG%2Bpy7KjHeitUX7qBjvhYs%2BjEFsbo5A%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/CAMVv_-FJSfbNnQcK074g-UhL%3DAU_C2kG%3DpY-B88GDJZYoEVqaA%40mail.gmail.com.


Re: Data model design questio: graph in database

2024-02-24 Thread Mike Dewhirst

On 24/02/2024 7:20 am, Sébastien Hinderer wrote:

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.


In the base class you need a method like this ...

    def which_class(self):
    return self.__class__

... which will be inherited by each child class and when called will 
reveal the class name of the instance.


To test this in development, in the base class add a save method like 
this ...


    def save(self, *args, **kwargs):
    print(f"\n class name = {self.which_class()}")
    super().save(*args, **kwargs)

Whenever you save a model its name should print in stdout.  I tried it 
in one of my models and this is the result ...


    

... where "Chemical" is the class name.

So if you have a method which understands what the child class names 
mean, you can put your algorithm in there and execute calls to 
which_class() for each instance involved.


That might be enough to get you started.

Cheers

Mike



Many thanks in advance,

Seb.




--
We recommend signal.org

Signed email is an absolute defence against phishing. This email has
been signed with my private key. If you import my public key you can
automatically decrypt my signature and be sure it came from me. Your
email software can handle signing.

--
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/f81ef2aa-57eb-4cd8-bd53-679f9f68b143%40dewhirst.com.au.


OpenPGP_signature.asc
Description: OpenPGP digital signature


Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread Kato Joshua
Add me +256752567534

On Sat, Feb 24, 2024, 4:38 PM emmanuel odor  wrote:

> Let's do it...
>
> *Emmanuel Odor*
>
> Phone: *+234-7037-411553* <+234-7037-411553>
> Mobile: *+234-9 <+234-8093-910965>055511066*
> Skype: *Emmanuel Odo r
>*
> 24 Bajulaiye  Road, Shomolu,
> Lagos State.
>
>
>
> On Sun, Feb 18, 2024 at 5:48 PM SURAJ TIWARI 
> wrote:
>
>> 🚀 Join Our Django WhatsApp Bulk Messaging Project!
>>
>> 👋 Hello everyone,
>>
>> Are you looking for an exciting opportunity to gain hands-on experience
>> in Django development? Do you want to work on a meaningful project that
>> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
>> our dynamic team!
>>
>> 🌟 Benefits:
>>
>>- Get hands-on experience working on a real-world Django project.
>>- Learn how to leverage WhatsApp for bulk messaging, a valuable skill
>>in today's digital landscape.
>>- Opportunities for hybrid work, allowing flexibility in your
>>schedule.
>>- Collaborate with experienced developers and gain valuable
>>mentorship.
>>- Access to cutting-edge tools and technologies.
>>
>> 💼 Opportunities Available:
>>
>>- Django developers
>>- Frontend developers
>>- UI/UX designers
>>- Quality assurance testers
>>
>> 🤝 How to Join: Simply reply to this message expressing your interest,
>> and we'll provide you with all the necessary details to get started on our
>> project.
>>
>> Let's work together to create something amazing and gain valuable
>> experience along the way! 💻✨
>>
>> Best regards,
>>
>> Suraj Tiwari
>>
>>
>> --
>> 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/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/CAF54d_3D950Swmz2dorxAeNy06Dhwsk5VOjBC1whfPjS5U-FKg%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/CAMaX-Zg7SDKigAnu6WWrG%2Bpy7KjHeitUX7qBjvhYs%2BjEFsbo5A%40mail.gmail.com.


Re: How can I acess Multilinestring(dim=3)

2024-02-24 Thread Richard Mair
Hi David,

thanks for your help. I tried setting dim to 4 but did't see any change.

Here is my model:

```python
from django.contrib.gis.db import models


class Kmsys(models.Model):
# Define constants 
EPSG_CODE = 31287
NAME_OF_GEOMETRY_FIELD = "geom"

# F I E L D S -
id = models.IntegerField(primary_key=True)

geom = models.MultiLineStringField(
dim=4, srid=EPSG_CODE, blank=True, null=True, spatial_index=True
) # EPSG:31287=AustriaLambert

object_id = models.BigIntegerField(db_column="OBJECTID", unique=True)
code = models.CharField(max_length=80, db_column="KMSYS_CODE", unique=False)
name = models.CharField(max_length=500, db_column="KMSYS_BEZEICHNUNG", 
unique=False)
start_date = models.DateTimeField(db_column="KMSYS_START_DATUM")
end_date = models.DateTimeField(db_column="KMSYS_ENDE_DATUM")
len = models.FloatField(db_column="LEN")
km_from = models.FloatField(db_column="KMSYS_KMVON")
km_till = models.FloatField(db_column="KMSYS_KMBIS")
parts_quantity = models.IntegerField(db_column="TEILE_ANZ")
fme_date = models.DateTimeField(db_column="FME_DATUM")
se_anno_cad_data = models.FileField(db_column="SE_ANNO_CAD_DATA")
bauk_id = models.FloatField(db_column="BAUK_ID")

# Meta-Class --
class Meta:
managed = False
db_table = "KMSYS"
# db_table = '"public"."KMSYS"'

verbose_name = "Kmsys"
verbose_name_plural = "Kmsys"
ordering = ["code"]

# Methods -
def __str__(self) -> str:
"""String for representing the Model object."""
return f"{self.code} | {self.name} | {self.start_date} | {self.end_date} | {
self.km_from} | {self.km_till} | {self.parts_quantity} | {self.fme_date} | {
self.se_anno_cad_data} | {self.bauk_id}"
```

And this is the pytest that keeps failing -> At the beginning i just tested 
the dim=3 manually without db-access

from django.contrib.gis.geos import GEOSGeometry, LineString, 
MultiLineString, Point
from rest_framework.reverse import reverse

import logging

import pytest

from kmsys.models import Kmsys
from kmsys.test.test_runner import DjangoNoCreateAndDropRunner

logger = logging.getLogger(__name__)

# use pytest marks to tell pytest-django your test needs database access! 
In case only a certain method needs db-access use @pytest.mark.django_db as 
decorator of the according test-method.
pytestmark = pytest.mark.django_db


class TestModel:
"""
Test suite for KMSYS
"""

def test_query_kmsys(self):
"""
Test whether the kmsys can be accessed.

"""
# ARRANGE -

# simple dimension test with GDAL
# p: OGRGeometry = OGRGeometry("Point (1 2 3 )")
# assert p.coord_dim == 3

# simple dimension test with GEOS
p: GEOSGeometry = GEOSGeometry("Point (1 2 3 )")
assert p.hasz

# simple dimension test with GEOS Multilinestring
ls1 = LineString([(0, 0, 150), (1, 1, 151)], srid="31287")
ls2 = LineString([(2, 2, 153), (3, 3, 154)], srid="31287")
mls = MultiLineString(ls1, ls2)
assert mls.hasz

# ACT -
first_kmsys: Kmsys = Kmsys.objects.all().first()
logger.info(f"first: {first_kmsys}")

# ASSERT -
assert first_kmsys.geom.hasz
assert len(first_kmsys.geom.coords[0][0]) == 3
assert len(Kmsys.objects.all()) == 388

regards Richard
David James Nwoyie schrieb am Samstag, 24. Februar 2024 um 21:01:56 UTC+1:

> Increase the dim to 4 because of the Django of use 0 as the starting point 
>
> On Sat, Feb 24, 2024, 8:48 PM Richard Mair  wrote:
>
>> Hi i am using
>>
>> geom = models.MultiLineStringField(
>> dim=3, srid=EPSG_CODE, blank=True, null=True, spatial_index=True
>> ) # EPSG:3128=AustriaLambert
>>
>>
>> and my PostGIS-DB is using (MultilinestringM
>>
>> ALTER TABLE IF EXISTS public."KMSYS"
>> ADD COLUMN geom geometry(MultiLineStringM,31287);
>>
>> but when I access my Model I only get 2 dimensional response
>>
>> Can anybody lead me to the correct handling
>>
>>
>>
>>
>>
>>
>>
>> -- 
>> 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...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/ae4eaa11-3f4b-467a-9931-bbff5892a858n%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/85f472cb-8cee-4e32-b4c3-edec9b0324c1n%40googlegroups.com.


Re: How can I acess Multilinestring(dim=3)

2024-02-24 Thread David James Nwoyie
Increase the dim to 4 because of the Django of use 0 as the starting point

On Sat, Feb 24, 2024, 8:48 PM Richard Mair  wrote:

> Hi i am using
>
> geom = models.MultiLineStringField(
> dim=3, srid=EPSG_CODE, blank=True, null=True, spatial_index=True
> ) # EPSG:3128=AustriaLambert
>
>
> and my PostGIS-DB is using (MultilinestringM
>
> ALTER TABLE IF EXISTS public."KMSYS"
> ADD COLUMN geom geometry(MultiLineStringM,31287);
>
> but when I access my Model I only get 2 dimensional response
>
> Can anybody lead me to the correct handling
>
>
>
>
>
>
>
> --
> 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/ae4eaa11-3f4b-467a-9931-bbff5892a858n%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/CAKDLZAQpTNGta59SDQM0qzrR9siWr1Diwdj8D2X_qRMZkUfaNg%40mail.gmail.com.


Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread David James Nwoyie
Am interested in the
+2349038924701

On Sun, Feb 18, 2024, 5:48 PM SURAJ TIWARI  wrote:

> 🚀 Join Our Django WhatsApp Bulk Messaging Project!
>
> 👋 Hello everyone,
>
> Are you looking for an exciting opportunity to gain hands-on experience in
> Django development? Do you want to work on a meaningful project that
> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
> our dynamic team!
>
> 🌟 Benefits:
>
>- Get hands-on experience working on a real-world Django project.
>- Learn how to leverage WhatsApp for bulk messaging, a valuable skill
>in today's digital landscape.
>- Opportunities for hybrid work, allowing flexibility in your schedule.
>- Collaborate with experienced developers and gain valuable mentorship.
>- Access to cutting-edge tools and technologies.
>
> 💼 Opportunities Available:
>
>- Django developers
>- Frontend developers
>- UI/UX designers
>- Quality assurance testers
>
> 🤝 How to Join: Simply reply to this message expressing your interest,
> and we'll provide you with all the necessary details to get started on our
> project.
>
> Let's work together to create something amazing and gain valuable
> experience along the way! 💻✨
>
> Best regards,
>
> Suraj Tiwari
>
>
> --
> 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/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/CAKDLZAQ0%3DO414%2BzirUM%3DaFYKDy8_re47dsFJXBM-PzjuA-cOWg%40mail.gmail.com.


Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread wisdom samuel
I will like to join the group

On Sun, Feb 18, 2024, 5:48 PM SURAJ TIWARI  wrote:

> 🚀 Join Our Django WhatsApp Bulk Messaging Project!
>
> 👋 Hello everyone,
>
> Are you looking for an exciting opportunity to gain hands-on experience in
> Django development? Do you want to work on a meaningful project that
> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
> our dynamic team!
>
> 🌟 Benefits:
>
>- Get hands-on experience working on a real-world Django project.
>- Learn how to leverage WhatsApp for bulk messaging, a valuable skill
>in today's digital landscape.
>- Opportunities for hybrid work, allowing flexibility in your schedule.
>- Collaborate with experienced developers and gain valuable mentorship.
>- Access to cutting-edge tools and technologies.
>
> 💼 Opportunities Available:
>
>- Django developers
>- Frontend developers
>- UI/UX designers
>- Quality assurance testers
>
> 🤝 How to Join: Simply reply to this message expressing your interest,
> and we'll provide you with all the necessary details to get started on our
> project.
>
> Let's work together to create something amazing and gain valuable
> experience along the way! 💻✨
>
> Best regards,
>
> Suraj Tiwari
>
>
> --
> 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/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/CAPAjJWgTgC43Hy09dupza%3DDCAe02fy6%3DwAsY_JpLLCR3J8gg9Q%40mail.gmail.com.


How can I acess Multilinestring(dim=3)

2024-02-24 Thread Richard Mair
Hi i am using

geom = models.MultiLineStringField(
dim=3, srid=EPSG_CODE, blank=True, null=True, spatial_index=True
) # EPSG:3128=AustriaLambert


and my PostGIS-DB is using (MultilinestringM

ALTER TABLE IF EXISTS public."KMSYS"
ADD COLUMN geom geometry(MultiLineStringM,31287);

but when I access my Model I only get 2 dimensional response

Can anybody lead me to the correct handling







-- 
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/ae4eaa11-3f4b-467a-9931-bbff5892a858n%40googlegroups.com.


Re: I am interested. +2348162698617 Github: fosajeffRe: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread André Lewis
I'm interested. +8764608874.

On Mon, 19 Feb 2024, 11:20 am Efosa Jeffrey Okooboh, 
wrote:

> I am interested
> On Monday, February 19, 2024 at 4:47:39 PM UTC+1 july quintero wrote:
>
>> Hello, I would like to be part of this work team and thus strengthen my
>> knowledge with this great team of enthusiastic people with a lot of
>> experience in this field of web development. Thank you very much for your
>> attention and I will be waiting for a response.
>>
>>
>> El dom, 18 feb 2024 a la(s) 11:48 a.m., SURAJ TIWARI (suraj1...@gmail.com)
>> escribió:
>>
>>> 🚀 Join Our Django WhatsApp Bulk Messaging Project!
>>>
>>> 👋 Hello everyone,
>>>
>>> Are you looking for an exciting opportunity to gain hands-on experience
>>> in Django development? Do you want to work on a meaningful project that
>>> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
>>> our dynamic team!
>>>
>>> 🌟 Benefits:
>>>
>>>- Get hands-on experience working on a real-world Django project.
>>>- Learn how to leverage WhatsApp for bulk messaging, a valuable
>>>skill in today's digital landscape.
>>>- Opportunities for hybrid work, allowing flexibility in your
>>>schedule.
>>>- Collaborate with experienced developers and gain valuable
>>>mentorship.
>>>- Access to cutting-edge tools and technologies.
>>>
>>> 💼 Opportunities Available:
>>>
>>>- Django developers
>>>- Frontend developers
>>>- UI/UX designers
>>>- Quality assurance testers
>>>
>>> 🤝 How to Join: Simply reply to this message expressing your interest,
>>> and we'll provide you with all the necessary details to get started on our
>>> project.
>>>
>>> Let's work together to create something amazing and gain valuable
>>> experience along the way! 💻✨
>>>
>>> Best regards,
>>>
>>> Suraj Tiwari
>>>
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/35101022-f487-42c5-9ae1-74afea0ed56dn%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/CAJN6x_h%2BQjLR9YvJHsC1Zt-OGMgjDxYJgVR5GnWmXoTEH7Q67w%40mail.gmail.com.


Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread Daniel Joseph
I will like to join
Number:08166262610

On Sun, 18 Feb 2024, 5:48 pm SURAJ TIWARI,  wrote:

> 🚀 Join Our Django WhatsApp Bulk Messaging Project!
>
> 👋 Hello everyone,
>
> Are you looking for an exciting opportunity to gain hands-on experience in
> Django development? Do you want to work on a meaningful project that
> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
> our dynamic team!
>
> 🌟 Benefits:
>
>- Get hands-on experience working on a real-world Django project.
>- Learn how to leverage WhatsApp for bulk messaging, a valuable skill
>in today's digital landscape.
>- Opportunities for hybrid work, allowing flexibility in your schedule.
>- Collaborate with experienced developers and gain valuable mentorship.
>- Access to cutting-edge tools and technologies.
>
> 💼 Opportunities Available:
>
>- Django developers
>- Frontend developers
>- UI/UX designers
>- Quality assurance testers
>
> 🤝 How to Join: Simply reply to this message expressing your interest,
> and we'll provide you with all the necessary details to get started on our
> project.
>
> Let's work together to create something amazing and gain valuable
> experience along the way! 💻✨
>
> Best regards,
>
> Suraj Tiwari
>
>
> --
> 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/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/CAMHD5ZRUCo66_rvkEXSXEYYyjbmoxX5bMv4278yyBgcC5BmiJA%40mail.gmail.com.


Về: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread Hoàng Xuân
Hi! Please can you add me to join the group ? Thank you !

From: django-users@googlegroups.com  on behalf 
of Benjamin Nwoke 
Sent: Saturday, February 24, 2024 0:52
To: django-users@googlegroups.com 
Subject: Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging 
Project!

I'm interested, I wish to have the details

On Sun, Feb 18, 2024, 5:48 PM SURAJ TIWARI 
mailto:suraj12go...@gmail.com>> wrote:

🚀 Join Our Django WhatsApp Bulk Messaging Project!

👋 Hello everyone,

Are you looking for an exciting opportunity to gain hands-on experience in 
Django development? Do you want to work on a meaningful project that leverages 
WhatsApp for bulk messaging? We're thrilled to invite you to join our dynamic 
team!

🌟 Benefits:

  *   Get hands-on experience working on a real-world Django project.
  *   Learn how to leverage WhatsApp for bulk messaging, a valuable skill in 
today's digital landscape.
  *   Opportunities for hybrid work, allowing flexibility in your schedule.
  *   Collaborate with experienced developers and gain valuable mentorship.
  *   Access to cutting-edge tools and technologies.

💼 Opportunities Available:

  *   Django developers
  *   Frontend developers
  *   UI/UX designers
  *   Quality assurance testers

🤝 How to Join: Simply reply to this message expressing your interest, and we'll 
provide you with all the necessary details to get started on our project.

Let's work together to create something amazing and gain valuable experience 
along the way! 💻✨

Best regards,

Suraj Tiwari


--
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/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/CAN1m8aGoqq8RMKyRpRfozPKcE79m%3DP8N086UXr6EnpGu%3DxTmEA%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/TY2PR04MB37736396116D0403F831CAC2A5542%40TY2PR04MB3773.apcprd04.prod.outlook.com.


Re: I am interested. +2348162698617 Github: fosajeffRe: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread Md Russel
Hello
I am interested.

On Mon, Feb 19, 2024, 22:20 Efosa Jeffrey Okooboh 
wrote:

> I am interested
> On Monday, February 19, 2024 at 4:47:39 PM UTC+1 july quintero wrote:
>
>> Hello, I would like to be part of this work team and thus strengthen my
>> knowledge with this great team of enthusiastic people with a lot of
>> experience in this field of web development. Thank you very much for your
>> attention and I will be waiting for a response.
>>
>>
>> El dom, 18 feb 2024 a la(s) 11:48 a.m., SURAJ TIWARI (suraj1...@gmail.com)
>> escribió:
>>
>>> 🚀 Join Our Django WhatsApp Bulk Messaging Project!
>>>
>>> 👋 Hello everyone,
>>>
>>> Are you looking for an exciting opportunity to gain hands-on experience
>>> in Django development? Do you want to work on a meaningful project that
>>> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
>>> our dynamic team!
>>>
>>> 🌟 Benefits:
>>>
>>>- Get hands-on experience working on a real-world Django project.
>>>- Learn how to leverage WhatsApp for bulk messaging, a valuable
>>>skill in today's digital landscape.
>>>- Opportunities for hybrid work, allowing flexibility in your
>>>schedule.
>>>- Collaborate with experienced developers and gain valuable
>>>mentorship.
>>>- Access to cutting-edge tools and technologies.
>>>
>>> 💼 Opportunities Available:
>>>
>>>- Django developers
>>>- Frontend developers
>>>- UI/UX designers
>>>- Quality assurance testers
>>>
>>> 🤝 How to Join: Simply reply to this message expressing your interest,
>>> and we'll provide you with all the necessary details to get started on our
>>> project.
>>>
>>> Let's work together to create something amazing and gain valuable
>>> experience along the way! 💻✨
>>>
>>> Best regards,
>>>
>>> Suraj Tiwari
>>>
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/35101022-f487-42c5-9ae1-74afea0ed56dn%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/CALRA69wqP-VRykWrboxmhjXDsRUUoGH%2B3wFoSn5e_TdF0%2BAiKg%40mail.gmail.com.


Re: Digest for django-users@googlegroups.com - 14 updates in 2 topics

2024-02-24 Thread EDWIN NIWAHA
I am Interested.
+256 787320738

On Sat, Feb 24, 2024, 4:01 PM  wrote:

> django-users@googlegroups.com
> 
>  Google
> Groups
> 
> 
> Topic digest
> View all 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!
> 
> agoume koufana stephane : 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 : ago...@stephaneagoume.com *
> *tel : +33 646523241*
>
>
> Le dim. 18 févr. 2024 à 17:48, SURAJ TIWARI  a
> écrit :
>
> fady ghalayiny : 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 
> wrote:
>
> Zeeshan Iqbal : 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 : 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  >
> wrote:
>
> Francis Akabo : Feb 23 05:47PM
>
> I am interested in this project. Kindly get me started.
>
> Regards.
>
> talk fun : 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, 
> wrote:
>
> talk fun : 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 : Feb 23 11:50PM +0530
>
> I can help you with building food ordering web app in django. Catch me up
> at sangr...@hotmail.com
>
> Salaudeen Ridwan : Feb 23 07:29PM +0100
>
> I am interested
>
> kabika Dieumerci : Feb 23 07:44PM +0200
>
> Hi, add : +25766320871
>
> Mwesigwa Joshua : 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 : Feb 23 06:52PM +0100
>
> I'm interested, I wish to have the details
>
> Lakhjeet Samra : 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
> 
> Sébastien Hinderer : 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 i

Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread emmanuel odor
Let's do it...

*Emmanuel Odor*

Phone: *+234-7037-411553* <+234-7037-411553>
Mobile: *+234-9 <+234-8093-910965>055511066*
Skype: *Emmanuel Odo r
 *
24 Bajulaiye  Road, Shomolu,
Lagos State.



On Sun, Feb 18, 2024 at 5:48 PM SURAJ TIWARI  wrote:

> 🚀 Join Our Django WhatsApp Bulk Messaging Project!
>
> 👋 Hello everyone,
>
> Are you looking for an exciting opportunity to gain hands-on experience in
> Django development? Do you want to work on a meaningful project that
> leverages WhatsApp for bulk messaging? We're thrilled to invite you to join
> our dynamic team!
>
> 🌟 Benefits:
>
>- Get hands-on experience working on a real-world Django project.
>- Learn how to leverage WhatsApp for bulk messaging, a valuable skill
>in today's digital landscape.
>- Opportunities for hybrid work, allowing flexibility in your schedule.
>- Collaborate with experienced developers and gain valuable mentorship.
>- Access to cutting-edge tools and technologies.
>
> 💼 Opportunities Available:
>
>- Django developers
>- Frontend developers
>- UI/UX designers
>- Quality assurance testers
>
> 🤝 How to Join: Simply reply to this message expressing your interest,
> and we'll provide you with all the necessary details to get started on our
> project.
>
> Let's work together to create something amazing and gain valuable
> experience along the way! 💻✨
>
> Best regards,
>
> Suraj Tiwari
>
>
> --
> 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/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/CAF54d_3D950Swmz2dorxAeNy06Dhwsk5VOjBC1whfPjS5U-FKg%40mail.gmail.com.


Re: I am interested. +2348162698617 Github: fosajeffRe: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-24 Thread Lakhjeet Samra
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

> On 19 Feb 2024, at 16:28, Raphael Polanco  wrote:
> 
> I would like to take the opportunity to warn the users against information 
> sharing with strangers. Check LinkedIn profiles, email dresses, etc...and 
> never send money! 
> 
> Best Regards, 
> 
> R. Polanco 
> 
> On Mon, Feb 19, 2024 at 11:20 AM Efosa Jeffrey Okooboh 
> mailto:okoobohef...@gmail.com>> wrote:
>> I am interested
>> On Monday, February 19, 2024 at 4:47:39 PM UTC+1 july quintero wrote:
>>> Hello, I would like to be part of this work team and thus strengthen my 
>>> knowledge with this great team of enthusiastic people with a lot of 
>>> experience in this field of web development. Thank you very much for your 
>>> attention and I will be waiting for a response.
>>> 
>>> 
>>> El dom, 18 feb 2024 a la(s) 11:48 a.m., SURAJ TIWARI (suraj1...@gmail.com 
>>> <>) escribió:
 🚀 Join Our Django WhatsApp Bulk Messaging Project!
 
 👋 Hello everyone,
 
 Are you looking for an exciting opportunity to gain hands-on experience in 
 Django development? Do you want to work on a meaningful project that 
 leverages WhatsApp for bulk messaging? We're thrilled to invite you to 
 join our dynamic team!
 
 🌟 Benefits:
 
 Get hands-on experience working on a real-world Django project.
 Learn how to leverage WhatsApp for bulk messaging, a valuable skill in 
 today's digital landscape.
 Opportunities for hybrid work, allowing flexibility in your schedule.
 Collaborate with experienced developers and gain valuable mentorship.
 Access to cutting-edge tools and technologies.
 💼 Opportunities Available:
 
 Django developers
 Frontend developers
 UI/UX designers
 Quality assurance testers
 🤝 How to Join: Simply reply to this message expressing your interest, and 
 we'll provide you with all the necessary details to get started on our 
 project.
 
 Let's work together to create something amazing and gain valuable 
 experience along the way! 💻✨
 
 Best regards,
 
 Suraj Tiwari
 
 
 
 
 -- 
 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...@googlegroups.com <>.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/django-users/e8a705fd-10d9-4c1a-b4ba-0a7b896dbfean%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/35101022-f487-42c5-9ae1-74afea0ed56dn%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/CAJoAtS%3DvArN%3DBd3cd%3DBpsTVkj9724-K07XvSBiAjPtx2UWCFkg%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/DA377504-516A-4F61-8386-EC411471A60F%40gmail.com.