Re: Who can help me?

2020-08-22 Thread Kovy Jacob
whats the prob On Fri, Aug 21, 2020 at 9:30 AM Hella thor wrote: > Hey guys: > > My python version is 3.7.1 > Django version is 3.1 > > When I started the project > > [image: 9.png] > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To

Re: ERROR

2020-08-08 Thread Kovy Jacob
Are you switching into your projects directory and then using 'python manage.py runserver' from command prompt/terminal to run your website? On Sat, Aug 8, 2020 at 4:25 PM Agoua David wrote: > Can you send a screenshot of the view file > > Le sam. 8 août 2020 à 20:21, traore arouna a écrit : >

Re: Python-django project

2020-08-06 Thread Kovy Jacob
i mean project. Do you have a specific project in mind? On Thu, Aug 6, 2020 at 12:26 PM Kovy Jacob wrote: > do you have a specific question in mind? > > On Thu, Aug 6, 2020 at 9:36 AM Lahu Chavan wrote: > >> i am also interested to join ur project. my whatsapp number &

Re: Python-django project

2020-08-06 Thread Kovy Jacob
do you have a specific question in mind? On Thu, Aug 6, 2020 at 9:36 AM Lahu Chavan wrote: > i am also interested to join ur project. my whatsapp number > is +917875279602 > > On Thu, Aug 6, 2020 at 6:56 PM gregory adomako > wrote: > >> Interested >> >> On Tuesday, July 21, 2020 at 4:09:08 AM

Re: django beginner

2020-08-05 Thread Kovy Jacob
If you want to learn, just try building a site, any site. Pick a hobby that you have, and make a site about you and your hobby. There is a concept in programming called MVP - minimum viable product. This means the minimum you can do to have a working site. I recommend that you figure out exactly

Re: Has anyone created eCommerce website with Django?

2020-08-05 Thread Kovy Jacob
I would recommend using shopify over wix, as it is meant for e-commerce, but django will give you many advantages. - Highly customizable, you can add on anything you want, easily - WAY cheaper, you can host a django site for a few dollars a month - It gives you unlimited expansion, a day will

Re: field for html

2020-08-05 Thread Kovy Jacob
e" allowfullscreen>* > > On Mon, Aug 3, 2020 at 11:16 PM neeraj garg wrote: > >> Try to use django *safe *filter to render this as html. >> >> On Mon, Aug 3, 2020 at 8:35 PM Kovy Jacob wrote: >> >>> Hi, is there a type of field for djang

ChoiceField in from module not working

2020-08-05 Thread Kovy Jacob
I am trying to have a ChoiceField in a form, but it gives me this error: from TachlisGeredt.register_form import register File "/Users/kovyjacob/TachlisGeredt/TachlisGeredt/register_form.py", line 10, in class RegisterForm (forms.Form): File

field for html

2020-08-03 Thread Kovy Jacob
Hi, is there a type of field for django data models that's for html? I want to have youtube embed links, which is a bunch of html fo putting a youtube video on your site. Itlooks like this: "https://www.youtube.com/embed/Rj_vssRaZlQ; frameborder="0" allow="accelerometer; autoplay; encrypted-media;

Re: Django key/value JSON widget

2020-07-30 Thread Kovy Jacob
Are you not able to use the regular python module for interacting with json files? > On Jul 22, 2020, at 2:34 PM, Federico Capoano > wrote: > > https://django-hstore.readthedocs.io/en/latest/#django-admin-widget > -- You

Re: Site not Secure only on Google Chrome

2020-07-26 Thread Kovy Jacob
I don’t know how to fix that, but I checked out the site on safari - it looks REALLY cool! Its really cool you made that with Django! > On Jul 26, 2020, at 11:07 AM, Anirudh choudhary > wrote: > > Hello everyone > > I hosted my app on Heroku. when is try to access www.apnaganna.herokuapp.com

Re: Import csv file on django view

2020-07-22 Thread Kovy Jacob
nce or raw data and then detect the encoding > format. With its prediction, if you want to open that puece of data in text > mode, you can use the .decode() method of bytes object to > get a python string. > > On Wed, 22 Jul 2020 at 11:04 PM, Kovy Jacob <mailto:kovy.ja...@gma

Re: Import csv file on django view

2020-07-22 Thread Kovy Jacob
akes a sequence or raw data and then detect the encoding > format. With its prediction, if you want to open that puece of data in text > mode, you can use the .decode() method of bytes object to > get a python string. > > On Wed, 22 Jul 2020 at 11:04 PM, Kovy Jacob <ma

Re: Import csv file on django view

2020-07-22 Thread Kovy Jacob
that I > am using, it is the logic that I want to incorporate in a view > > El mié., 22 jul. 2020 a las 10:43, Kovy Jacob ( <mailto:kovy.ja...@gmail.com>>) escribió: > Ah, so is the problem that you don’t always know what the delimiter is when > you read it? If yes, what

Re: Import csv file on django view

2020-07-22 Thread Kovy Jacob
I'm using csv module, but I need to handle the delimiters of the > files, sometimes you come separated by "," others by ";" and rarely by "|" > > El mié., 22 jul. 2020 a las 10:28, Kovy Jacob ( <mailto:kovy.ja...@gmail.com>>) escribió: > Could

Re: Import csv file on django view

2020-07-22 Thread Kovy Jacob
; Hi Kovy, I'm using csv module, but I need to handle the delimiters of the > files, sometimes you come separated by "," others by ";" and rarely by "|" > > El mié., 22 jul. 2020 a las 10:28, Kovy Jacob ( <mailto:kovy.ja...@gmail.com>>) escr

Error in manage.py when I do python manage.py runserver

2020-07-22 Thread Kovy Jacob
It gives me a syntax error Jacob-Mac-mini:TachlisGeredt kovyjacob$ python manage.py runserver 0.0.0.0:8000 File "manage.py", line 16 ) from exc: ^ SyntaxError: invalid syntax I didn’t edit manage.py yet, I literally just started the project. I was thinking maybe its a) a version error, or b) I

Re: Import csv file on django view

2020-07-22 Thread Kovy Jacob
Could you just use the standard python csv module? > On Jul 22, 2020, at 10:25 AM, Ronaldo Mata wrote: > > Hi Liu thank for your answer. > > This has been a headache, I am trying to read the file using csv.DictReader > initially i had an error trying to get the dict keys when iterating by

manage.py is giving me an error

2020-07-21 Thread Kovy Jacob
Jacob-Mac-mini:TachlisGeredt kovyjacob$ python manage.py runserver 0.0.0.0:8000 File "manage.py", line 16 ) from exc ^ SyntaxError: invalid syntax why am I getting an error, I never edited manage.py -- You received this message because you are subscribed to the Google