Re: Error installing mysqldb module !

2018-11-11 Thread vineeth sagar
Ah using Windows the most braindead operating system the world has ever seen. My coworker had this problem and he solved it using the following command pip install --only-binary :all: mysqlclient Good luck! On Nov 11, 2018 5:01 PM, "Swetank Subham Roy" wrote: > First of all you have to

How to connect mysql with django

2018-11-11 Thread Ansh Srivastava
I m tryin' to connect mysql database with django, for that, I did this:- python manage.py runserver but, this new mess came around sayin' :- (django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module. Did you install mysqlclient?). But when I m tryin' to install mysqlclient

Re: hi everyone

2018-11-11 Thread PASCUAL Eric
Hi, What do you mean exactly by "real time" ? Can you describe the project you are thinking about ? "Real time" relates to a very specific class of software, which one of the characteristics is to react to external events in a (most often) short and, deterministic time. For sure, neither

Re: Error installing mysqldb module !

2018-11-11 Thread Swetank Subham Roy
First of all you have to install 'libmysqlclient' package globally then 'mysqlclient-dev' in project environment On Sun, Nov 11, 2018, 4:42 PM Ansh Srivastava Hey there! I m tryin' to connect mysql database with django, While doin' > it number of errors prompted out as below:- > Error sayin'

Django channels worker loses some messages

2018-11-11 Thread Parsa Banihashemi
Hi, I have a simple sync consumer which receives websocket messages from the client, and each time, It passes a message to a worker channel to process it. A LOT of the messages are just simply lost and not processed. I have a print ("sent") whenever a message is sent to the worker channel. I

How do I store details securely with django?

2018-11-11 Thread Lance Haig
Hi, I have a project I am working on https://github.com/lhaig/usery/ and part of the roadmap of the project is to add more cloud types to the list. I wanted to allow admins for these services to login and create records for their different clouds in the DB and then use these when people

Re: Library not loaded: libssl.1.0.0.dylib New Mac on Mohave

2018-11-11 Thread Akash Purandare
Hey Andrew Can you show the output of pip freeze? On Saturday, November 10, 2018 at 4:38:59 PM UTC+5:30, Andrew Troiano wrote: > > Hey, > > I am trying to get my app running on a new Mac. It's on Mohave, python > 2.7, here is the stack trace. https://dpaste.de/m9WO . We are getting > Library

Error installing mysqldb module !

2018-11-11 Thread Ansh Srivastava
Hey there! I m tryin' to connect mysql database with django, While doin' it number of errors prompted out as below:- Error sayin' :(install visual c++ for installing other mysql modules). However, I installed visual c++ and the error was get sorted out too. But, now this new mess came around

hi everyone

2018-11-11 Thread ramakurthy swamy
i am looking for real time project based on python and django plz help `me and i want to keep that project in my resume plz help me guiess -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Fwd: Setting up admin in visual studio

2018-11-11 Thread Aditya Bohra
In urls.py from app_name.views import blog -- 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 to this group,

Re: Setting up admin in visual studio

2018-11-11 Thread swathi2801 Yadhav
There no need of importing the blog It's a small mistake were I haven't kept single quotes in main part of django code URLs.path...'Blog.urls' On Sun, 11 Nov 2018, 8:07 p.m. Aditya Bohra In urls.py from app_name.views import blog > > -- > You received this message because you are subscribed to

configuration settings.py

2018-11-11 Thread Gear Crew
I want to understand why do that [image: Screenshot from 2018-11-11 18-09-56.png] -- 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

Re: How to connect mysql with django

2018-11-11 Thread Ansh Srivastava
Thank you @pujiarahman. I have tried out the above command but it didn't work!It says::C:\Users\ansh\Desktop\Dje\p1\marvellous> pip install mysqlclient-1.3.13-cp37-cp37m-win_amd64.whlRequirement 'mysqlclient-1.3.13-cp37-cp37m-win_amd64.whl' looks like a filename, but the file does not

Re: Django channels worker loses some messages

2018-11-11 Thread Andrew Godwin
Are you using Channels 1 or Channels 2? And which channel layer are you using? Andrew On Sun, Nov 11, 2018 at 5:05 AM Parsa Banihashemi < parsa.banihash...@gmail.com> wrote: > Hi, > I have a simple sync consumer which receives websocket messages from the > client, and each time, It passes a

Re: How to connect mysql with django

2018-11-11 Thread pujiarahman
Hi, Go to this site https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysqlclient i use this for my python 3.7 and windows x64 : mysqlclient-1.3.13-cp37-cp37m-win_amd64.whl try : pip install mysqlclient-1.3.13-cp37-cp37m-win_amd64.whl regards Pada Minggu, 11 November 2018 18.57.11 UTC+7,

Re: hi everyone

2018-11-11 Thread akash kandpal
I am also looking for some example with code on such projects.Specially, I am looking for some complete websites or working projects on django to learn it's backend part and connectivity with database. If any such project is found, please infrom me too. @ramakurthy Here is my whatsaap no

Re: hi everyone

2018-11-11 Thread akash kandpal
I mean we can see some working projects and learn from it by implementing them ourselves and thus it will be more of a learning opportunity for us. Regards, Akash Kandpal. On Mon, Nov 12, 2018, 12:22 PM Joel I don't really understand what you mean. How can you put something on your > resume

Re: How do I store details securely with django?

2018-11-11 Thread PASCUAL Eric
Hi, It can depend on which deployment option you plan to use for the application. For instance, a Docker deployment orchestrated by Kubernetes gives the option of using secrets for sensitive information, which a hoster such as GCP manages conveniently. In this kind of deployment,

Re: hi everyone

2018-11-11 Thread Joel
I don't really understand what you mean. How can you put something on your resume when you haven't contributed to it? On Mon, 12 Nov, 2018, 12:06 PM ramakurthy swamy hi sir thank u for giving reply and the real time means what the present > projects are going on company based on python and

Re: configuration settings.py

2018-11-11 Thread Mike Dewhirst
On 12/11/2018 9:00 AM, Gear Crew wrote: when i can use it in any project? Have a look at wsgi.py created by django-admin when you start a new project. That should let you understand how to use Django in multiple projects. In my case, I use different virtualenvs and separate installations of

Re: Which free template you use to a ERP frontend?

2018-11-11 Thread Ryan Nowakowski
I like pinax bootstrap or CoreUI. On November 8, 2018 6:35:25 AM CST, Fellipe Henrique wrote: >Hi guys, > >A company here need to provide some info for users.. they have a Delphi >ERP, so we need to create a web frontend for some of infos... > >Which free template you use? Why? > >Thanks! >

Re: hi everyone

2018-11-11 Thread ramakurthy swamy
hi sir thank u for giving reply and the real time means what the present projects are going on company based on python and django,,, And i have a two years gap in my academic period based on that project i want to fill-up that gap so plz kindly help On Sun, Nov 11, 2018 at 7:45 PM PASCUAL Eric

solve problem to load template

2018-11-11 Thread Mohammad Shareef M
template = get_template('reports_base.html') {TemplateDoesNotExist}common_email_templates/partial_display_marketing_msg.html Pls help to solve this problem Thanks & Regards, Mahammad Shareef M +919741482617 +971501340618 +971581756035 -- You received this message because you are subscribed

Re: How to connect mysql with django

2018-11-11 Thread Ansh Srivastava
Ahhh! not working: C:\Users\ansh>pip install c:\downloads\mysqlclient-1.3.13-cp37-cp3 Invalid requirement: 'c:\downloads\mysqlclient-1.3.13-cp37-cp3' It looks like a path. File 'c:\downloads\mysqlclient-1.3.13-cp37-cp3' does not e xist. I just simply pasted your command ! [image: Mailtrack]

Re: How to connect mysql with django

2018-11-11 Thread Jeff Williams
You have to use the path of where you! downloaded the file. On Sun, Nov 11, 2018 at 4:28 PM Ansh Srivastava wrote: > Ahhh! not working: > C:\Users\ansh>pip install c:\downloads\mysqlclient-1.3.13-cp37-cp3 > Invalid requirement: 'c:\downloads\mysqlclient-1.3.13-cp37-cp3' > It looks like a path.

Re: configuration settings.py

2018-11-11 Thread Mike Dewhirst
On 12/11/2018 3:24 AM, Gear Crew wrote: I want to understand why do that Because Django needs to know which settings module to use so it can find all your apps and models. It was designed that way so that a single installation of Django could be used for multiple projects. Screenshot

Re: configuration settings.py

2018-11-11 Thread Gear Crew
when i can use it in any project? On Sunday, 11 November 2018 23:57:58 UTC+2, Mike Dewhirst wrote: > > On 12/11/2018 3:24 AM, Gear Crew wrote: > > I want to understand why do that > > Because Django needs to know which settings module to use so it can find > all your apps and models. > > It

Re: How do I store details securely with django?

2018-11-11 Thread Mike Dewhirst
On 12/11/2018 12:47 AM, Lance Haig wrote: Hi, I have a project I am working on https://github.com/lhaig/usery/ and part of the roadmap of the project is to add more cloud types to the list. I wanted to allow admins for these services to login and create records for their different clouds

Re: How to connect mysql with django

2018-11-11 Thread Jeff Williams
sorry. I meant the full path to the file.like below if you downloaded it into C:\downloads. pip install c:\downloads\mysqlclient-1.3.13-cp37-cp3 On Sun, Nov 11, 2018 at 2:58 PM Ansh Srivastava wrote: > Full path means? If you can send the screenshot or command instead @Jeff > Williams > >

Re: How to connect mysql with django

2018-11-11 Thread Ansh Srivastava
Yes @,Jeff Williams , I did but it still prompts the same: C:\Users\ansh>pip install mysqlclient-1.3.13-cp37-cp37m-win_amd64.whl Requirement 'mysqlclient-1.3.13-cp37-cp37m-win_amd64.whl' looks like a filename, but the file does not exist mysqlclient-1.3.13-cp37-cp37m-win_amd64.whl is not a

Re: How to connect mysql with django

2018-11-11 Thread Jeff Williams
Did you download the .whl file first? On Sun, Nov 11, 2018 at 11:57 AM Ansh Srivastava < ansh.srivastav...@gmail.com> wrote: > Thank you @pujiarahman. I have tried out the above command but it > didn't work!It says::C:\Users\ansh\Desktop\Dje\p1\marvellous> pip install >

Embedding pdfs in Django

2018-11-11 Thread Vikas Sri
I am preparing learning tutorial application in Django, which will contain PDF's that I need to display in my templates. I tried , etc but nothing worked. Do I need to install something to make it work? -- You received this message because you are subscribed to the Google Groups "Django

Re: How to connect mysql with django

2018-11-11 Thread Jeff Williams
give it the full path to the file. I had the same issue yesterday and this fixed it for me. On Sun, Nov 11, 2018 at 2:27 PM Ansh Srivastava wrote: > Yes @,Jeff Williams , I did but it still prompts the same: > > C:\Users\ansh>pip install mysqlclient-1.3.13-cp37-cp37m-win_amd64.whl >

Re: How to connect mysql with django

2018-11-11 Thread Ansh Srivastava
Full path means? If you can send the screenshot or command instead @Jeff Williams [image: Mailtrack] Sender notified by Mailtrack