Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #99261 > unrolled thread

Creating a Dynamic Website Using Python

Started byCai Gengyang <gengyangcai@gmail.com>
First post2015-11-23 01:55 -0800
Last post2015-11-23 05:26 -0800
Articles 4 — 3 participants

Back to article view | Back to comp.lang.python


Contents

  Creating a Dynamic Website Using Python Cai Gengyang <gengyangcai@gmail.com> - 2015-11-23 01:55 -0800
    Re: Creating a Dynamic Website Using Python Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-11-23 11:31 +0000
    Re: Creating a Dynamic Website Using Python Chris Angelico <rosuav@gmail.com> - 2015-11-23 23:21 +1100
      Re: Creating a Dynamic Website Using Python Cai Gengyang <gengyangcai@gmail.com> - 2015-11-23 05:26 -0800

#99261 — Creating a Dynamic Website Using Python

FromCai Gengyang <gengyangcai@gmail.com>
Date2015-11-23 01:55 -0800
SubjectCreating a Dynamic Website Using Python
Message-ID<7710a5aa-ef92-40a9-9b00-59ed1dc80103@googlegroups.com>
Ok, 

So I have gone through the CodeAcademy Python modules and decided to jump straight into a project. 

I want to create a dynamic web-based site like this --- https://www.wedpics.com using Python 

How / where do I start ?

Thanks a lot !

Gengyang 

[toc] | [next] | [standalone]


#99263

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2015-11-23 11:31 +0000
Message-ID<mailman.63.1448278292.2291.python-list@python.org>
In reply to#99261
On 23/11/2015 09:55, Cai Gengyang wrote:
> Ok,
>
> So I have gone through the CodeAcademy Python modules and decided to jump straight into a project.
>
> I want to create a dynamic web-based site like this --- https://www.wedpics.com using Python
>
> How / where do I start ?
>

With a search engine, or do you need instructions on how to use one?

-- 
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [next] | [standalone]


#99268

FromChris Angelico <rosuav@gmail.com>
Date2015-11-23 23:21 +1100
Message-ID<mailman.65.1448281265.2291.python-list@python.org>
In reply to#99261
On Mon, Nov 23, 2015 at 8:55 PM, Cai Gengyang <gengyangcai@gmail.com> wrote:
> So I have gone through the CodeAcademy Python modules and decided to jump straight into a project.
>
> I want to create a dynamic web-based site like this --- https://www.wedpics.com using Python
>
> How / where do I start ?

While it's *possible* to create a web site using just a base Python
install, it's a lot more work than you need. What you should instead
do is pick up one of the popular web frameworks like Django, Flask,
Bottle, etc, and use that. Pick a framework (personally, I use Flask,
but you can use any of them), and work through its tutorial. Then,
depending on how fancy you want your site to be, you'll need anywhere
from basic to advanced knowledge of the web's client-side technologies
- HTML, CSS, JavaScript, and possibly some libraries like Bootstrap,
jQuery, etc. Again, pick up any that you want to use, and work through
their tutorials.

This is a massively open-ended goal. You can make this as big or small
as you want.

ChrisA

[toc] | [prev] | [next] | [standalone]


#99271

FromCai Gengyang <gengyangcai@gmail.com>
Date2015-11-23 05:26 -0800
Message-ID<b59f3646-c301-4d39-b1cc-5d1daeb12ec6@googlegroups.com>
In reply to#99268
Ok, I will look through the Flask tutorials then ...


On Monday, November 23, 2015 at 8:21:28 PM UTC+8, Chris Angelico wrote:
> On Mon, Nov 23, 2015 at 8:55 PM, Cai Gengyang <gengyangcai@gmail.com> wrote:
> > So I have gone through the CodeAcademy Python modules and decided to jump straight into a project.
> >
> > I want to create a dynamic web-based site like this --- https://www.wedpics.com using Python
> >
> > How / where do I start ?
> 
> While it's *possible* to create a web site using just a base Python
> install, it's a lot more work than you need. What you should instead
> do is pick up one of the popular web frameworks like Django, Flask,
> Bottle, etc, and use that. Pick a framework (personally, I use Flask,
> but you can use any of them), and work through its tutorial. Then,
> depending on how fancy you want your site to be, you'll need anywhere
> from basic to advanced knowledge of the web's client-side technologies
> - HTML, CSS, JavaScript, and possibly some libraries like Bootstrap,
> jQuery, etc. Again, pick up any that you want to use, and work through
> their tutorials.
> 
> This is a massively open-ended goal. You can make this as big or small
> as you want.
> 
> ChrisA

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web