<div dir="ltr">Thanks everyone again for the great support.  <div><br></div><div>Right now I have a very basic server running using the http module (I'm using python 3).  My next step is to generating the HTML pages so that the formatting of the excel docs stays pretty much the same except that it gets shown on the web.</div>
<div><br></div><div>For future reference (assuming everything else goes well) how do I procure a more permanent server (i.e. one that doesn't run on my machine so that I can turn it off and still be able to visit my pages)?  I'm hearing Apache and so forth being thrown around (I've read up a little on it) but it seems those would still run on my local computer.</div>
<div>What am I missing?</div><div><br></div><div>I'll keep everyone posted on how the excel parsing turns out.</div><div><br></div><div>Thanks again </div></div><div class="gmail_extra"><br><br><div class="gmail_quote">
On Thu, Jul 10, 2014 at 10:24 AM, Chris “Kwpolska” Warrick <span dir="ltr"><<a href="mailto:kwpolska@gmail.com" target="_blank">kwpolska@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="">On Thu, Jul 10, 2014 at 6:40 PM, Alex Kleider <<a href="mailto:akleider@sonic.net">akleider@sonic.net</a>> wrote:<br>
> If all you want is to check how your 'site' looks perhaps it'd be much<br>
> simpler to simply point your browser to your parent html file rather than<br>
> set up a server machine to serve it:<br>
> file:///home/yourusername/yoursubdirectory/index.html<br>
> It'll look exactly the same as it would if you were running it on a server.<br>
> (or am I missing something?)<br>
<br>
</div>JavaScript may not work.  The same might also happen with links and<br>
resources using the // scheme (//<a href="http://example.com/" target="_blank">example.com/</a> instead of<br>
<a href="http://example.com/" target="_blank">http://example.com/</a>)<br>
<br>
For local testing, use<br>
<br>
    python -m SimpleHTTPServer<br>
<br>
or, if you’re on Python 3,<br>
<br>
    python3 -m http.server<br>
<div class="im HOEnZb"><br>
--<br>
Chris “Kwpolska” Warrick <<a href="http://chriswarrick.com/" target="_blank">http://chriswarrick.com/</a>><br>
PGP: 5EAAEA16<br>
stop html mail | always bottom-post | only UTF-8 makes sense<br>
</div><div class="HOEnZb"><div class="h5">_______________________________________________<br>
Tutor maillist  -  <a href="mailto:Tutor@python.org">Tutor@python.org</a><br>
To unsubscribe or change subscription options:<br>
<a href="https://mail.python.org/mailman/listinfo/tutor" target="_blank">https://mail.python.org/mailman/listinfo/tutor</a><br>
</div></div></blockquote></div><br></div>