Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: Creating a Dynamic Website Using Python Date: Mon, 23 Nov 2015 23:21:02 +1100 Lines: 22 Message-ID: References: <7710a5aa-ef92-40a9-9b00-59ed1dc80103@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de Azn3ETpVjJSHt3ExwFKslgjTTEMQNoNadtqszzVrj9YQ== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.013 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.05; 'javascript,': 0.07; 'cc:addr:python-list': 0.09; 'django,': 0.09; 'jquery,': 0.09; 'python': 0.10; '23,': 0.16; 'fancy': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'massively': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'tutorials.': 0.16; 'wrote:': 0.16; 'frameworks': 0.18; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'css,': 0.22; 'install,': 0.22; 'libraries': 0.22; 'header:In-Reply-To:1': 0.24; 'mon,': 0.24; 'message-id:@mail.gmail.com': 0.27; '---': 0.28; 'anywhere': 0.30; 'that.': 0.30; 'possibly': 0.32; 'html,': 0.33; 'jump': 0.33; 'received:google.com': 0.35; 'nov': 0.35; 'knowledge': 0.35; 'but': 0.36; 'should': 0.36; 'instead': 0.36; 'received:209.85': 0.36; 'basic': 0.36; 'framework': 0.36; 'modules': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'received:209.85.213': 0.37; 'received:209': 0.38; 'where': 0.40; 'some': 0.40; 'your': 0.60; "you'll": 0.61; 'advanced': 0.61; 'more': 0.63; 'decided': 0.66; 'subject:Website': 0.83; 'chrisa': 0.84; 'client-side': 0.84; 'etc,': 0.84; 'subject:Using': 0.84; 'to:none': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=MQeRAiAJ1kA/wBdObvMKOpEZoGVh8RUGDjowvJkhrP0=; b=yFGqyj7hobJIysvexnfpHVeweqEgIRUbH2NWun0z7X2wiK9Paz0A/RnkgvcuShRaUd Blca5ATks+VY8JwU3SAcEoKP9fVXc/yPanchYBP3MDGMC7mVHNWORLtYyuXNUTNBW3Mm vMQ16hOsyA/TQnPfpQYB5NBEF7YB7ak8UlURzGJt7CVUpvxwCarLK+oAMFvHDN4/xwG4 WEXbmzNOVBNr7UCVktnjm3yOhXzseOx3u3l0whCQk7wkWjYOIgYbxSBWYjJa6d0fHUkT GmvmiC2sH5PgBJNZs7SrE4/OYcRgbX9EqoynBJ1oAQLwy2RgyZSt6aGyP2MZf7/8YB6I vffw== X-Received: by 10.50.93.72 with SMTP id cs8mr13567897igb.13.1448281262350; Mon, 23 Nov 2015 04:21:02 -0800 (PST) In-Reply-To: <7710a5aa-ef92-40a9-9b00-59ed1dc80103@googlegroups.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:99268 On Mon, Nov 23, 2015 at 8:55 PM, Cai Gengyang 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