Re: RuntimeError: Model class polls38.polls.models.Question doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.

2020-12-03 Thread Ryan Gedwill
you may also need to change polls/apps.py to have a config class On Thu, Dec 3, 2020 at 5:31 PM Ryan Gedwill wrote: > you at least need to add 'polls' to your INSTALLED_APPS in settings.py. > You should also remove the line you put in manage.py - that file should > rarely be touch

Re: RuntimeError: Model class polls38.polls.models.Question doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.

2020-12-03 Thread Ryan Gedwill
you at least need to add 'polls' to your INSTALLED_APPS in settings.py. You should also remove the line you put in manage.py - that file should rarely be touched at all. This is not a system path problem On Thu, Dec 3, 2020 at 12:38 PM Ennio Santos wrote: > I developed some small web app

Re: .objects.all() issue

2020-02-22 Thread Ryan Gedwill
Can we see the code for the model? Are you sure the column name is author_id, and have you ensured it’s actually been migrated and exists in your database? Ryan Gedwill > On Feb 22, 2020, at 7:14 AM, Kolluri Mounish wrote: > >  > I have imported Post. But still i'm facin

Re: Looking for a job

2020-01-05 Thread Ryan Gedwill
Hi Erik, Yes, that sounds great. I am pretty open in the mornings this week, how about 10am PST Tuesday? Ryan Gedwill > On Jan 3, 2020, at 4:24 PM, Erik Gunderson wrote: > >  > Hi Ryan, > > I have a job in San Francisco that might be an interest for you as well. I

Looking for a job

2020-01-03 Thread Ryan Gedwill
Hello all, I am looking for a development job, specifically Python/Django but I have experience in other areas. I am located in Sacramento, CA (close enough to the SF bay area to commute). I am also available for remote work as well. Please see my resume attached Thank you Ryan Gedwill r

Re: Full Stack Developer (Python/Django) position requirement for US GC/Citizen/Can Citizen

2020-01-03 Thread Ryan Gedwill
I am interested in this position, please see resume attached. On Fri, Jan 3, 2020 at 2:16 PM Shirley Nelson wrote: > I am interested in this position. > > On Fri, Jan 3, 2020, 12:35 PM Yash Garg wrote: > >> For a large multi billion dollar Publishing house in New York, client >> needs a Full

Re: Raju | ITC Infotech - Looking for Backend Developers (Python/Django ORM - New York City )

2019-09-18 Thread Ryan Gedwill
Hi, I am interested in the position. I am available to work in US, but would need to relocate as I am located in California. Ryan Gedwill > On Sep 17, 2019, at 1:21 PM, Raju N Somanna wrote: > > Hi All > > I've an immediate need for Backend Developers (Python/Django ORM - N

Re: Hi, I'm new django. I want to learn Django. What's the first step.

2019-09-01 Thread Ryan Gedwill
My favorite is django-book. I used it as a reference for 2 years after I first started using Django. Ryan Gedwill > On Sep 1, 2019, at 7:09 AM, WebTrainingRoom Online > wrote: > > Hi! > you may find this useful > https://www.webtrainingroom.com/python/django-pro

Re: Looking for a Django co-founder

2019-03-15 Thread Ryan Gedwill
I would be interested to chat on the phone about your idea, if i'm optimistic about the success of the project I would be able to commit to it. On Thu, Mar 14, 2019 at 8:40 PM Zack Amaral wrote: > Django users, > > I'm looking for a Django developer that can commit to working 10 hours a > week

Re: I can't start django

2018-11-17 Thread Ryan Gedwill
Are you using a virtual environment? What version of python are you using? Try typing in the command line: python Then when the shell opens up, put import django Press enter. What does it say? Sent from my iPhone > On Nov 17, 2018, at 11:20 AM, epic christ wrote: > > what do you mean? > >

Re: Django jobs

2018-11-14 Thread Ryan Gedwill
> > > >> Like, say for perl, there's Larry's books, which provide a solid foundation >> for best practices. >> >> Sincerely yours, >> >> Joel G Mathew >> >> >> >> On Thu, 15 Nov 2018 at 08:49, Ryan Gedwill > <m

Re: Django jobs

2018-11-14 Thread Ryan Gedwill
uro Fernandez wrote: > > Thanks :) > >> On Wednesday, November 14, 2018 at 9:41:35 PM UTC-5, Ryan Gedwill wrote: >> I live in the SF Bay Area and there are no shortage of jobs in Django. It is >> true there are also plenty of jobs in Node, but you can’t compare a >>

Re: Django jobs

2018-11-14 Thread Ryan Gedwill
I live in the SF Bay Area and there are no shortage of jobs in Django. It is true there are also plenty of jobs in Node, but you can’t compare a framework to a backend language. I see far more python jobs than node jobs. 2 things to keep in mind though (for reference I’m a python/Django dev but

Re: copy schema when user register for login.

2018-11-08 Thread Ryan Gedwill
This is an interesting problem. So basically you need to migrate the entire schema upon the creation of a new user? Can the schema change for a new user, or will it always be the exact same? >From what I understand, you will need to ask the user for credentials for >database connection, and

Re: SyntaxError: keyword argument repeated

2018-11-08 Thread Ryan Gedwill
You can only pass in a keyword argument once, you pass in related_name twice in one of your properties Sent from my iPhone > On Nov 8, 2018, at 12:02 PM, Vishvajit Pathak wrote: > > in the code > >> parent = ForeignKey( >> 'customers.Zone', >> on_delete=models.CASCADE,

Re: Setting up admin in visual studio

2018-11-08 Thread Ryan Gedwill
You need to install django, then from the command line you can create the admin page, but the admin.py file will appear automatically when you create a django project Sent from my iPhone > On Nov 8, 2018, at 2:47 PM, Saeed Pooladzadeh wrote: > > Thanks for your help. > But this tutorial is

Re: I Suck

2018-10-24 Thread Ryan Gedwill
I felt the same as you while learning django, and I already had some professional experience. It is extremely overwhelming to learn something like this on your own. Even people who go to college and get internships don't have to go through it. Pick something you want to make, and break it down

Re: How to migrate old database into new database using python script

2018-10-11 Thread Ryan Gedwill
Depending on the SQL distribution you're using, there should be a couple tools to do this without python using a CLI command or a basic SQL script. If you need to do it in python, use a basic python library (again, depends on your sql distribution) to connect to your database and execute the SQL

Re: How do I make a field optional to enter, in a django ModelForm?

2018-09-12 Thread Ryan Gedwill
There may be a better way, but I’d set ‘required=False’ for the field. Then on the template where it is actually required, hardcode validation logic in either JS or with the template tags, by simply checking if the field is empty and displaying an error if it is empty, and submitting the form