Re: Django Produces Python?

2018-06-12 Thread Mario R. Osorio
I've tried multiple managed hosting and they all have limitations that will eventually go against your expansion needs. The best example I can think of is the fact that in most of these services you cannot compile, and some of python's libraries do require compiling. I favor Virtual Private

Re: Django Produces Python?

2018-06-11 Thread ijazz jazz
Django was born in a newsroom, and it's designed to handle that . With a simple command, Djangoautomatically generates a Python API based . Best Python Training in Chennai --

Re: Django Produces Python?

2017-03-26 Thread Andréas Kühne
If you want managed hosting, all you have to do is ask if they can host django. You normally install django in a virtualenvironment - so as long as they allow virtual environments you are probably good to go. Most managed servers that can install python work with Django - Django is a pretty well

Re: Django Produces Python?

2017-03-26 Thread Ed Sutherland
I now understand the purpose and worth of Django. What, then, are the questions I need to ask potential hosts? I'm leaning toward Linode, but would also like affordable managed hosting. On Sun, 26 Mar 2017 04:16:52 -0400 Lachlan Musicman

Re: Django Produces Python?

2017-03-26 Thread Antonis Christofides
You can think of Django as just a library. We call it a "framework" because it defines a whole way of working. Likewise, the Python standard library calls unittest a "framework" and this is consistent, because unittest also defines a whole way of working. But the difference between a framework and

Re: Django Produces Python?

2017-03-26 Thread Melvyn Sopacua
On Sunday 26 March 2017 00:46:28 Ed Sutherland wrote: > Wow. I had thought Django as an assistant to build python projects. If > I need the framework along with whatever language, it seems like > immense code-bloat. What, then, is the purpose of using frameworks? This article[1] sums it up

Re: Django Produces Python?

2017-03-26 Thread Lachlan Musicman
If you take James' answer and expand it a little, take a look at a Python micro-framework like Pylons http://pylonsproject.org/ It's smaller than Django and is a useful tool for a different type of website. For instance take Authentication and Authorization - logins. Not every site needs one.

Re: Django Produces Python?

2017-03-25 Thread James Bennett
Python is a programming language. You can use it to write many types of programs. For example, you can use it to write web applications (which run on a web server, respond to HTTP requests, store their data in a database, render HTML templates for output, etc.). But doing this from scratch would

Re: Django Produces Python?

2017-03-25 Thread François Schiettecatte
The purpose of a framework is so that you don’t have to write it yourself. François > On Mar 25, 2017, at 9:46 PM, Ed Sutherland wrote: > > Wow. I had thought Django as an assistant to build python projects. If I need > the framework along with whatever language, it seems

Re: Django Produces Python?

2017-03-25 Thread Ed Sutherland
Wow. I had thought Django as an assistant to build python projects. If I need the framework along with whatever language, it seems like immense code-bloat. What, then, is the purpose of using frameworks? On Sat, 25 Mar 2017 23:30:45 -0400 Lachlan Musicman data...@gmail.com wrote

Re: Django Produces Python?

2017-03-25 Thread Lachlan Musicman
It will needs the Django as well. Think of them as layers - at the bottom is the OS, then there is python. Django sits on Python. Your project sits on Django. Can't remove a layer. cheers L. -- The most dangerous phrase in the language is, "We've always done it this way." - Grace Hopper On

Django Produces Python?

2017-03-25 Thread Ed Sutherland
Forgive me if this question is too basic, but I'm a relative newbie to programming frameworks. As I understand it, a framework is built to abstract common tasks within the native language (Python, PHP, Ruby, etc.) When development using a framework is complete, will the production version of