Path: csiph.com!usenet.pasdenom.info!goblin2!goblin.stu.neva.ru!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.014 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'scripts': 0.09; 'python': 0.09; 'cc:addr:googlegroups.com': 0.09; 'scripts,': 0.09; 'cc:addr :python-list': 0.10; 'aug': 0.13; 'apache': 0.13; 'server,': 0.15; 'fine.': 0.16; 'jerry': 0.16; 'occurs.': 0.16; 'subject:PYTHON': 0.16; 'wrote:': 0.17; 'restrictions': 0.17; 'cc:no real name:2**0': 0.24; 'idea': 0.24; 'cc:2**1': 0.24; 'host': 0.24; 'script': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply- To:1': 0.25; 'url:wiki': 0.26; 'pages,': 0.27; 'message- id:@mail.gmail.com': 0.27; 'run': 0.28; 'hosting': 0.28; 'cgi': 0.29; 'deploy': 0.29; 'url:wikipedia': 0.29; 'framework': 0.30; 'error': 0.30; 'google,': 0.32; 'received:209.85.160.46': 0.32; 'getting': 0.33; 'environment,': 0.33; 'received:google.com': 0.34; 'done': 0.34; 'server': 0.35; 'doing': 0.35; 'pm,': 0.35; 'received:209.85': 0.35; 'but': 0.36; 'url:org': 0.36; 'received:209': 0.37; 'far': 0.37; 'subject:: ': 0.38; 'store': 0.38; 'url:en': 0.38; 'header:Received:5': 0.40; 'your': 0.60; 'kind': 0.61; 'more': 0.63; 'dont': 0.64; 'account': 0.67; 'internet': 0.71; 'capabilities': 0.71; 'subject:ONLINE': 0.84; 'subject:AND': 0.93 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:to :cc:content-type; bh=/cdwAIZc9jVwPD5h4aW3fB4p8IIfx1pfyjvvrRzhiU0=; b=kNF6E7HDVdvY1YBlMSwtkD5kcHAQfO2jL+3XUvbl9uOlSkgaVBLDOQTN/fiON6BDmK sMe4PFHOtHq3RvwRXt3hiugqQfatKkHXZmjLe8JTLCkejHZoZCrZqcx0Z12I3zJ9Nfdu uU2vS7hRISXaqQL0kWrQz4jp41x/3Fcf5hChCO1xyVL3O6st+LE9ATnrUFBzko0+UiLA PSWwtlWIfPNxbowAMwD8KP0PcO8Huf4kJbDWsHwGpY2X28bAW10Rmz39m309rtIkhJcw 2VLBwRKlpETCo2GmuD2KCUx2jJXO0rA9jBEWLoPXBD94E+yuR3JJYDKKX8HIILKUBnFM I/lQ== MIME-Version: 1.0 In-Reply-To: <080534b4-828e-4e29-9d8e-e1c68378e9fa@googlegroups.com> References: <080534b4-828e-4e29-9d8e-e1c68378e9fa@googlegroups.com> Date: Sun, 19 Aug 2012 21:35:27 -0400 Subject: Re: ONLINE SERVER TO STORE AND RUN PYTHON SCRIPTS From: Jerry Hill To: coldfire Content-Type: text/plain; charset=UTF-8 Cc: Python , comp.lang.python@googlegroups.com X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 25 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1345426530 news.xs4all.nl 6897 [2001:888:2000:d::a6]:55400 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:27448 On Sun, Aug 19, 2012 at 6:27 PM, coldfire wrote: > Also I have no idea how to deploy a python script online. > I have done that on my local PC using Apache server and cgi but it Works fine. > Whats this all called? as far as I have searched its Web Framework but I dont wont to develop a website Just a Server which can run my scripts at specific time and send me email if an error occurs. > I use Python And i am not getting any lead. If you want to host web pages, like your're doing on your local pc with Apache and cgi, then you need an account with a web server, and a way to deploy your scripts and other content. This is often known as a 'web hosting service'[1]. The exact capabilities and restrictions will vary from provider to provider. If you just want an alway-on, internet accessable place to store and run your python scripts, you may be interested in a 'shell account'[2], or if you need more control over the environment, a 'virtual private server'[3]. That may give you a few terms to google, and see what kind of service you need. 1 http://en.wikipedia.org/wiki/Shell_account 2 http://en.wikipedia.org/wiki/Web_host 3 http://en.wikipedia.org/wiki/Virtual_private_server -- Jerry