Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #46037 > unrolled thread
| Started by | cdorm245@gmail.com |
|---|---|
| First post | 2013-05-25 20:55 -0700 |
| Last post | 2013-05-26 10:21 +0100 |
| Articles | 6 — 5 participants |
Back to article view | Back to comp.lang.python
CrazyHTTPd - HTTP Daemon in Python cdorm245@gmail.com - 2013-05-25 20:55 -0700
Re: CrazyHTTPd - HTTP Daemon in Python Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-05-26 05:06 +0100
Re: CrazyHTTPd - HTTP Daemon in Python Marc Christiansen <usenetmail@solar-empire.de> - 2013-05-26 12:06 +0200
RE: CrazyHTTPd - HTTP Daemon in Python Carlos Nepomuceno <carlosnepomuceno@outlook.com> - 2013-05-26 07:21 +0300
Re: CrazyHTTPd - HTTP Daemon in Python cdorm245@gmail.com - 2013-05-25 21:58 -0700
Re: CrazyHTTPd - HTTP Daemon in Python Fábio Santos <fabiosantosart@gmail.com> - 2013-05-26 10:21 +0100
| From | cdorm245@gmail.com |
|---|---|
| Date | 2013-05-25 20:55 -0700 |
| Subject | CrazyHTTPd - HTTP Daemon in Python |
| Message-ID | <ba07afc2-41c7-4c42-b4e7-75f39bf7bda0@googlegroups.com> |
This is a small little Project that I have started. Its a light little Web Server (HTTPd) coded in python. Requirements: Python 2.7 =< And Linux / BSD. I believe this could work in a CLI Emulator in windows too. Welcome to check out the website powered by CrazyHTTPd: http://web.crazycoder.me:14081/index.html Please Email me with any bugs, errors, and/or comments about my little project: cdorm245@gmail.com
[toc] | [next] | [standalone]
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
|---|---|
| Date | 2013-05-26 05:06 +0100 |
| Message-ID | <mailman.2160.1369541183.3114.python-list@python.org> |
| In reply to | #46037 |
On 26/05/2013 04:55, cdorm245@gmail.com wrote: > This is a small little Project that I have started. Its a light little Web Server (HTTPd) coded in python. Requirements: Python 2.7 =< And Linux / BSD. I believe this could work in a CLI Emulator in windows too. > Welcome to check out the website powered by CrazyHTTPd: http://web.crazycoder.me:14081/index.html > > Please Email me with any bugs, errors, and/or comments about my little project: cdorm245@gmail.com > IMHO writing a project right now that is limited to Python 2 is about as much use as a chocolate teapot. -- If you're using GoogleCrap™ please read this http://wiki.python.org/moin/GoogleGroupsPython. Mark Lawrence
[toc] | [prev] | [next] | [standalone]
| From | Marc Christiansen <usenetmail@solar-empire.de> |
|---|---|
| Date | 2013-05-26 12:06 +0200 |
| Message-ID | <fe397a-87s.ln1@pluto.solar-empire.de> |
| In reply to | #46042 |
Mark Lawrence <breamoreboy@yahoo.co.uk> wrote: > On 26/05/2013 04:55, cdorm245@gmail.com wrote: >> This is a small little Project that I have started. Its a light >> little Web Server (HTTPd) coded in python. Requirements: Python 2.7 >> =< And Linux / BSD. I believe this could work in a CLI Emulator in >> windows too. >> Welcome to check out the website powered by CrazyHTTPd: >> http://web.crazycoder.me:14081/index.html >> >> Please Email me with any bugs, errors, and/or comments about my >> little project: cdorm245@gmail.com >> > > IMHO writing a project right now that is limited to Python 2 is about as > much use as a chocolate teapot. I.e. not very useful, but slightly more so than you would expect: http://www.thenakedscientists.com/HTML/content/kitchenscience/exp/how-useless-is-a-chocolate-teapot/ Adiaŭ Marc
[toc] | [prev] | [next] | [standalone]
| From | Carlos Nepomuceno <carlosnepomuceno@outlook.com> |
|---|---|
| Date | 2013-05-26 07:21 +0300 |
| Message-ID | <mailman.2161.1369542110.3114.python-list@python.org> |
| In reply to | #46037 |
Your code isn't threaded. I suggest you consider[1] and take that road! ;) Good luck! [1] http://bulk.fefe.de/scalable-networking.pdf ---------------------------------------- > To: python-list@python.org > From: breamoreboy@yahoo.co.uk > Subject: Re: CrazyHTTPd - HTTP Daemon in Python > Date: Sun, 26 May 2013 05:06:50 +0100 > > On 26/05/2013 04:55, cdorm245@gmail.com wrote: >> This is a small little Project that I have started. Its a light little Web Server (HTTPd) coded in python. Requirements: Python 2.7 =< And Linux / BSD. I believe this could work in a CLI Emulator in windows too. >> Welcome to check out the website powered by CrazyHTTPd: http://web.crazycoder.me:14081/index.html >> >> Please Email me with any bugs, errors, and/or comments about my little project: cdorm245@gmail.com >> > > IMHO writing a project right now that is limited to Python 2 is about as > much use as a chocolate teapot. > > -- > If you're using GoogleCrap™ please read this > http://wiki.python.org/moin/GoogleGroupsPython. > > Mark Lawrence > > -- > http://mail.python.org/mailman/listinfo/python-list
[toc] | [prev] | [next] | [standalone]
| From | cdorm245@gmail.com |
|---|---|
| Date | 2013-05-25 21:58 -0700 |
| Message-ID | <16df12e2-f8c4-4551-bbb0-702056274914@googlegroups.com> |
| In reply to | #46043 |
On Sunday, May 26, 2013 12:21:46 PM UTC+8, Carlos Nepomuceno wrote: > Your code isn't threaded. I suggest you consider[1] and take that road! ;) Good luck! > > [1] http://bulk.fefe.de/scalable-networking.pdf > > ---------------------------------------- > > To: python-list@python.org > > From: breamoreboy@yahoo.co.uk > > Subject: Re: CrazyHTTPd - HTTP Daemon in Python > > Date: Sun, 26 May 2013 05:06:50 +0100 > > > > On 26/05/2013 04:55, cdorm245@gmail.com wrote: > >> This is a small little Project that I have started. Its a light little Web Server (HTTPd) coded in python. Requirements: Python 2.7 =< And Linux / BSD. I believe this could work in a CLI Emulator in windows too. > >> Welcome to check out the website powered by CrazyHTTPd: http://web.crazycoder.me:14081/index.html > >> > >> Please Email me with any bugs, errors, and/or comments about my little project: cdorm245@gmail.com > >> > > > > IMHO writing a project right now that is limited to Python 2 is about as > > much use as a chocolate teapot. > > > > -- > > If you're using GoogleCrap™ please read this > > http://wiki.python.org/moin/GoogleGroupsPython. > > > > Mark Lawrence > > > > -- > > http://mail.python.org/mailman/listinfo/python-list Thanks, I plan on doing this. Then CrazyHTTPd will support bigger file downloading and multiple network connections at once. Thanks Again!
[toc] | [prev] | [next] | [standalone]
| From | Fábio Santos <fabiosantosart@gmail.com> |
|---|---|
| Date | 2013-05-26 10:21 +0100 |
| Message-ID | <mailman.2170.1369560088.3114.python-list@python.org> |
| In reply to | #46037 |
[Multipart message — attachments visible in raw view] — view raw
On 26 May 2013 05:18, "Mark Lawrence" <breamoreboy@yahoo.co.uk> wrote: > > On 26/05/2013 04:55, cdorm245@gmail.com wrote: >> >> This is a small little Project that I have started. Its a light little Web Server (HTTPd) coded in python. Requirements: Python 2.7 =< And Linux / BSD. I believe this could work in a CLI Emulator in windows too. >> Welcome to check out the website powered by CrazyHTTPd: http://web.crazycoder.me:14081/index.html >> >> Please Email me with any bugs, errors, and/or comments about my little project: cdorm245@gmail.com >> > > IMHO writing a project right now that is limited to Python 2 is about as much use as a chocolate teapot. > > -- > If you're using GoogleCrap™ please read this http://wiki.python.org/moin/GoogleGroupsPython. > > Mark Lawrence > > -- > http://mail.python.org/mailman/listinfo/python-list Agreed. And you should work on WSGI support too.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web