Re: user wise conversation

2023-11-21 Thread Migui Galan
as far as i know, you need to have channels because this is where
websockets communicate from sender-receiver vice versa

On Tue, Nov 21, 2023 at 6:22 PM Armaan Alam  wrote:

> how to chat with two user without using any room code with django channels
>
> --
> 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/69b184bf-2e05-42d0-882e-0c4a81a07c3an%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/CAKKJMPM%2Bbfo%2BVtN6UamWOk5mBneJ3TswueYo173UxboVYgy1fA%40mail.gmail.com.


Re: NoReverseMatch at / Reverse for 'add_time_slot' with arguments '('',)' not found. 1 pattern(s) tried: ['add_time_slot/(?P[0-9]+)/\\Z']

2023-11-01 Thread Migui Galan
thank you! i think this is because you are not looping or have a turf_id in
the template. by 'loop' or have you tried '/add_time_lot//'?

On Wed, Nov 1, 2023 at 10:53 PM Sudharsan  wrote:

> urlpatterns = [
> path('', views.home, name ='home'),
> path('home/', views.allTurfs,name = 'allturfs'),
> path('profile/', views.dashboard, name = 'profile'),
> path('about/', views.about, name = 'about'),
> path('add_venue/', views.add_Turf, name = 'add_turf'),
> path('/', views.allTurfs, name='turf_by_place'),
> path('/', views.Turf_det, name='turf_det'),
> path('add_time_slot//', views.add_time_slot, name=
> 'add_time_slot'),
> ]
>
> On Wednesday, November 1, 2023 at 8:17:28 PM UTC+5:30 Migui Galan wrote:
>
>> Hi! can you include the urls.py code? this is mainly because you have not
>> included the  within the url setup
>>
>> On Wed, Nov 1, 2023 at 10:42 PM Sudharsan  wrote:
>>
>>> i getting an error while doing python django project. i was tried many
>>> things but nothing works. Please help me guys.
>>> [image: error.png]
>>> *views.py*
>>> # view for adding Turf page
>>> def add_Turf(request):
>>> submitted = False
>>> if request.method == "POST":
>>> form = TurfForm(request.POST)
>>> if form.is_valid():
>>> var = form.save(commit=False)
>>> var.created_by = request.user
>>> var.save()
>>> messages.info(request, ' Your Turf has added successfully')
>>> turf_id=var.id
>>> return redirect('add_time_slot',turf_id=turf_id)
>>> else:
>>> form = TurfForm
>>> if 'submitted' in request.GET:
>>> submitted = True
>>> return render(request, 'addvenue.html',{'form': form, 'submitted':
>>> submitted})
>>>
>>>
>>> # view for adding time slot
>>>
>>> def add_time_slot(request,turf_id):
>>> turf = Venue.objects.get(pk=turf_id)
>>> if request.method == 'POST':
>>> form = TimeSlotForm(request.POST)
>>> if form.is_valid():
>>> timeslot = form.save(commit=False)
>>> timeslot.turf = turf # Set the Turf for this TimeSlot
>>> timeslot.save()
>>> return redirect('add_time_slot', turf_id=turf)
>>> else:
>>> form = TimeSlotForm()
>>> return render(request, 'add_time_slot.html', {'form': form, 'turf':
>>> turf})
>>>
>>>
>>>
>>> [image: modelspy.png][image: modelspy2.png][image: error3.png]
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> --
>>> 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/439756cf-9e61-430f-8d28-c72afb9b4a49n%40googlegroups.com
>>> <https://groups.google.com/d/msgid/django-users/439756cf-9e61-430f-8d28-c72afb9b4a49n%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/9a80543c-1b04-4e13-ba06-8b6ab029886en%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/9a80543c-1b04-4e13-ba06-8b6ab029886en%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/CAKKJMPO4jA_J97cN28%2BWAWrhLRaddWPebBXdKkKPesphQapjpQ%40mail.gmail.com.


Re: Form does not import current data from data base

2023-10-26 Thread Migui Galan
Hi Stefan, sorry i thought the process you are working is in POST request.
Try to place your func() after formchoices3.

On Wed, Oct 25, 2023 at 4:10 PM Stefan Kusmierz 
wrote:

> Hi Migui,
> I'm enchanted to receive such a quick answer.
> 1. It's MyForm1_2_3_4() because it's the answer to the first Get request
> while the page is opened
> 2. Why would I try to save the form to the data base?
> Best regards, Stefan
>
>
> Migui Galan schrieb am Mittwoch, 25. Oktober 2023 um 03:39:16 UTC+2:
>
>> Hi Stefan!
>> it should be form = MyForm1_2_3_4(request.POST) where POST request will
>> place/process the data to your form then after form.save()
>>
>> On Wed, Oct 25, 2023 at 12:29 AM Stefan Kusmierz 
>> wrote:
>>
>>> Dear community,
>>> this looks like a django bug to me:
>>> 1. (see first image)
>>> By api query I confirm that the last object of class List has the value
>>> "Startwert_neu2" in its field a, which was expected.
>>> 2. (see second image)
>>> The form "MyForm1_2_3_4" is instantiated using exactly the same command
>>> ("List.objects.last().a") to build formchoices3 which enter the
>>> corresponding choicefield furtherdown in "MyForm1_2_3_4" (not shown in the
>>> image)
>>> 3. While running the app my print out (to find the problem) states, that
>>> formchoices3 does not contain the expected data "Startwert_neu2" but "mCP
>>> purity", which is old data from older objects. So the rendered Form also
>>> contains the old data.
>>> To complete the information I also added snippets of views (fourth
>>> image) and models (fifth image).
>>> Is this a known issue?
>>> Thanks in advance,
>>> Stefan
>>>
>>> [image: DB-Query.jpg][image: Form.jpg][image: print out while
>>> running.jpg][image: snippet from views.jpg][image: snippet from
>>> models.jpg]
>>>
>>> --
>>> 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/085fcd6d-13aa-422b-86f9-1e15c2549ac8n%40googlegroups.com
>>> <https://groups.google.com/d/msgid/django-users/085fcd6d-13aa-422b-86f9-1e15c2549ac8n%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/43b913ef-c9a3-4705-9b58-a889f2667426n%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/43b913ef-c9a3-4705-9b58-a889f2667426n%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/CAKKJMPOoEjOge6ct6qTvq6fNkZTDRJ4gAc-kvAtNzjN4Vu47XQ%40mail.gmail.com.


Re: 'NoneType' object has no attribute 'get_host' in google authentication

2023-10-24 Thread Migui Galan
Hi marvel!
Can we see the full error message so we can visually/fully understand the
issue. thank you!

On Tue, Oct 24, 2023 at 7:21 PM marvel  wrote:

> Hello guys im seeing this error when
>
> Trying to use allauth for google authentication how can I solve it
>
>
>
> --
> 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/4A22D5EC-C77C-4F0C-A3F9-71ABE1DA605B%40hxcore.ol
> 
> .
>

-- 
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/CAKKJMPOONYZ8eu6icsKR75bw34oFeNrbBd4fGnnQ7hSFaFhP6g%40mail.gmail.com.


Re: Redundant execution of tasks with Celery.

2023-10-23 Thread Migui Galan
When I  develop Django + celery, I always print the values in the terminal
to check it.

On Tue, Oct 24, 2023 at 2:33 PM Migui Galan  wrote:

> Hi Brian, unfortunately I haven't experienced this however if you are not
> familiar with logging celery values in the terminal to check repeated
> values. Try to visit this or search similar keywords:
>
>
> https://stackoverflow.com/questions/31414468/print-statement-in-celery-scheduled-task-doesnt-appear-in-terminal
>
> On Tue, Oct 24, 2023 at 2:09 PM Brian Odhiambo 
> wrote:
>
>> Hello everyone.
>> I have scheduled tasks that get executed with Celery. On development, the
>> scheduled tasks are executed only once. But in production, they're executed
>> redundantly. I have my django application deployed on a private server.
>> I've tried to examine what could be the cause of this behaviour and could
>> not solve it. Anyone who has ever had such a challenge, how did you solve
>> it?
>>
>> Thanks in advance for your 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/CAPjQKqY7ru4oSi6Cxyps5tG%3DTi_VQ525RB7Xxkgej4TiWCow9Q%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAPjQKqY7ru4oSi6Cxyps5tG%3DTi_VQ525RB7Xxkgej4TiWCow9Q%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/CAKKJMPPek5StY4mUWrZ8UNJRVkD5tUzphWJYiYtndeXmnVhWLQ%40mail.gmail.com.


Re: Redundant execution of tasks with Celery.

2023-10-23 Thread Migui Galan
Hi Brian, unfortunately I haven't experienced this however if you are not
familiar with logging celery values in the terminal to check repeated
values. Try to visit this or search similar keywords:

https://stackoverflow.com/questions/31414468/print-statement-in-celery-scheduled-task-doesnt-appear-in-terminal

On Tue, Oct 24, 2023 at 2:09 PM Brian Odhiambo 
wrote:

> Hello everyone.
> I have scheduled tasks that get executed with Celery. On development, the
> scheduled tasks are executed only once. But in production, they're executed
> redundantly. I have my django application deployed on a private server.
> I've tried to examine what could be the cause of this behaviour and could
> not solve it. Anyone who has ever had such a challenge, how did you solve
> it?
>
> Thanks in advance for your 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/CAPjQKqY7ru4oSi6Cxyps5tG%3DTi_VQ525RB7Xxkgej4TiWCow9Q%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/CAKKJMPNxJyuJLsqDGROcT%3DgRY5Pzb%3Dx1J6%3DyS2Q2DROPCM7yiw%40mail.gmail.com.


Re: Looking for a Learning Buddy

2023-10-14 Thread Migui Galan
Hi! Any update from the group of "Looking learning buddy" ? has anyone
created?

On Sat, Oct 14, 2023 at 9:05 PM 黃啓華C.H.  wrote:

> Hello,
>
> May I join the learning group.
> I have little experience with Django & ML.
> Eager to learn them with you.
>
> Regards,
> CH Huang
> chhuang...@gmail.com
>
>
> On Fri, Oct 13, 2023 at 9:46 PM Pranav Sawant 
> wrote:
>
>> Hi, I also want to join in this group. I have basic knowledge of Machine
>> Learning and Django.
>>
>> On Friday, October 13, 2023 at 7:09:07 PM UTC+5:30 Migui Galan wrote:
>>
>>> Hi Hazida, I have a basic knowledge in machine learning and I'd like to
>>> hear more about your project.
>>>
>>>
>>> On Fri, Oct 13, 2023 at 3:01 PM Hafiza Nafeesa Asif 
>>> wrote:
>>>
>>>> I have bases in Django but not yet In machine learning. So if you help
>>>> me to handle machine learning, we can work together
>>>>
>>>> On Sat, 17 Jun 2023, 3:00 am John Ayodele,  wrote:
>>>>
>>>>> Hi! It's John.
>>>>>
>>>>> I am currently looking for a learning buddy💡, for Machine Learning.
>>>>> I have little experience in Django🕸 and I code in Python🐍.
>>>>>
>>>>> The learning buddy would have one-on-one meetings with me so we can
>>>>> share ideas and learn together.
>>>>> It is really going to be a fun experience😊.
>>>>> The reason I am looking for a learning buddy is because I find it more
>>>>> fun learning with people rather than just being self-taught alone.😢
>>>>> I will be going to university later this year or next year.
>>>>> 😍
>>>>> If this sounds like you, please do not hesitate to contact me.
>>>>> 😎
>>>>>
>>>>> Thanks.
>>>>> John Ayodele
>>>>>
>>>>> --
>>>>> 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/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/django-users/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%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...@googlegroups.com.
>>>>
>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/django-users/CAO5ZLjUEzb1Uzp6K1569gOLdPGuAQoE3f8ndGMcviA_CpGFo7w%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/django-users/CAO5ZLjUEzb1Uzp6K1569gOLdPGuAQoE3f8ndGMcviA_CpGFo7w%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/a199a6cc-9843-41a3-8275-4ac3bb37bf89n%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/a199a6cc-9843-41a3-8275-4ac3bb37bf89n%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/CANcTfUemfUsnChSv8KCUDO3TuufToQ5jjxraidOHqDzb1ZHPeg%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CANcTfUemfUsnChSv8KCUDO3TuufToQ5jjxraidOHqDzb1ZHPeg%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/CAKKJMPOYVCa2-FGFiRTWd2Ny7ZJyUFnVVQvdfKUZoApJGcnrEg%40mail.gmail.com.


Re: Hello World!

2023-10-13 Thread Migui Galan
Hi Alvaro, try to check your STATICFILES_DIR, STATIC_ROOT and STATIC_MEDIA
path. maybe they are not pointing to the correct path

On Fri, Oct 13, 2023 at 9:14 PM Alvaro Nascimento 
wrote:

> i have an issue with my Django site,
>
> on loading staticfiles, it does 404 error.
>
> but in production everything works fine.
>
> --
> 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/f6e31790-20fc-40db-b22a-bc86a3d9738an%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/CAKKJMPOBs1P8%3D1f-sLCw-zMrk8QzjHnJAif-r_c8QqWDA9-bwQ%40mail.gmail.com.


Re: Looking for a Learning Buddy

2023-10-13 Thread Migui Galan
Hi Hazida, I have a basic knowledge in machine learning and I'd like to
hear more about your project.


On Fri, Oct 13, 2023 at 3:01 PM Hafiza Nafeesa Asif 
wrote:

> I have bases in Django but not yet In machine learning. So if you help me
> to handle machine learning, we can work together
>
> On Sat, 17 Jun 2023, 3:00 am John Ayodele, 
> wrote:
>
>> Hi! It's John.
>>
>> I am currently looking for a learning buddy💡, for Machine Learning.
>> I have little experience in Django🕸 and I code in Python🐍.
>>
>> The learning buddy would have one-on-one meetings with me so we can share
>> ideas and learn together.
>> It is really going to be a fun experience😊.
>> The reason I am looking for a learning buddy is because I find it more
>> fun learning with people rather than just being self-taught alone.😢
>> I will be going to university later this year or next year.
>> 😍
>> If this sounds like you, please do not hesitate to contact me.
>> 😎
>>
>> Thanks.
>> John Ayodele
>>
>> --
>> 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/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%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/CAO5ZLjUEzb1Uzp6K1569gOLdPGuAQoE3f8ndGMcviA_CpGFo7w%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/CAKKJMPMALi8YpPHh03_FDVKo6xe7Wp1XVPDV5N%3D5rOO%2B8WByNA%40mail.gmail.com.


Re: Looking for a Learning Buddy

2023-10-12 Thread Migui Galan
Hi Daniel,
I am interested with this. I have 2 years experience in Django and would
like to freshen it up again since I'm using different frameworks now.
Please let me know how to proceed. Thank you

On Fri, Oct 13, 2023 at 6:58 AM Full Stack Zone 
wrote:

> Yes, I worked on this
>
> On Fri, 13 Oct 2023, 02:55 Sophia,  wrote:
>
>>
>> Hello is there anyone who has done on real estate or broker system in
>> Django. please I need your help.
>> On Saturday, June 17, 2023 at 1:10:39 AM UTC+3 Peter Benjamin Ani wrote:
>>
>>> Have you tried working on a project?
>>>
>>> On Fri, 16 Jun 2023 at 23:00, John Ayodele  wrote:
>>>
 Hi! It's John.

 I am currently looking for a learning buddy💡, for Machine Learning.
 I have little experience in Django🕸 and I code in Python🐍.

 The learning buddy would have one-on-one meetings with me so we can
 share ideas and learn together.
 It is really going to be a fun experience😊.
 The reason I am looking for a learning buddy is because I find it more
 fun learning with people rather than just being self-taught alone.😢
 I will be going to university later this year or next year.
 😍
 If this sounds like you, please do not hesitate to contact me.
 😎

 Thanks.
 John Ayodele

 --
 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/CAP7pJ3gsn_bkOfP-8k-SNZ%2BmmJ8riuc1cdUVXzoQXN31BS4W4g%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/c000bcf3-a9ae-4c43-916a-584034abff03n%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/CA%2BE%3DhDLEZrVZ8VoNcRmMPX5S%3DfU1074pS8XWgLLtCUFV5s2vjw%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/CAKKJMPMYM47diWxU5jX4bsgP_XsgcD1woAAxKmYy_kNLF%3D67zA%40mail.gmail.com.


Re: help me

2023-09-25 Thread Migui Galan
you can try exploring vercel. they can host django website.
other than that, try pythonanywhere. best site for hosting django

On Sun, Sep 24, 2023 at 9:52 AM FIRDOUS BHAT  wrote:

> https://blog.back4app.com/top-10-heroku-alternatives/
>
>
>
>
> On Sun, Sep 24, 2023 at 12:14 AM Akoo Rahimi 
> wrote:
>
>> Hello friends
>>
>> Can you introduce me some sites similar to Heroku?
>>
>> I just started Django and I want to test my projects on the global server.
>>
>> --
>> 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/dccab8c0-8d51-4338-a085-300fdfc0eeadn%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/CAFB6YJrmzsa8ReiikRC2q3vs8VCkpNQZ0mrvqPLLvmrzaq8FiQ%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/CAKKJMPOmT66f9dgm%2B69Sqq7b8LLmQw6yFpB4vPSuQheWfHtV4A%40mail.gmail.com.


Re: final project in django - help

2023-08-16 Thread Migui Galan
im glad to help, whats the issue you are facing? you can send me a gmeet
link for the meeting

On Wed, Aug 16, 2023 at 11:31 PM kipkoech chesir 
wrote:

> yes, we can, just clarify issues and problems.
>
>
> On Wednesday, August 9, 2023 at 7:23:27 PM UTC+3 ivan harold wrote:
>
>> what help do you need?
>> Can you give any specifics so we can understand?
>>
>> On Sunday, July 16, 2023 at 10:40:09 PM UTC+8 Jun Say wrote:
>>
>>>
>>>
>>> On Sun, Jul 16, 2023 at 9:32 PM Jun Say  wrote:
>>>
 Let me try.

 On Sun, Jul 16, 2023 at 6:28 AM Brian Carey  wrote:

> A little more information please. What can't you do and what errors do
> you get?
>
> Get BlueMail for Android 
> On Jul 16, 2023, at 03:47, Alexandru - Gabriel Ionicescu <
> ionicescu.ale...@gmail.com> wrote:
>>
>> Hello,
>>
>> who can help me with the final project in django? in a week I have to
>> hand it over and I got into trouble with it. I can't access github.
>> Please help me.
>>
>> Tnx,
>> Alex
>>
>> --
> 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/d50156e2-4df0-443b-ad0c-66ab4ba39744%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/6f0ba0af-eddf-4dc4-b349-17f338cb13abn%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/CAKKJMPN_J%2BRXEG3rBcBsgFqzq8-KSEqb-6Y3oYk0Cjvm6B9gkg%40mail.gmail.com.