ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread lakshmyyreddy
Hi Team My project name is Sample While I am trying to connect database with models.py I am finding these type of errors ModuleNotFoundError: No module named 'sample,' Can anybody help me. -- You received this message because you are subscribed to the Google Groups "Django users" group. To uns

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread Robin Riis
from .models import Sample Den tors 7 mars 2019 10:44 skrev: > Hi Team > > My project name is Sample > While I am trying to connect database with models.py > I am finding these type of errors > ModuleNotFoundError: No module named 'sample,' > Can anybody help me. > > -- > You received this messa

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread Alex Kimeu
Do you have a model named Sample in your models.py file of your app?? On Thu, 7 Mar 2019, 13:00 Robin Riis, wrote: > from .models import Sample > > Den tors 7 mars 2019 10:44 skrev: > >> Hi Team >> >> My project name is Sample >> While I am trying to connect database with models.py >> I am find

Looking for a cool co-founder / remote possible

2019-03-07 Thread ExpoTor com
ExpoTor.com is a young remote-first start-up in Germany looking for an ambition experienced full-stack Python(React) Developer to join our journey With our SaaS solution, we help SMEs at trade shows get more ROI and freelancers get more exposure and sell more in the MICE space. Time- and money-wa

Re: My developers have run amok

2019-03-07 Thread Derek
I am not sure I understand about the "size and synchronization" but I assume that is to do with them not giving you adequate infrastructure. I don't think the DB advice is in any way specific to Django - I'd make the same recommendation regardless of the framework being adopted - but obviously

Re: migrating from 2.7 to 3.x on Ubuntu

2019-03-07 Thread Ryan Nowakowski
Seems doable. I would leave nginx out of it and just run gunicorn Python 3 with Apache. Also I would do the release upgrade before. On March 4, 2019 10:40:21 PM CST, Mike Dewhirst wrote: >On the same host, is it viable to switch my Django projects away from >vhosts under Apache2/mod_wsgi/py2.7

Hi to all

2019-03-07 Thread Devendra reddy
how to create the spam in django send me code if any one have -- 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 post

linking django app to slurm db

2019-03-07 Thread Bissane Belhadji
Hi everyone! I've been working on this project with SLURM for quite a while now and I've been experiencing a massive writer's block, I'm working on a portal that will allow employees register to slurm's database and run their jobs on accounts along with several other things. I have built this d

Re: Problems with first program

2019-03-07 Thread Ranganath Kulkarni
Always use editors like pycharm which will take care of indentation if not it will complain syntax errors if there are any in your program. On Thursday, February 28, 2019 at 11:14:33 PM UTC, Edvani Pascoal wrote: > > hey guys I'm beginner on django I never worked with this framework before > and

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread 赖信桃
Did you add `sample` to INSTALLED_APPS? 于2019年3月7日周四 下午5:44写道: > Hi Team > > My project name is Sample > While I am trying to connect database with models.py > I am finding these type of errors > ModuleNotFoundError: No module named 'sample,' > Can anybody help me. > > -- > You received this mes

Re: How can I make users login to my site with facebook/twitter/google?

2019-03-07 Thread Ryan Nowakowski
For your https problem I recommend a service like localtunnel or ngrok. On March 5, 2019 11:19:16 AM CST, Sandip Nath wrote: >i want users to my site to log log in with facebook, twitter, google. >While >the development server supports only http fb/twitter/google expects >https. >What to do? >

Django credit card redaction app - - MultiValueDictKeyError

2019-03-07 Thread drone4four
Hello! I’m trying to run a basic Django app which redacts a 16 digit number entered by the user. I had a it running a few minutes ago. I’m not sure what I changed, but now I am getting a MultiValueDictKeyError. I’ve triple checked every variable. The only dictionary in my project is in views.

Re: Django credit card redaction app - - MultiValueDictKeyError

2019-03-07 Thread Sam Taiwo
I would be careful how you pass the data on get, somewhere in your front end code you are probably not passing the data through as you expected. Instead of using .GET, use .GET.get to get your data. This will either return the value you want, or none. I think you have made the error of not passing

Re: Django credit card redaction app - - MultiValueDictKeyError

2019-03-07 Thread drone4four
Thanks, Sam for the help. You wrote: I would be careful how you pass the data on get, somewhere in your front > end code you are probably not passing the data through as you expected. > Instead of using .GET, use .GET.get to get your data. This will either > return the value you want, or non

django.db.utils.OperationalError: no such table: user_user

2019-03-07 Thread cyril moreau
Hi, I have the following model that i use as AUTH_USER_MODEL : model.py class User(AbstractBaseUser, PermissionsMixin): email = models.EmailField(_('email address'), unique=True) password = models.CharField(_('password'), max_length=255, blank=False) first_name = models.CharField(_('fi

RE: Django credit card redaction app - - MultiValueDictKeyError

2019-03-07 Thread Matthew Pava
Please just paste the error in the email message. The error message that you have mentions a ‘method’ object, which is not present in the code that you have sent to us. That would be where the problem is. From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of

Re: Django credit card redaction app - - MultiValueDictKeyError

2019-03-07 Thread drone4four
Here is the error, traceback and Request information: MultiValueDictKeyError at / 'ccEntry' Request Method: GET Request URL: http://127.0.0.1:8000/ Django Version: 2.0.2 Exception Type: MultiValueDictKeyError Exception Value: 'ccEntry' Exception Location: /home//.local/lib/python3.7/site-pac

Re: Django credit card redaction app - - MultiValueDictKeyError

2019-03-07 Thread Deepak Chhitarka
In your home.html template, you forgot to write method="get" . Which I think is causing the problem here. On Fri 8 Mar, 2019, 12:03 AM Matthew Pava, wrote: > Please just paste the error in the email message. The error message that > you have mentions a ‘method’ object, which is not present in th

Re: django.db.utils.OperationalError: no such table: user_user

2019-03-07 Thread cyril moreau
To fix my issue I had to makemigrations for each one of my app : by doing the following it will create my user table : python manage.py makemigrations user does not work if i just do : python manage.py makemigrations Best regards Le jeudi 7 mars 2019 19:01:10 UTC+1, cyril moreau a écrit : >

Re: Django credit card redaction app - - MultiValueDictKeyError

2019-03-07 Thread drone4four
I am taking a course on Udemy and the instructor doesn’t include a method attribute in the form tag. But as you suggested, Deepak, I went ahead and added method="get" to my form tag in my home.html template. So line 7 now reads: I am still encountering the MultiValueDictKeyError. Here is

Re: Django credit card redaction app - - MultiValueDictKeyError

2019-03-07 Thread drone4four
This is a long shot, but I thought I would share a link to my source code hosted on GitHub with a requirements.txt included. If any of you would like to test this out yourself, I am accepting pull requests. Here it is: https://github.com/Angeles4four/CC_Redact On Thursday, March 7, 2019 at 4

Most likely an elementary fix

2019-03-07 Thread Joseph Jones
Good afternoon all! I have been reading https://www.packtpub.com/application-development/learn-python-programming-second-edition since November so I am very much new to the Python Community. I am currently on Ch. 14 "Web Development" which indicates to complete the tutorial on djangoproject.com aft

Re: migrating from 2.7 to 3.x on Ubuntu

2019-03-07 Thread Mike Dewhirst
On 8/03/2019 12:34 am, Ryan Nowakowski wrote: Seems doable. I would leave nginx out of it and just run gunicorn Python 3 with Apache. Also I would do the release upgrade before. Thanks Ryan - that makes a lot of sense to me. Should simplify the process and give me confidence to start sooner ra

Re: How does WSGI work?

2019-03-07 Thread Tal
The word "simple" appears 13 times in PEP, but no one knows how this magical specification works? Can anyone confirm I'm not crazy please? On Tuesday, February 26, 2019 at 3:13:00 PM UTC-7, Tal wrote: > > Is it right though? > > On Tuesday, February 26, 2019 at 2:49:03 PM UTC-7, mike wrote: >

Re: Is there a package for user-tagging and user-properties?

2019-03-07 Thread Charles Thayer
Thanks Simon, I'm thinking of something more ad-hoc where key-value pairs can be attached to users, and the values might be simple strings, ints, datetime or other types. I've started with just simple tags using django-taggit, but I'm still keeping my eyes open. /charles PS. $ pip search taggi

Re: How does WSGI work?

2019-03-07 Thread Mike Dewhirst
On 8/03/2019 10:11 am, Tal wrote: The word "simple" appears 13 times in PEP, but no one knows how this magical specification works? Can anyone confirm I'm not crazy please? You could try writing to Grahame Dumpleton for confirmation. I'm reasonably sure he wrote mod_wsgi and ought to be a

Re: How does WSGI work?

2019-03-07 Thread Joel Mathew
There's a mod_wsgi_express thread that Graham monitors, so he's sure to get feedback from there Understanding this better could help me solve static file blues. Most of the time I don't understand why my static files fine aren't served when I move to production. On Fri, 8 Mar, 2019, 5:29 AM Mike

Static files in production [Was: How does WSGI work?]

2019-03-07 Thread Mike Dewhirst
On 8/03/2019 11:54 am, Joel Mathew wrote: There's a mod_wsgi_express thread that Graham monitors, so he's sure to get feedback from there Understanding this better could help me solve static file blues. Most of the time I don't understand why my static files fine aren't served when I move to

Re: Missing manage.py & settings.py

2019-03-07 Thread lujate
I'm sorry, I don't understand what you're trying to say. On Thu, Mar 7, 2019, 12:23 AM Gil Obradors For create it yourself from 0 > > El dj., 7 de març 2019, 01:05, lujate va > escriure: > >> What purpose does startapp serve when you're only using a pip installed >> app? >> >> >> >> On Wed, Ma

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread lakshmyyreddy
yes I added On Thursday, 7 March 2019 19:09:03 UTC+5:30, 赖信桃 wrote: > > Did you add `sample` to INSTALLED_APPS? > > > 于2019年3月7日周四 下午5:44写道: > >> Hi Team >> >> My project name is Sample >> While I am trying to connect database with models.py >> I am finding these type of errors >> ModuleNotFound

ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread lakshmyyreddy
Hi,every body I started working on Django recently I am trying to connect database through models.py But I have getting these type of errors can anybody help me how can I fix those errors and how to connect database for user registrations -- You received this message because you are subscribed