Re: Runserver with a custom script

2020-02-17 Thread Budi Hermansyah
you can use django commands...
https://docs.djangoproject.com/en/3.0/howto/custom-management-commands/

On Tue, Feb 18, 2020 at 2:17 PM Soumen Khatua 
wrote:

> Hi Folks,
>
> I want to run a script or url  at the time of django server loading.So
> Does this possible,If yes could you tell me,How?
>
> Thank you in advance
>
> Regards,
> Soumen
>
> --
> 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/CAPUw6WYBbCym1SLKTTvEDBz9uYAj1SbcdF%3Dryia%2BdDwpj24%2B-g%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/CAHGmjWU8af7RV0uRCpq_HoM%3D6_VWFW3FeY7yy7tv6DCiEREDzA%40mail.gmail.com.


Runserver with a custom script

2020-02-17 Thread Soumen Khatua
Hi Folks,

I want to run a script or url  at the time of django server loading.So Does
this possible,If yes could you tell me,How?

Thank you in advance

Regards,
Soumen

-- 
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/CAPUw6WYBbCym1SLKTTvEDBz9uYAj1SbcdF%3Dryia%2BdDwpj24%2B-g%40mail.gmail.com.


Django Channels inifnate group expair time or any alternative solution

2020-02-17 Thread pot-potato
Dear Django-Team,

I trying to create an IoT application with Django Channels, this is my plan

   - I have is a python program that can fetch data from several hardware 
   devices(PLC, Smart Sensors, etc..) and publish data into the Redis channel 
   (this program is running 24/7 and 365 days).
   - Now I want to forward this data into UI framework (Vue js) using  
   Django (latest) + Channels (latest). Once the UI framework received this 
   data I will render using charts and other animations. (this program should 
   running 24/7 and 365 days )
   - So far I have understood that Django can't directly listen to Redis 
   PubSub Channel and send data through WebSockets to all connected clients. ( 
   Reference link 
   

) 
   - So I want to run one more program which can run along with Django 
   Server and listens to Redis channels and sends data to Django-Channels 
   Group (As you know once channels group receives data it will broadcast to 
   all connected client on the same group)
   - But I am facing a few issues,
  - I have read that the channels group will expire after 24 hours. How 
  to handle this situation?
  - I am not sure how stable is my methodology. Is it a better way to 
  do for an application that should run for a lifelong time?
  - Somehow if I managed above two points, how to pack this entire 
  application and distribute it?
   
So far I have done, once the Django server is running, I am starting an 
application and posting data into WebSocket endpoint then it's broadcasting 
the same data to all connected clients.

But it's not sable and throwing an exception after 2-3 hours. I have 
attached Publisher and Subscriber code below for your ref.

*If I stabilize this application I want to make this application 
open-source so Django can be used for IoT application as well*

[image: Base.png]
 
import redis
import time
import traceback
from datetime import datetime
import random
import json

def Publish():
   try:
   r = redis.StrictRedis(host='127.0.0.1', port=6379)# 
Connect to local Redis instance
   p = r.pubsub()
   while True:
   for i in range(10):
   topicname = 'ch' + str(i)
   randnum = random.randint(1,100) 
mydict = {'Temperature': randnum}
   data = json.dumps(mydict)
   r.publish(topicname, data)  # 
PUBLISH Data on topic
   print(f"{datetime.now()} Published Data {data} on Topic {
topicname}")
   time.sleep(1)

except Exception as e:
   print("!! EXCEPTION !")
   print(str(e))
   print(traceback.format_exc())
if __name__ == "__main__":
   Publish()


import time
import traceback
from datetime import datetime
import redis
import json
import websocket
ws = websocket.WebSocket()
ws.connect("ws://127.0.0.1:8000/ws/dashboard/")

def Subscribe():
   try:
   r = redis.StrictRedis(host='127.0.0.1', port=6379,decode_responses=
True)  # Connect to local Redis instance
   topicname = ['ch0','ch1','ch2','ch3','ch4']
   p = r.pubsub()   
   
   p.subscribe(topicname)  
   p.get_message()   
print(f"Subscriber Started For Topic {topicname}...")
   for message in p.listen():   
   # Checks for message
   data = message['data']
   #print(data)
   if type(data) == str:
   j_data = json.loads(data)
   #print(data)
   ws.send(data)
   print(f"{datetime.now()} Data is : {j_data}")
   
   except Exception as e:
   print("!! EXCEPTION !")
   print(str(e))
   print(traceback.format_exc())

if __name__ == "__main__":
   Subscribe()

-- 
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/286c8240-1271-4382-b78d-67e510b1fa94%40googlegroups.com.


how to request a feature

2020-02-17 Thread Jim
I found an app called redirects that gives me a way to create redirects via 
the admin UI.

It works great, but I noticed that it doesn't support passing along the URL 
parameters to the new redirect target. It seems that this would be a good 
idea.

I found that someone posted a snippet of code that adds this 

.

Where might I go to request that this get added as a feature to the 
shipping django?

Is this something people would use, or would they do redirects at a more 
low-level inside of views or something -- this post about that style seems 
way more popular 

.

Thanks for letting me know. I'm a bit of a nube.

-- 
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/a9ab37c2-d2cc-4a90-b1fd-24a5c3a203aa%40googlegroups.com.


Re: Study and project partner(s) needed

2020-02-17 Thread mike Battle
I'm so down for this Let me know when you guys want to start this
journey.

-Mike

On Fri, Feb 14, 2020, 9:15 AM Akorede Habeebullah  wrote:

> Hi guys,
>
> I've been learning Django on a solo for a while now and I'm really in need
> of a Programmer friend/partner who we can always learn together, build
> projects together. This will really benefit both sides greatly.
> I am a person you'll really love to make friend with. Interested
> individuals should pls signify.
>
> Thanks.
>
> --
> 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/6d4ed94c-3864-4c5b-9f9e-5df7b6a77cdd%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/CADOpZR1ZkzqW3J3wRQHuoSOg-h%3DaxFHTpiOcMLcvQwuCixubrQ%40mail.gmail.com.


[ANN] copernic v0.0.0

2020-02-17 Thread Amirouche Boubekki
I am very pleased to announce that I will work on porting my work on a 
versioned database (read: scalable wikidata) to Python and Django.

If you want to know more and follow the development watch this: 
https://github.com/amirouche/copernic



Cheers,


Amirouche ~ https://hyper.dev

-- 
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/8f0fa8d2-a0d0-4345-95e2-931d6b8a87c4%40googlegroups.com.


Re: Study and project partner(s) needed

2020-02-17 Thread Maqdum Adewale
Hi I'm in

On Fri, Feb 14, 2020, 5:15 PM Akorede Habeebullah  wrote:

> Hi guys,
>
> I've been learning Django on a solo for a while now and I'm really in need
> of a Programmer friend/partner who we can always learn together, build
> projects together. This will really benefit both sides greatly.
> I am a person you'll really love to make friend with. Interested
> individuals should pls signify.
>
> Thanks.
>
> --
> 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/6d4ed94c-3864-4c5b-9f9e-5df7b6a77cdd%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%2B48qrECkKiFQ-Pm4VXJtn%2BvNebxORNf0zyh3sLY%2BObYBSNCrQ%40mail.gmail.com.


Re: Multiple calls

2020-02-17 Thread Kasper Laudrup

Hi Soumen,

On 17/02/2020 14.59, Soumen Khatua wrote:
Yeah, I'm trying to do it in your way but somehow it's not working in my 
script.




Which way?

I didn't give you any way to do it, I gave you three ideas and I would 
be very interested to hear what would work out best.


I definitely find the "class member/singleton" kind of way a dirty hack 
that I would personally avoid (views shouldn't have any state in the 
first place).


But it would be very interesting to hear how you've approached the 
service and custom model ideas.


Would you care to share the code where you've tried that approach?

Kind regards,

Kasper Laudrup

--
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/7b0369ad-4ac5-675d-bcad-d2aea4128099%40stacktrace.dk.


Re: Multiple calls

2020-02-17 Thread Soumen Khatua
the CSV file is loading inside the AutoComplete(class) constructor

On Mon, Feb 17, 2020 at 10:44 PM Soumen Khatua 
wrote:

> The CSV file is in project folder.Could you send me any code
> snippet,Please?
>
> Thanks for your time.
>
>
>
> On Mon, Feb 17, 2020 at 10:39 PM maninder singh Kumar <
> maninder.s.ku...@gmail.com> wrote:
>
>> Hi Soumen,
>> Where is the Csv file loading ?
>> You could try return redirect also if the problem is due to continued
>> resubmission.
>>
>> Sent from my iPad
>>
>> > On 17-Feb-2020, at 7:14 PM, Kasper Laudrup 
>> wrote:
>> >
>> > Hi Soumen,
>> >
>> >> On 17/02/2020 14.31, Soumen Khatua wrote:
>> >> Hi Folks,
>> >> Actually I want to load the csv file for first time only afterwards I
>> don't want to load the csv files,but everytime when i'm calling the url the
>> same csv fie is loading for the same operation.How I can restrict it for
>> multiple loadings?
>> >
>> > As a quick and dirty solution, you could probably use a class variable:
>> >
>> >
>> https://docs.python.org/3/tutorial/classes.html#class-and-instance-variables
>> >
>> > But a nicer way would be to have some kind of service or similar that
>> the view could call or perhaps abstract the CSV file as a Django model.
>> >
>> > Kind regards,
>> >
>> > Kasper Laudrup
>> >
>> > --
>> > 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/cdb81c92-9cd9-7401-ef86-67c9fc643000%40stacktrace.dk
>> .
>>
>> --
>> 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/AF0E6004-98F9-4691-B5D8-A4601D42F91D%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/CAPUw6WYnsoviYXRBT9oM0hQkXPtw%3DRjzWJ%2Bsozu6euJ%3D%2B5oLWA%40mail.gmail.com.


Re: Multiple calls

2020-02-17 Thread Soumen Khatua
The CSV file is in project folder.Could you send me any code snippet,Please?

Thanks for your time.



On Mon, Feb 17, 2020 at 10:39 PM maninder singh Kumar <
maninder.s.ku...@gmail.com> wrote:

> Hi Soumen,
> Where is the Csv file loading ?
> You could try return redirect also if the problem is due to continued
> resubmission.
>
> Sent from my iPad
>
> > On 17-Feb-2020, at 7:14 PM, Kasper Laudrup 
> wrote:
> >
> > Hi Soumen,
> >
> >> On 17/02/2020 14.31, Soumen Khatua wrote:
> >> Hi Folks,
> >> Actually I want to load the csv file for first time only afterwards I
> don't want to load the csv files,but everytime when i'm calling the url the
> same csv fie is loading for the same operation.How I can restrict it for
> multiple loadings?
> >
> > As a quick and dirty solution, you could probably use a class variable:
> >
> >
> https://docs.python.org/3/tutorial/classes.html#class-and-instance-variables
> >
> > But a nicer way would be to have some kind of service or similar that
> the view could call or perhaps abstract the CSV file as a Django model.
> >
> > Kind regards,
> >
> > Kasper Laudrup
> >
> > --
> > 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/cdb81c92-9cd9-7401-ef86-67c9fc643000%40stacktrace.dk
> .
>
> --
> 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/AF0E6004-98F9-4691-B5D8-A4601D42F91D%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/CAPUw6Wb0FXtZ_cBUUfJcgDRHX6oDKRaLEowX-NSDbuFvzpN%3DqQ%40mail.gmail.com.


Re: Multiple calls

2020-02-17 Thread maninder singh Kumar
Hi Soumen,
Where is the Csv file loading ?
You could try return redirect also if the problem is due to continued 
resubmission.

Sent from my iPad

> On 17-Feb-2020, at 7:14 PM, Kasper Laudrup  wrote:
> 
> Hi Soumen,
> 
>> On 17/02/2020 14.31, Soumen Khatua wrote:
>> Hi Folks,
>> Actually I want to load the csv file for first time only afterwards I don't 
>> want to load the csv files,but everytime when i'm calling the url the same 
>> csv fie is loading for the same operation.How I can restrict it for multiple 
>> loadings?
> 
> As a quick and dirty solution, you could probably use a class variable:
> 
> https://docs.python.org/3/tutorial/classes.html#class-and-instance-variables
> 
> But a nicer way would be to have some kind of service or similar that the 
> view could call or perhaps abstract the CSV file as a Django model.
> 
> Kind regards,
> 
> Kasper Laudrup
> 
> -- 
> 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/cdb81c92-9cd9-7401-ef86-67c9fc643000%40stacktrace.dk.

-- 
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/AF0E6004-98F9-4691-B5D8-A4601D42F91D%40gmail.com.


Re: Multiple calls

2020-02-17 Thread Soumen Khatua
Actually my requirement is different it's like If anyone call the this
class first time then entire script will be execute. Afterwards if any one
wants to POST or any request then the constructor should not be execute
only the specefied request will be execute. otherwise if the csv file will
load each and everytime then it will take lots of time.

Thank you

On Mon, Feb 17, 2020 at 8:05 PM tribhuvan kishor <
tribhuvankishor...@gmail.com> wrote:

> its possible if manipulation possible in CSV
>
> On Mon, Feb 17, 2020 at 8:02 PM tribhuvan kishor <
> tribhuvankishor...@gmail.com> wrote:
>
>> add a unique field in csv and
>>
>>
>>
>>
>>
>>
>> *class AutocompleteView(APIView):def __init__(self):self.keys
>> = []with open("search_terms_converteds.csv",'r') as file:
>>   reader = csv.reader(file)for row in reader:*
>> *   if row.get("perticular unique id field").exist():*
>> *print("row already exist")*
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> *else:self.keys.append(row[1])
>> print("constructor execution")global tt = Trie()
>> t.formTrie(self.keys)def post(self,request):key = request.data
>>   print("key:",key)suggested_word =
>> t.printAutoSuggestions(key)return Response(suggested_word, status =
>> status.HTTP_200_OK)*
>>
>> On Mon, Feb 17, 2020 at 7:49 PM Soumen Khatua 
>> wrote:
>>
>>> Could you send me any code snippet or any link,Please?
>>>
>>> Thank you for your response
>>>
>>>
>>>
>>> On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
>>> tribhuvankishor...@gmail.com> wrote:
>>>
 unique field in CSV

 On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
 tribhuvankishor...@gmail.com> wrote:

> i faced the same problem while i was dealing with CSV file.
> i gave a unique file in csv to make a check on the particular entry.
> by this way, i avoided multiple entries in my database
>
>
> On Mon, Feb 17, 2020 at 7:30 PM Soumen Khatua <
> soumenkhatua...@gmail.com> wrote:
>
>> Yeah, I'm trying to do it in your way but somehow it's not working in
>> my script.
>>
>> Thanks for your valuable time.
>>
>> On Mon, Feb 17, 2020 at 7:27 PM Kasper Laudrup 
>> wrote:
>>
>>> Hi Soumen,
>>>
>>> On 17/02/2020 14.51, Soumen Khatua wrote:
>>> > Okay.
>>> > Is it possible to load the csv file one time do the POST or any
>>> request
>>> > multiple times without loading the same file.Of course If it is in
>>> same
>>> > class??
>>> >
>>>
>>> Yes, I just gave you some ideas on how that could be done.
>>>
>>> Kind regards,
>>>
>>> Kasper Laudrup
>>>
>>> --
>>> 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/7dc857eb-eea2-73d0-f7e6-71af08efcd7f%40stacktrace.dk
>>> .
>>>
>> --
>> 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/CAPUw6Wa392ghVCSkMfcgpf2AAMSaTXGHNKukX1KjWNx1Getr-g%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> regards
> Tribhuvan Kishor Bhaskar
> 9818078761
>


 --
 regards
 Tribhuvan Kishor Bhaskar
 9818078761

 --
 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/CACiphSVOXD9CXdio0qcFWjA03SJt8DuOF5cc7ou6KF8qYwJs9g%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/CAPUw6Wa8r%2BhLykaW6WTgOq6wrZZ_Q0UxCZW14mxs74yKoJGugQ%40mail.gmail.com
>>> 

Re: Multiple calls

2020-02-17 Thread tribhuvan kishor
its possible if manipulation possible in CSV

On Mon, Feb 17, 2020 at 8:02 PM tribhuvan kishor <
tribhuvankishor...@gmail.com> wrote:

> add a unique field in csv and
>
>
>
>
>
>
> *class AutocompleteView(APIView):def __init__(self):self.keys
> = []with open("search_terms_converteds.csv",'r') as file:
>   reader = csv.reader(file)for row in reader:*
> *   if row.get("perticular unique id field").exist():*
> *print("row already exist")*
>
>
>
>
>
>
>
>
>
>
>
>
> *else:self.keys.append(row[1])
> print("constructor execution")global tt = Trie()
> t.formTrie(self.keys)def post(self,request):key = request.data
>   print("key:",key)suggested_word =
> t.printAutoSuggestions(key)return Response(suggested_word, status =
> status.HTTP_200_OK)*
>
> On Mon, Feb 17, 2020 at 7:49 PM Soumen Khatua 
> wrote:
>
>> Could you send me any code snippet or any link,Please?
>>
>> Thank you for your response
>>
>>
>>
>> On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
>> tribhuvankishor...@gmail.com> wrote:
>>
>>> unique field in CSV
>>>
>>> On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
>>> tribhuvankishor...@gmail.com> wrote:
>>>
 i faced the same problem while i was dealing with CSV file.
 i gave a unique file in csv to make a check on the particular entry. by
 this way, i avoided multiple entries in my database


 On Mon, Feb 17, 2020 at 7:30 PM Soumen Khatua <
 soumenkhatua...@gmail.com> wrote:

> Yeah, I'm trying to do it in your way but somehow it's not working in
> my script.
>
> Thanks for your valuable time.
>
> On Mon, Feb 17, 2020 at 7:27 PM Kasper Laudrup 
> wrote:
>
>> Hi Soumen,
>>
>> On 17/02/2020 14.51, Soumen Khatua wrote:
>> > Okay.
>> > Is it possible to load the csv file one time do the POST or any
>> request
>> > multiple times without loading the same file.Of course If it is in
>> same
>> > class??
>> >
>>
>> Yes, I just gave you some ideas on how that could be done.
>>
>> Kind regards,
>>
>> Kasper Laudrup
>>
>> --
>> 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/7dc857eb-eea2-73d0-f7e6-71af08efcd7f%40stacktrace.dk
>> .
>>
> --
> 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/CAPUw6Wa392ghVCSkMfcgpf2AAMSaTXGHNKukX1KjWNx1Getr-g%40mail.gmail.com
> 
> .
>


 --
 regards
 Tribhuvan Kishor Bhaskar
 9818078761

>>>
>>>
>>> --
>>> regards
>>> Tribhuvan Kishor Bhaskar
>>> 9818078761
>>>
>>> --
>>> 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/CACiphSVOXD9CXdio0qcFWjA03SJt8DuOF5cc7ou6KF8qYwJs9g%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/CAPUw6Wa8r%2BhLykaW6WTgOq6wrZZ_Q0UxCZW14mxs74yKoJGugQ%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> regards
> Tribhuvan Kishor Bhaskar
> 9818078761
>


-- 
regards
Tribhuvan Kishor Bhaskar
9818078761

-- 
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 

Re: Multiple calls

2020-02-17 Thread tribhuvan kishor
add a unique field in csv and






*class AutocompleteView(APIView):def __init__(self):self.keys =
[]with open("search_terms_converteds.csv",'r') as file:
reader = csv.reader(file)for row in reader:*
*   if row.get("perticular unique id field").exist():*
*print("row already exist")*












*else:self.keys.append(row[1])
print("constructor execution")global tt = Trie()
t.formTrie(self.keys)def post(self,request):key = request.data
  print("key:",key)suggested_word =
t.printAutoSuggestions(key)return Response(suggested_word, status =
status.HTTP_200_OK)*

On Mon, Feb 17, 2020 at 7:49 PM Soumen Khatua 
wrote:

> Could you send me any code snippet or any link,Please?
>
> Thank you for your response
>
>
>
> On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
> tribhuvankishor...@gmail.com> wrote:
>
>> unique field in CSV
>>
>> On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
>> tribhuvankishor...@gmail.com> wrote:
>>
>>> i faced the same problem while i was dealing with CSV file.
>>> i gave a unique file in csv to make a check on the particular entry. by
>>> this way, i avoided multiple entries in my database
>>>
>>>
>>> On Mon, Feb 17, 2020 at 7:30 PM Soumen Khatua 
>>> wrote:
>>>
 Yeah, I'm trying to do it in your way but somehow it's not working in
 my script.

 Thanks for your valuable time.

 On Mon, Feb 17, 2020 at 7:27 PM Kasper Laudrup 
 wrote:

> Hi Soumen,
>
> On 17/02/2020 14.51, Soumen Khatua wrote:
> > Okay.
> > Is it possible to load the csv file one time do the POST or any
> request
> > multiple times without loading the same file.Of course If it is in
> same
> > class??
> >
>
> Yes, I just gave you some ideas on how that could be done.
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> 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/7dc857eb-eea2-73d0-f7e6-71af08efcd7f%40stacktrace.dk
> .
>
 --
 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/CAPUw6Wa392ghVCSkMfcgpf2AAMSaTXGHNKukX1KjWNx1Getr-g%40mail.gmail.com
 
 .

>>>
>>>
>>> --
>>> regards
>>> Tribhuvan Kishor Bhaskar
>>> 9818078761
>>>
>>
>>
>> --
>> regards
>> Tribhuvan Kishor Bhaskar
>> 9818078761
>>
>> --
>> 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/CACiphSVOXD9CXdio0qcFWjA03SJt8DuOF5cc7ou6KF8qYwJs9g%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/CAPUw6Wa8r%2BhLykaW6WTgOq6wrZZ_Q0UxCZW14mxs74yKoJGugQ%40mail.gmail.com
> 
> .
>


-- 
regards
Tribhuvan Kishor Bhaskar
9818078761

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


Re: Multiple calls

2020-02-17 Thread Soumen Khatua
Could you send me any code snippet or any link,Please?

Thank you for your response



On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
tribhuvankishor...@gmail.com> wrote:

> unique field in CSV
>
> On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
> tribhuvankishor...@gmail.com> wrote:
>
>> i faced the same problem while i was dealing with CSV file.
>> i gave a unique file in csv to make a check on the particular entry. by
>> this way, i avoided multiple entries in my database
>>
>>
>> On Mon, Feb 17, 2020 at 7:30 PM Soumen Khatua 
>> wrote:
>>
>>> Yeah, I'm trying to do it in your way but somehow it's not working in my
>>> script.
>>>
>>> Thanks for your valuable time.
>>>
>>> On Mon, Feb 17, 2020 at 7:27 PM Kasper Laudrup 
>>> wrote:
>>>
 Hi Soumen,

 On 17/02/2020 14.51, Soumen Khatua wrote:
 > Okay.
 > Is it possible to load the csv file one time do the POST or any
 request
 > multiple times without loading the same file.Of course If it is in
 same
 > class??
 >

 Yes, I just gave you some ideas on how that could be done.

 Kind regards,

 Kasper Laudrup

 --
 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/7dc857eb-eea2-73d0-f7e6-71af08efcd7f%40stacktrace.dk
 .

>>> --
>>> 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/CAPUw6Wa392ghVCSkMfcgpf2AAMSaTXGHNKukX1KjWNx1Getr-g%40mail.gmail.com
>>> 
>>> .
>>>
>>
>>
>> --
>> regards
>> Tribhuvan Kishor Bhaskar
>> 9818078761
>>
>
>
> --
> regards
> Tribhuvan Kishor Bhaskar
> 9818078761
>
> --
> 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/CACiphSVOXD9CXdio0qcFWjA03SJt8DuOF5cc7ou6KF8qYwJs9g%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/CAPUw6Wa8r%2BhLykaW6WTgOq6wrZZ_Q0UxCZW14mxs74yKoJGugQ%40mail.gmail.com.


Re: Multiple calls

2020-02-17 Thread tribhuvan kishor
unique field in CSV

On Mon, Feb 17, 2020 at 7:40 PM tribhuvan kishor <
tribhuvankishor...@gmail.com> wrote:

> i faced the same problem while i was dealing with CSV file.
> i gave a unique file in csv to make a check on the particular entry. by
> this way, i avoided multiple entries in my database
>
>
> On Mon, Feb 17, 2020 at 7:30 PM Soumen Khatua 
> wrote:
>
>> Yeah, I'm trying to do it in your way but somehow it's not working in my
>> script.
>>
>> Thanks for your valuable time.
>>
>> On Mon, Feb 17, 2020 at 7:27 PM Kasper Laudrup 
>> wrote:
>>
>>> Hi Soumen,
>>>
>>> On 17/02/2020 14.51, Soumen Khatua wrote:
>>> > Okay.
>>> > Is it possible to load the csv file one time do the POST or any
>>> request
>>> > multiple times without loading the same file.Of course If it is in
>>> same
>>> > class??
>>> >
>>>
>>> Yes, I just gave you some ideas on how that could be done.
>>>
>>> Kind regards,
>>>
>>> Kasper Laudrup
>>>
>>> --
>>> 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/7dc857eb-eea2-73d0-f7e6-71af08efcd7f%40stacktrace.dk
>>> .
>>>
>> --
>> 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/CAPUw6Wa392ghVCSkMfcgpf2AAMSaTXGHNKukX1KjWNx1Getr-g%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> regards
> Tribhuvan Kishor Bhaskar
> 9818078761
>


-- 
regards
Tribhuvan Kishor Bhaskar
9818078761

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


Re: Multiple calls

2020-02-17 Thread tribhuvan kishor
i faced the same problem while i was dealing with CSV file.
i gave a unique file in csv to make a check on the particular entry. by
this way, i avoided multiple entries in my database


On Mon, Feb 17, 2020 at 7:30 PM Soumen Khatua 
wrote:

> Yeah, I'm trying to do it in your way but somehow it's not working in my
> script.
>
> Thanks for your valuable time.
>
> On Mon, Feb 17, 2020 at 7:27 PM Kasper Laudrup 
> wrote:
>
>> Hi Soumen,
>>
>> On 17/02/2020 14.51, Soumen Khatua wrote:
>> > Okay.
>> > Is it possible to load the csv file one time do the POST or any request
>> > multiple times without loading the same file.Of course If it is in same
>> > class??
>> >
>>
>> Yes, I just gave you some ideas on how that could be done.
>>
>> Kind regards,
>>
>> Kasper Laudrup
>>
>> --
>> 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/7dc857eb-eea2-73d0-f7e6-71af08efcd7f%40stacktrace.dk
>> .
>>
> --
> 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/CAPUw6Wa392ghVCSkMfcgpf2AAMSaTXGHNKukX1KjWNx1Getr-g%40mail.gmail.com
> 
> .
>


-- 
regards
Tribhuvan Kishor Bhaskar
9818078761

-- 
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/CACiphSW%3DVVWJtXX%2BUsS02eWfr4yh39P5qJu_K-10xA_QM8gf%3Dg%40mail.gmail.com.


Re: Multiple calls

2020-02-17 Thread Soumen Khatua
Yeah, I'm trying to do it in your way but somehow it's not working in my
script.

Thanks for your valuable time.

On Mon, Feb 17, 2020 at 7:27 PM Kasper Laudrup 
wrote:

> Hi Soumen,
>
> On 17/02/2020 14.51, Soumen Khatua wrote:
> > Okay.
> > Is it possible to load the csv file one time do the POST or any request
> > multiple times without loading the same file.Of course If it is in same
> > class??
> >
>
> Yes, I just gave you some ideas on how that could be done.
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> 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/7dc857eb-eea2-73d0-f7e6-71af08efcd7f%40stacktrace.dk
> .
>

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


Re: Multiple calls

2020-02-17 Thread Kasper Laudrup

Hi Soumen,

On 17/02/2020 14.51, Soumen Khatua wrote:

Okay.
Is it possible to load the csv file one time do the POST or any request 
multiple times without loading the same file.Of course If it is in same 
class??




Yes, I just gave you some ideas on how that could be done.

Kind regards,

Kasper Laudrup

--
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/7dc857eb-eea2-73d0-f7e6-71af08efcd7f%40stacktrace.dk.


Re: Multiple calls

2020-02-17 Thread Soumen Khatua
Okay.
Is it possible to load the csv file one time do the POST or any request
multiple times without loading the same file.Of course If it is in same
class??


On Mon, Feb 17, 2020 at 7:14 PM Kasper Laudrup 
wrote:

> Hi Soumen,
>
> On 17/02/2020 14.31, Soumen Khatua wrote:
> > Hi Folks,
> > Actually I want to load the csv file for first time only afterwards I
> > don't want to load the csv files,but everytime when i'm calling the url
> > the same csv fie is loading for the same operation.How I can restrict it
> > for multiple loadings?
>
> As a quick and dirty solution, you could probably use a class variable:
>
>
> https://docs.python.org/3/tutorial/classes.html#class-and-instance-variables
>
> But a nicer way would be to have some kind of service or similar that
> the view could call or perhaps abstract the CSV file as a Django model.
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> 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/cdb81c92-9cd9-7401-ef86-67c9fc643000%40stacktrace.dk
> .
>

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


Re: Multiple calls

2020-02-17 Thread Kasper Laudrup

Hi Soumen,

On 17/02/2020 14.31, Soumen Khatua wrote:

Hi Folks,
Actually I want to load the csv file for first time only afterwards I 
don't want to load the csv files,but everytime when i'm calling the url 
the same csv fie is loading for the same operation.How I can restrict it 
for multiple loadings?


As a quick and dirty solution, you could probably use a class variable:

https://docs.python.org/3/tutorial/classes.html#class-and-instance-variables

But a nicer way would be to have some kind of service or similar that 
the view could call or perhaps abstract the CSV file as a Django model.


Kind regards,

Kasper Laudrup

--
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/cdb81c92-9cd9-7401-ef86-67c9fc643000%40stacktrace.dk.


Re: Attribute Error

2020-02-17 Thread maninder singh Kumar
Have you tried putting a print statement in views.py RegisterStudent to get to 
an output in the server.
Perhaps the problem is in the template and the get isn't even coming to the view

Sent from my iPad

> On 17-Feb-2020, at 6:30 PM, Adam Mičuda  wrote:
> 
> Hi,
> you have to return instance of `django.http.HttpResponse` class from you view 
> `RegisterStudent` instead of string: line 98 and line 99.
> 
> see 
> https://docs.djangoproject.com/en/3.0/ref/request-response/#django.http.HttpResponse
> 
> Regards.
> 
> Adam
> 
> 
> po 17. 2. 2020 v 13:49 odesílatel Ernest Thuku  napsal:
>> Hello guys please help on the error. I have been stuck for days now.
>> I am Ernest from Kenya.
>> please look into these files below
>> -- 
>> 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/CAPsfuofNxRkkcP4WtnG7cF-mbrN-GvgD4ene%3D0i_ChK6N8VVcw%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/CAB9%3DGXYFq4HcbGM3vPj8aKYAZd3LWc6mJZ19eKuR7v1xjTHM4Q%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/597EBAE3-0491-4B0A-A59C-791804ED56D4%40gmail.com.


Multiple calls

2020-02-17 Thread Soumen Khatua
Hi Folks,
Actually I want to load the csv file for first time only afterwards I don't
want to load the csv files,but everytime when i'm calling the url the same
csv fie is loading for the same operation.How I can restrict it for
multiple loadings?
*Here is my code:*


















*class AutocompleteView(APIView):def __init__(self):self.keys =
[]with open("search_terms_converteds.csv",'r') as file:
reader = csv.reader(file)for row in reader:
self.keys.append(row[1])print("constructor execution")
global tt = Trie()t.formTrie(self.keys)def
post(self,request):key = request.dataprint("key:",key)
  suggested_word = t.printAutoSuggestions(key)return
Response(suggested_word, status = status.HTTP_200_OK)*

*Thank you in advance*

*Regards,*
*Soumen*

-- 
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/CAPUw6WY1HOW6rWTkF0Pr5iKnb91YyLCdc3UtXVvC6%3DNd0dKKEw%40mail.gmail.com.


Re: Any newbies especially in Cape Town for meetups?

2020-02-17 Thread Francis Butawu
I said Cape Town as i want this to be a group where we will be meeting like
once a month in person and learn form each other as well as helping each
other out

On Mon, Feb 17, 2020 at 3:07 PM Chucky Mada Madamombe 
wrote:

> I suggest a group for everyone in RSA is fine and not just CAPETOWN. I am
> interested!
>
> Regards
>
> Chuck G. Madamombe
> NAM: +264 81 842 1284
> RSA: +27 78 208 7034
> Twitter: @chuckygari
> Skype: chuckygari
> Facebook: Chucky Mada Madamombe
> LinkedIn: Chucknorris Garikayi Madamombe
>
> On Sun, 16 Feb 2020, 00:05 Francis Butawu  wrote:
>
>> Hi All
>>
>> I'm new to Django and I'm looking for some people to organize a meetup
>> with and learn from each other ideally those in Cape Town pls reach out
>>
>> --
>> 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/841891a5-2df4-4c2e-ab5c-6f2ee7a9b44d%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/CAJaKOscHUcQDyD29P-tAhfQxQkk%3DwFg6XiyD708YqKb5T-zaHg%40mail.gmail.com
> 
> .
>


-- 
Kind regards;

*Francis Butawu*
*IT Developer*

*0721163991 / 0733008074*
LinkedIn 
franc...@techcape.co.za
www.techcape.co.za
skypealpha_geek

-- 
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%2B_DYLnoxcY_vFTTB6E7PBSJY9fSrCtBGMGfLq1X73i1H6OLAQ%40mail.gmail.com.


Re: Any newbies especially in Cape Town for meetups?

2020-02-17 Thread Chucky Mada Madamombe
I suggest a group for everyone in RSA is fine and not just CAPETOWN. I am
interested!

Regards

Chuck G. Madamombe
NAM: +264 81 842 1284
RSA: +27 78 208 7034
Twitter: @chuckygari
Skype: chuckygari
Facebook: Chucky Mada Madamombe
LinkedIn: Chucknorris Garikayi Madamombe

On Sun, 16 Feb 2020, 00:05 Francis Butawu  wrote:

> Hi All
>
> I'm new to Django and I'm looking for some people to organize a meetup
> with and learn from each other ideally those in Cape Town pls reach out
>
> --
> 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/841891a5-2df4-4c2e-ab5c-6f2ee7a9b44d%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/CAJaKOscHUcQDyD29P-tAhfQxQkk%3DwFg6XiyD708YqKb5T-zaHg%40mail.gmail.com.


Re: Attribute Error

2020-02-17 Thread Ayser shuhaib
Pleas provide the code for clickjacking.py

On Mon, 17 Feb 2020 at 14:50, Ernest Thuku  wrote:

> Hello guys please help on the error. I have been stuck for days now.
> I am Ernest from Kenya.
> please look into these files below
>
> --
> 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/CAPsfuofNxRkkcP4WtnG7cF-mbrN-GvgD4ene%3D0i_ChK6N8VVcw%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/CAE0AZGJ-VqRLv6oD%2BEHBO6T_DqHq1YinH69k7-EaQz-m33WS7w%40mail.gmail.com.


Re: Attribute Error

2020-02-17 Thread Adam Mičuda
Hi,
you have to return instance of `django.http.HttpResponse` class from you
view `RegisterStudent` instead of string: *line 98* and *line 99*.

see
https://docs.djangoproject.com/en/3.0/ref/request-response/#django.http.HttpResponse

Regards.

Adam


po 17. 2. 2020 v 13:49 odesílatel Ernest Thuku 
napsal:

> Hello guys please help on the error. I have been stuck for days now.
> I am Ernest from Kenya.
> please look into these files below
>
> --
> 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/CAPsfuofNxRkkcP4WtnG7cF-mbrN-GvgD4ene%3D0i_ChK6N8VVcw%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/CAB9%3DGXYFq4HcbGM3vPj8aKYAZd3LWc6mJZ19eKuR7v1xjTHM4Q%40mail.gmail.com.


Re: Any newbies especially in Cape Town for meetups?

2020-02-17 Thread Francis Butawu
That's what I'm thinking of doing

On Mon, Feb 17, 2020, 12:16 PM Bruckner de Villiers <
bruckner.devilli...@gmail.com> wrote:

> Why not start a Django Meetup Group?  There is already a Python Meetup
> Group.  I would be interested.
> Regards,
>
> Bruckner de Villiers
> 083 625 1086
>
> On 2020/02/16, 12:16, "Perceval Maturure"  on behalf of drperce...@gmail.com> wrote:
>
> That’s a good point. How about, could you elaborate on how this can be
> done? Skype calls? Skype groups?
> Please share what you have in mind
> Regards
> Perceval
>
> > On 15 Feb 2020, at 23:42, Francis Butawu  wrote:
> >
> > Hi All
> >
> > I'm new to Django and I'm looking for some people to organize a
> meetup with and learn from each other ideally those in Cape Town pls reach
> out
> >
> > --
> > 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/841891a5-2df4-4c2e-ab5c-6f2ee7a9b44d%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/38F77DB0-2AE3-4257-BE5A-32C1E819C6CB%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/CDB75CDD-959F-4576-B12B-A66BA455C550%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/CA%2B_DYLnRHE11pwDcLn2W%3Dh%2B%2B0kJTLwcNvEpgETihkPHpqy2Uxw%40mail.gmail.com.


Re: TINYMCE Configuration on Django

2020-02-17 Thread Ahmed Hashim
Check sentdex tutorial on youtube "Django Web Development with Python" it
has great learning with tinymce also.

thanks

Ahmed

On Mon, Feb 17, 2020 at 12:34 AM Hedrick Godson's 
wrote:

> https://django-tinymce.readthedocs.io/en/latest/installation.html
>
>
> That will help
>
> On Sun, 16 Feb 2020, 22:27  wrote:
>
>> Configured as you specified below but still problem persist
>>
>>
>>
>> *From:* django-users@googlegroups.com  *On
>> Behalf Of *Omkar Parab
>> *Sent:* Sunday, 16 February 2020 22:01
>> *To:* django-users@googlegroups.com
>> *Subject:* Re: TINYMCE Configuration on Django
>>
>>
>>
>> Ckeditor is also cool, and easy to use in production.
>>
>>
>>
>> On Mon, Feb 17, 2020, 12:02 AM Hedrick Godson's 
>> wrote:
>>
>> In ur settings.py file add this
>>
>> Add to installed apps
>>
>> INSTALLED_APPS = [
>>
>> 'tinymce',
>>
>>
>>
>> ]
>>
>>
>>
>> Configure it
>>
>>
>>
>> TINYMCE_DEFAULT_CONFIG = {
>>
>> 'plugins' :"image, imagetools, media, codesample,link, code, textcolor,
>> save, preview, table",
>>
>> 'theme' : 'modern',
>>
>> 'cleanup_on_startup' : True,
>>
>> 'menubar' : True,
>>
>> 'statusbar' : True
>>
>>
>>
>> }
>>
>> You can also add a lot of features, read their docs is straight
>>
>>
>>
>> On Sun, 16 Feb 2020, 18:13  wrote:
>>
>> On settings.py
>>
>>
>>
>> # TIYMCE
>>
>> DJANGO_SETTINGS_MODULE='testtinymce.settings'
>>
>>
>>
>> *From:* django-users@googlegroups.com  *On
>> Behalf Of *Hedrick Godson's
>> *Sent:* Sunday, 16 February 2020 17:57
>> *To:* django-users@googlegroups.com
>> *Subject:* Re: TINYMCE Configuration on Django
>>
>>
>>
>> How did you configure tinymce in settings.py?You have to add other
>> functionalities too.
>>
>>
>>
>> On Sun, 16 Feb 2020, 17:43 N'BE SORO  wrote:
>>
>> Hello, please use tinymce 4 Lite
>>
>>
>>
>> https://github.com/Soro08/django-tinymce4-lite
>>
>>
>>
>> Le dim. 16 févr. 2020 à 14:28,  a écrit :
>>
>> Hello
>>
>> Am Luqman from Tanzania
>>
>> Am trying to configure tinymce on one of my project(blog).
>>
>> My Post model as show below
>>
>>
>>
>>
>>
>> The problem is, it doesn’t display correctly on the admin as expected.
>>
>>
>>
>> I would like to ask for your support
>>
>> --
>> 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/00bf01d5e4d5%2457b58ae0%240720a0a0%24%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/CAOtSHp8HK5%3DcMBxPpKXoEL5qwkJxMuAyUGVj9QnszzLV%3DhT_%3Dg%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/CAJAxQDmoKPmF3fnuwEuUwz-cTk%2BPFZ%2B2uydxDZeHPYNQN6Me%3DA%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/00e801d5e4db%249eec3a70%24dcc4af50%24%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/CAJAxQDnAjazzswzqdBgNai2rksv7gTJs0%2B%2Bhaf4%3DbXPyM5uZ3g%40mail.gmail.com
>> 
>> .
>>
>> --
>> You received this message because you are 

Re: Image overwrite

2020-02-17 Thread Soumen Khatua
okay,thank you

On Mon, Feb 17, 2020 at 5:46 PM onlinejudge95 
wrote:

> On Sun, Feb 16, 2020 at 11:09 AM Soumen Khatua 
> wrote:
>
>> Hi Folks,
>>
>> I have a model where user can upload their image.
>>
>
> I am assuming you are not storing the image as a blob but rather as an
> object in some object storage.
>
>
>> But after uploading a new image the old image is still their but as for
>> my convention if a user upload his new image the old image should not be
>> their, If anyone know please tell me How I can do that??
>>
>
> You just need to UPDATE the path of your image to the new one and make
> sure it is that path only that you serve back to the user. This goes well
> even if you are storing the image as a blob in your DB(but I prefer not to,
> it is a long debatable topic)
>
>
>> Thank you
>>
>> Regards,
>> Soumen
>>
>>
>>
>> --
>> 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/CAPUw6Wa%3DhcFc0r-n6m37w-ZiQL%3DtJh8JeXX1dc2x2-HbZVyocA%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/CAD%3DM5eQ3QhUTYkEf-Tn2KOiRd8niWcJbD75YuBtCtOvyq6ksjg%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/CAPUw6WbsjZcXmdJX%2BBicmrHBh-2tCDfWcfaj0o1XkE9p0kt9oA%40mail.gmail.com.


Re: Bootstrap not found

2020-02-17 Thread onlinejudge95
On Sun, Feb 16, 2020 at 8:36 PM Alessandro D' Oronzo 
wrote:

> Hi everyone,
> I have a problem with load bootstrap on my generic_template.
>
As best practices go around, try to include the static assets like CSS, js
from a CDN instead of downloading and manually serving them

>
> This is error output:
> [16/Feb/2020 14:57:37] "GET / HTTP/1.1" 200 2239
> [16/Feb/2020 14:57:37] "GET
> /static/vendor/bootstrap/css/bootstrap.min.css HTTP/1.1" 404 1740
> [16/Feb/2020 14:57:37] "GET
> /static/vendor/bootstrap/js/bootstrap.bundle.min.js HTTP/1.1" 404 1755
> [16/Feb/2020 14:57:37] "GET /static/css/the-big-picture.css HTTP/1.1" 404
> 1695
> [16/Feb/2020 14:57:37] "GET /static/vendor/jquery/jquery.min.js HTTP/1.1"
> 404 1707
> [16/Feb/2020 14:57:37] "GET
> /static/vendor/bootstrap/js/bootstrap.bundle.min.js HTTP/1.1" 404 1755
>
> Can someone help me?
> Thanks you!
>
> --
> 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/2F896088-95FB-4906-A2D5-0F8421907AE2%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/CAD%3DM5eR9zN%2BfvnCkkCG6f7CQ%3D0DT3fBb6_7uqb9s1y235Mh%2BPA%40mail.gmail.com.


Re: How to create custom registration form in django rest api?

2020-02-17 Thread onlinejudge95
On Sun, Feb 16, 2020 at 3:19 PM maunish dave 
wrote:

> I am creating an health care app which need to include patients and
> doctors account, i have created Doctor model which have various info of
> doctor now i want a serializer  which maps this model to a proper html
> registration form.
>
You can use DRF serializers or use marshmallow

> My problem is that i can get a normal form rendered but it is only storing
> data to Doctors database but not creating a new user.
>
> --
> 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/CALpJ3uJj-hf-T5dx_5t6WXRqG_XRuex5r0MKE9E3gcHWCvFKDw%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/CAD%3DM5eTneAPrSYYv9%2BiY%3DUbGa3TKMNDvX7S8EZqXxH5qA%3D9gjA%40mail.gmail.com.


Re: Retaining text in search input boxes

2020-02-17 Thread onlinejudge95
On Sun, Feb 16, 2020 at 11:26 AM maninder singh Kumar <
maninder.s.ku...@gmail.com> wrote:

> Wouldn't the value field make it fixed ?
>
Sure but you can always grab what value to insert from your views. If it is
the first time form is being filled than simply use nothing as value, if
the user tries to submit the form and have an error then just fill the
values with corresponding data

>
>
> [image: --]
>
> Maninder Kumar
> [image: http://]about.me/maninder.s.kumar
> 
>
>
>
>
> On Sun, Feb 16, 2020 at 12:22 AM Dick Arnold  wrote:
>
>> I have a personnel database which has to be edited to keep it current.
>> I have created search parameters to find the person to edit.
>> The exact name of the person is not always known, therefore the name
>> field for searching can contain only a few of the characters.  This can
>> create a list of several people.
>> After the search parameters are entered a "Search" button is clicked and
>> the output, if any, is displayed in a table.
>> If the search parameters need to be improved, I want the original
>> (current) search argument to be retained in the argument field so I do not
>> need to re-type ALL the search parameters, just the ones I want to change.
>>
>> I have not been able to find a way to retain the value in the search
>> input box,
>>
>> Does anyone know how to accomplish this?
>>
>> Here's the input for one of the input boxes.
>>
>> 
>>
>> --
>> 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/92cfccd1-5916-4817-ae46-c612aa462610%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/CABOHK3SPDFdvajS9GyqhxHSvXw5eEQpHU9ax7NOtFhsM4W_wyg%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/CAD%3DM5eSrte_tF0h6gVpmaG6iJZ7piXiekJjUL4d2zMQgL5SiZA%40mail.gmail.com.


Re: Image overwrite

2020-02-17 Thread onlinejudge95
On Sun, Feb 16, 2020 at 11:09 AM Soumen Khatua 
wrote:

> Hi Folks,
>
> I have a model where user can upload their image.
>

I am assuming you are not storing the image as a blob but rather as an
object in some object storage.


> But after uploading a new image the old image is still their but as for my
> convention if a user upload his new image the old image should not be
> their, If anyone know please tell me How I can do that??
>

You just need to UPDATE the path of your image to the new one and make sure
it is that path only that you serve back to the user. This goes well even
if you are storing the image as a blob in your DB(but I prefer not to, it
is a long debatable topic)


> Thank you
>
> Regards,
> Soumen
>
>
>
> --
> 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/CAPUw6Wa%3DhcFc0r-n6m37w-ZiQL%3DtJh8JeXX1dc2x2-HbZVyocA%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/CAD%3DM5eQ3QhUTYkEf-Tn2KOiRd8niWcJbD75YuBtCtOvyq6ksjg%40mail.gmail.com.


Re: Any newbies especially in Cape Town for meetups?

2020-02-17 Thread paarull shukla
Heloo sir. Send me link of python group please i want to join that group

On Mon, 17 Feb, 2020, 3:46 PM Bruckner de Villiers, <
bruckner.devilli...@gmail.com> wrote:

> Why not start a Django Meetup Group?  There is already a Python Meetup
> Group.  I would be interested.
> Regards,
>
> Bruckner de Villiers
> 083 625 1086
>
> On 2020/02/16, 12:16, "Perceval Maturure"  on behalf of drperce...@gmail.com> wrote:
>
> That’s a good point. How about, could you elaborate on how this can be
> done? Skype calls? Skype groups?
> Please share what you have in mind
> Regards
> Perceval
>
> > On 15 Feb 2020, at 23:42, Francis Butawu  wrote:
> >
> > Hi All
> >
> > I'm new to Django and I'm looking for some people to organize a
> meetup with and learn from each other ideally those in Cape Town pls reach
> out
> >
> > --
> > 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/841891a5-2df4-4c2e-ab5c-6f2ee7a9b44d%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/38F77DB0-2AE3-4257-BE5A-32C1E819C6CB%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/CDB75CDD-959F-4576-B12B-A66BA455C550%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/CACLQzsdmU8nV67YCT91PipjBiSXFEvWPp%3DFkAoWvfa%3DQjPinLA%40mail.gmail.com.


Re: Any newbies especially in Cape Town for meetups?

2020-02-17 Thread Bruckner de Villiers
Why not start a Django Meetup Group?  There is already a Python Meetup Group.  
I would be interested.
Regards,

Bruckner de Villiers
083 625 1086

On 2020/02/16, 12:16, "Perceval Maturure"  wrote:

That’s a good point. How about, could you elaborate on how this can be 
done? Skype calls? Skype groups?
Please share what you have in mind
Regards
Perceval

> On 15 Feb 2020, at 23:42, Francis Butawu  wrote:
> 
> Hi All
> 
> I'm new to Django and I'm looking for some people to organize a meetup 
with and learn from each other ideally those in Cape Town pls reach out 
> 
> -- 
> 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/841891a5-2df4-4c2e-ab5c-6f2ee7a9b44d%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/38F77DB0-2AE3-4257-BE5A-32C1E819C6CB%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/CDB75CDD-959F-4576-B12B-A66BA455C550%40gmail.com.