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 Servers and personally prefer DigitalOcean.com. 
They have a very nice price structure that starts at $5/month and even 
offer one-click applications, Django 1.8.7 among them. Not only that, their 
documentation is very complete and they have a tutorial for virtually 
everything, from configuring your server to securing and hardening its 
security. I would say DO is also a 'battery included' service when it comes 
to non managed server (and no, I'm not getting paid by DO!, I'm just a big 
fan...)

HTH!


On Sunday, March 26, 2017 at 11:24:13 AM UTC-4, Ed Sutherland wrote:
>
> 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 > wrote 
>
> 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. Django has it by default. If you don't need it, maybe 
> Pylons is a better fit. 
>
> But be aware - when you have to actually write some code that makes user 
> accounts and logins happen in Pylons, that's when you will discover that 
> Django's "batteries included" philosophy really works for some style of 
> projects.
>
> cheers
> L.
>
> --
> The most dangerous phrase in the language is, "We've always done it this 
> way."
>
> - Grace Hopper
>
> On 26 March 2017 at 15:52, James Bennett 
> > wrote:
>
> 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 
> require you to write many modules of Python code yourself, in order to 
> handle all the common and necessary parts of a typical web application.
>
> Django provides those things for you, already written, so that you do not 
> need to write them yourself. Instead, you can write only the things which 
> are truly unique to your specific application, and let already-written 
> modules from Django handle the rest.
>
> -- 
> 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...@googlegroups.com .
> To post to this group, send email to django...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAL13Cg9n4Mk6W2QEG51yoY5cXn1tQ_N9ORhvv3k7GGCdW2Ob3A%40mail.gmail.com
>  
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>
>
> -- 
> 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...@googlegroups.com .
> To post to this group, send email to django...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAGBeqiO9QJ9N9%3DCj%2BsEnCsEn%2B02nwindxbzoYaxTY%2BV16vp%2BPQ%40mail.gmail.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f66c4f9f-1344-4a2d-97b1-986359477b73%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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 


-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/273d96dc-313d-42c8-94ba-8ae6d3bcad99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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
known framework.

If you are not leaning towards a managed environment all you need is a
linux installation on the server - it's easiest to install on linux, but
can be done in windows as well.

Regards,

Andréas

2017-03-26 17:23 GMT+02:00 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
> wrote 
>
> 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. Django has it by default. If you don't need it, maybe
> Pylons is a better fit.
>
> But be aware - when you have to actually write some code that makes user
> accounts and logins happen in Pylons, that's when you will discover that
> Django's "batteries included" philosophy really works for some style of
> projects.
>
> cheers
> L.
>
> --
> The most dangerous phrase in the language is, "We've always done it this
> way."
>
> - Grace Hopper
>
> On 26 March 2017 at 15:52, James Bennett  wrote:
>
> 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
> require you to write many modules of Python code yourself, in order to
> handle all the common and necessary parts of a typical web application.
>
> Django provides those things for you, already written, so that you do not
> need to write them yourself. Instead, you can write only the things which
> are truly unique to your specific application, and let already-written
> modules from Django handle the rest.
>
> --
> 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, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAL13Cg9n4Mk6W2QEG51yoY5cXn1tQ
> _N9ORhvv3k7GGCdW2Ob3A%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> 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, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAGBeqiO9QJ9N9%3DCj%2BsEnCsEn%
> 2B02nwindxbzoYaxTY%2BV16vp%2BPQ%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> 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, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/15b0b36f07b.1074fa8d511956.6981836782800680358%
> 40tburgnews.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.c

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 wrote 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. Django has it by default. If you don't need 
it, maybe Pylons is a better fit. But be aware - when you have to actually 
write some code that makes user accounts and logins happen in Pylons, that's 
when you will discover that Django's "batteries included" philosophy really 
works for some style of projects.cheersL.--The most dangerous phrase in the 
language is, "We've always done it this way."- Grace Hopper On 26 March 2017 at 
15:52, James Bennett  wrote: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 require you to write many modules of 
Python code yourself, in order to handle all the common and necessary parts of 
a typical web application.Django provides those things for you, already 
written, so that you do not need to write them yourself. Instead, you can write 
only the things which are truly unique to your specific application, and let 
already-written modules from Django handle the rest.--  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, send email 
to django-users@googlegroups.com. Visit this group at 
https://groups.google.com/group/django-users. To view this discussion on the 
web visit 
https://groups.google.com/d/msgid/django-users/CAL13Cg9n4Mk6W2QEG51yoY5cXn1tQ_N9ORhvv3k7GGCdW2Ob3A%40mail.gmail.com.
 For more options, visit https://groups.google.com/d/optout. --  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, send email to django-users@googlegroups.com. Visit this group at 
https://groups.google.com/group/django-users. To view this discussion on the 
web visit 
https://groups.google.com/d/msgid/django-users/CAGBeqiO9QJ9N9%3DCj%2BsEnCsEn%2B02nwindxbzoYaxTY%2BV16vp%2BPQ%40mail.gmail.com.
 For more options, visit https://groups.google.com/d/optout. 






-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/15b0b36f07b.1074fa8d511956.6981836782800680358%40tburgnews.com.
For more options, visit https://groups.google.com/d/optout.


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 a library can
be blurred.

So when you deploy your app, you need to include the libraries on which it
depends, and Django is one of them.

Antonis Christofides
http://djangodeployment.com

On 03/26/2017 06:19 AM, Ed Sutherland wrote:
> 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 the
> app still require the framework? For instance, would an app developed with
> Django need only Python, or the entire programming framework? (I haven't seen
> a suitable answer after searching.)
>
>
>
> -- 
> 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, send email to django-users@googlegroups.com
> .
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/15b089fd407.b63a65c5111765.2626315058617697641%40tburgnews.com
> .
> For more options, visit https://groups.google.com/d/optout.

-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/87111969-0b0b-d260-356e-a3e40a77a7ee%40djangodeployment.com.
For more options, visit https://groups.google.com/d/optout.


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 quite nicely.
-- 
Melvyn Sopacua


[1] 
https://hackernoon.com/use-django-or-end-up-building-a-django-6cce65eb7255#.nkw8i79ww

-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3871806.Hfu0lyn8gM%40devstation.
For more options, visit https://groups.google.com/d/optout.


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. Django has it by default. If you don't need it, maybe Pylons is
a better fit.

But be aware - when you have to actually write some code that makes user
accounts and logins happen in Pylons, that's when you will discover that
Django's "batteries included" philosophy really works for some style of
projects.

cheers
L.

--
The most dangerous phrase in the language is, "We've always done it this
way."

- Grace Hopper

On 26 March 2017 at 15:52, James Bennett  wrote:

> 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
> require you to write many modules of Python code yourself, in order to
> handle all the common and necessary parts of a typical web application.
>
> Django provides those things for you, already written, so that you do not
> need to write them yourself. Instead, you can write only the things which
> are truly unique to your specific application, and let already-written
> modules from Django handle the rest.
>
> --
> 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, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CAL13Cg9n4Mk6W2QEG51yoY5cXn1tQ
> _N9ORhvv3k7GGCdW2Ob3A%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGBeqiO9QJ9N9%3DCj%2BsEnCsEn%2B02nwindxbzoYaxTY%2BV16vp%2BPQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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
require you to write many modules of Python code yourself, in order to
handle all the common and necessary parts of a typical web application.

Django provides those things for you, already written, so that you do not
need to write them yourself. Instead, you can write only the things which
are truly unique to your specific application, and let already-written
modules from Django handle the rest.

-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAL13Cg9n4Mk6W2QEG51yoY5cXn1tQ_N9ORhvv3k7GGCdW2Ob3A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 like immense code-bloat. 
> What, then, is the purpose of using frameworks?
> 
> 
> 
>  On Sat, 25 Mar 2017 23:30:45 -0400 Lachlan Musicman  
> wrote 
> 
> 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 26 March 2017 at 14:19, Ed Sutherland  wrote:
> 
> 
> 
> 
> --
> 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, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/CAGBeqiMJo1ER7TFH2%3DGTLtvO%3Ds8ETKEGpYsUFCpVFOD_k_h4dA%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.
> 
> 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 the 
> app still require the framework? For instance, would an app developed with 
> Django need only Python, or the entire programming framework? (I haven't seen 
> a suitable answer after searching.)
> 
> 
> 
> 
> 
> --
> 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, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/15b089fd407.b63a65c5111765.2626315058617697641%40tburgnews.com.
> For more options, visit https://groups.google.com/d/optout.
> 
> 
> -- 
> 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, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/15b08efd9bb.fb7e1aec112788.7061965930651567288%40tburgnews.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/43440416-1154-45FE-BBA5-DD8228EE557B%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 
 wrote 




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 26 March 2017 at 14:19, Ed Sutherland  wrote:









--

 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, send email to django-users@googlegroups.com.

 Visit this group at https://groups.google.com/group/django-users.

 To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGBeqiMJo1ER7TFH2%3DGTLtvO%3Ds8ETKEGpYsUFCpVFOD_k_h4dA%40mail.gmail.com.

 For more options, visit https://groups.google.com/d/optout.




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 the 
app still require the framework? For instance, would an app developed with 
Django need only Python, or the entire programming framework? (I haven't seen a 
suitable answer after searching.)











--

 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, send email to django-users@googlegroups.com.

 Visit this group at https://groups.google.com/group/django-users.

 To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/15b089fd407.b63a65c5111765.2626315058617697641%40tburgnews.com.

 For more options, visit https://groups.google.com/d/optout.





-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/15b08efd9bb.fb7e1aec112788.7061965930651567288%40tburgnews.com.
For more options, visit https://groups.google.com/d/optout.


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 26 March 2017 at 14:19, Ed Sutherland  wrote:

> 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 the app still require the framework? For instance, would an app
> developed with Django need only Python, or the entire programming
> framework? (I haven't seen a suitable answer after searching.)
>
>
>
> --
> 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, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/15b089fd407.b63a65c5111765.2626315058617697641%
> 40tburgnews.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGBeqiMJo1ER7TFH2%3DGTLtvO%3Ds8ETKEGpYsUFCpVFOD_k_h4dA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 the 
app still require the framework? For instance, would an app developed with 
Django need only Python, or the entire programming framework? (I haven't seen a 
suitable answer after searching.)








-- 
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, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/15b089fd407.b63a65c5111765.2626315058617697641%40tburgnews.com.
For more options, visit https://groups.google.com/d/optout.