Re: ?? question ,its urgent

2022-06-26 Thread Wazed Khan
Thanks

On Mon, Jun 27, 2022, 4:44 AM Ryan Nowakowski  wrote:

> An alternative to storing all values in a single model field is to use EAV:
>
>
> https://en.m.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value_model
>
> On June 20, 2022 1:46:42 AM CDT, Abhinandan K 
> wrote:
>>
>> how to store the data in django databse table if user append fields
>> according to their need
>> for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
>> if user click on + sign row append one plus in form..my question is that
>> i want to store the data in all appended textboxes in single field in
>> database,,
>>
>> --
> 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/EBCA9EAF-4AD3-4367-82C6-0177C7F9E66E%40fattuba.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/CALWCTKgefU3kBRgKFu66yL%3DCTyDrtdqxr0ZMqCz5wnNxVSgELA%40mail.gmail.com.


Re: ?? question ,its urgent

2022-06-26 Thread Ryan Nowakowski
An alternative to storing all values in a single model field is to use EAV:

https://en.m.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value_model

On June 20, 2022 1:46:42 AM CDT, Abhinandan K  
wrote:
>how to store the data in django databse table if user append fields
>according to their need
>for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
>if user click on + sign row append one plus in form..my question is that i
>want to store the data in all appended textboxes in single field in
>database,,
>
>-- 
>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/CAA6_Mp6UPLakoi-JhcgB4U89-iKfDwAaxDWwW547tFKyk_imrg%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/EBCA9EAF-4AD3-4367-82C6-0177C7F9E66E%40fattuba.com.


Re: ?? question ,its urgent

2022-06-23 Thread Soumen Khatua
Better use JSON Field to store all the informations

On Mon, Jun 20, 2022 at 12:16 PM Abhinandan K 
wrote:

> how to store the data in django databse table if user append fields
> according to their need
> for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
> if user click on + sign row append one plus in form..my question is that i
> want to store the data in all appended textboxes in single field in
> database,,
>
> --
> 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/CAA6_Mp6UPLakoi-JhcgB4U89-iKfDwAaxDWwW547tFKyk_imrg%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/CAPUw6WZmMSjWKoTxGvmvuk_paEkvpvD5NjX0ri7cRrDe%2BtMtfg%40mail.gmail.com.


Re: ?? question ,its urgent

2022-06-20 Thread Wazed Khan
You could make the fields as not required like name = models.CharField(blank
=True) I could be wrong or Didn't get your question if I'm in one of them
ignore the suggestion.


On Mon, Jun 20, 2022 at 12:47 PM Abhinandan K 
wrote:

> how to store the data in django databse table if user append fields
> according to their need
> for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
> if user click on + sign row append one plus in form..my question is that i
> want to store the data in all appended textboxes in single field in
> database,,
>
> --
> 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/CAA6_Mp6UPLakoi-JhcgB4U89-iKfDwAaxDWwW547tFKyk_imrg%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/CALWCTKhVqkXBJseb2XsSFyztqjmKxxCbH_tNYmY-LAQuwUMkVQ%40mail.gmail.com.


Re: ?? question ,its urgent

2022-06-20 Thread Seelam Mahesh
Use quarey set

On Mon, 20 Jun, 2022, 12:17 pm Abhinandan K, 
wrote:

> how to store the data in django databse table if user append fields
> according to their need
> for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
> if user click on + sign row append one plus in form..my question is that i
> want to store the data in all appended textboxes in single field in
> database,,
>
> --
> 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/CAA6_Mp6UPLakoi-JhcgB4U89-iKfDwAaxDWwW547tFKyk_imrg%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/CALM4eXRH-uOb-aQ7vW3aHoSkL5JumF5pvxK7SQfEuxswcGK0Og%40mail.gmail.com.


Re: ?? question ,its urgent

2022-06-20 Thread Paul Kudla (SCOM.CA Internet Services Inc.)



Just an fyi your email showed up as suspect ??

spf=softfail (google.com: domain of transitioning 
abhinan...@snakescript.com does not designate 2607:f8b0:4864:20::62b as 
permitted sender)


might want to get that fixed




Happy Monday !!!
Thanks - paul

Paul Kudla


Scom.ca Internet Services 
004-1009 Byron Street South
Whitby, Ontario - Canada
L1N 4S3

Toronto 416.642.7266
Main 1.866.411.7266
Fax 1.888.892.7266
Email p...@scom.ca

On 6/20/2022 2:46 AM, Abhinandan K wrote:
how to store the data in django databse table if user append fields 
according to their need

for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
if user click on + sign row append one plus in form..my question is that 
i want to store the data in all appended textboxes in single field in 
database,,


--
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/CAA6_Mp6UPLakoi-JhcgB4U89-iKfDwAaxDWwW547tFKyk_imrg%40mail.gmail.com 
.


--
This message has been scanned for viruses and
dangerous content by *MailScanner* , and is
believed to be clean.


--
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/f5251350-9b5b-a938-408f-124b590b5c37%40scom.ca.


Re: ?? question ,its urgent

2022-06-20 Thread Abhishek Choudhury
Hi Abhinandan,

You can create a JSON field as dict and accordingly add key values to that
dictionary (provided by the + add option in frontend). Hope this helps.

Thanks and regards,
Abhishek

On Mon, 20 Jun 2022 at 12:17 PM, Abhinandan K 
wrote:

> how to store the data in django databse table if user append fields
> according to their need
> for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
> if user click on + sign row append one plus in form..my question is that i
> want to store the data in all appended textboxes in single field in
> database,,
>
> --
> 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/CAA6_Mp6UPLakoi-JhcgB4U89-iKfDwAaxDWwW547tFKyk_imrg%40mail.gmail.com
> 
> .
>
-- 
Thanks and regards,
Abhishek Choudhury
Mobile: +91 7903717967

-- 
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%2B3kJUbCuS3awFnL3op-MX3AB1pYQokpKwyaknr0C3fKqNj-XQ%40mail.gmail.com.


?? question ,its urgent

2022-06-20 Thread Abhinandan K
how to store the data in django databse table if user append fields
according to their need
for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
if user click on + sign row append one plus in form..my question is that i
want to store the data in all appended textboxes in single field in
database,,

-- 
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/CAA6_Mp6UPLakoi-JhcgB4U89-iKfDwAaxDWwW547tFKyk_imrg%40mail.gmail.com.


Re: its urgent...

2022-06-17 Thread Dylan Reinhold
I can tell you that your subject is probably going to keep anyone who can
help from helping.

Regards,
Dylan

On Fri, Jun 17, 2022, 10:10 Abhinandan K  wrote:

> is anybody know how to scrap all businesses from google maps and save into
> csv with selenium and whenever search that business it gave result of
> that business...
> also its important to me that how generate google maps api without
> billing...
>
> --
> 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/CAA6_Mp6QVZAY75%3DMHEugVpH5HBGBiGdyNyDf7QfkdiA1SHU39Q%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/CAHtg44BoecYxQNFMmQMxXhHfJfG5AAqOTwxGdYhmc-XgAHCTiA%40mail.gmail.com.


Re: its urgent...

2022-06-17 Thread Julio Cojom
You can try with rpa framework, for rpa, is better if you use xpath

Regards

El El vie, 17 de jun. de 2022 a la(s) 11:10, Abhinandan K <
abhinan...@snakescript.com> escribió:

> is anybody know how to scrap all businesses from google maps and save into
> csv with selenium and whenever search that business it gave result of
> that business...
> also its important to me that how generate google maps api without
> billing...
>
> --
> 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/CAA6_Mp6QVZAY75%3DMHEugVpH5HBGBiGdyNyDf7QfkdiA1SHU39Q%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/CAHRQUHm%2BeLWqo6cUh6oMhAZ11e4Xv92zPRiKOH50yPV7agms7g%40mail.gmail.com.


its urgent...

2022-06-17 Thread Abhinandan K
is anybody know how to scrap all businesses from google maps and save into
csv with selenium and whenever search that business it gave result of
that business...
also its important to me that how generate google maps api without
billing...

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