Re: how to setup for localhost:8000

2019-08-10 Thread sanketsawla34
please set up my localhost:8000 -- https://mail.python.org/mailman/listinfo/python-list

Re: how to setup for localhost:8000

2019-07-07 Thread Alister via Python-list
On Sun, 07 Jul 2019 16:57:12 +, nabru wrote: > jaymoyer44 [jaymoye...@gmail.com] wrote: > >> On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com >> wrote: >>> Hi, >>> >>> I am working on window 7 and Python 3.5 to setup a localhost:8000 but >>> it did not get through as shown b

Re: how to setup for localhost:8000

2019-07-07 Thread nabru
jaymoyer44 [jaymoye...@gmail.com] wrote: > On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote: >> Hi, >> >> I am working on window 7 and Python 3.5 to setup a localhost:8000 but >> it did not get through as shown below: >> > python -m http.server >> Serving HTTP on 0.0.0.0 po

Re: how to setup for localhost:8000

2019-07-07 Thread jaymoyer44
On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote: > Hi, > > I am working on window 7 and Python 3.5 to setup a localhost:8000 but it did > not get through as shown below: > > python -m http.server > Serving HTTP on 0.0.0.0 port 8000 ... > > But it did not show the results.

Re: how to setup for localhost:8000

2019-07-07 Thread jaymoyer44
On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote: > Hi, > > I am working on window 7 and Python 3.5 to setup a localhost:8000 but it did > not get through as shown below: > > python -m http.server > Serving HTTP on 0.0.0.0 port 8000 ... > > But it did not show the results.

Re: how to setup for localhost:8000

2019-03-01 Thread tommy yama
Here you go A port can be configurable. https://www.tutorialspoint.com/python/python_http_server.htm On Mon, Feb 25, 2019 at 12:48 PM Cameron Simpson wrote: > On 24Feb2019 19:00, 0x906 wrote: > >>> I am working on window 7 and Python 3.5 to setup a localhost:8000 > >>> but it did not get thro

Re: how to setup for localhost:8000

2019-02-24 Thread Cameron Simpson
On 24Feb2019 19:00, 0x906 wrote: I am working on window 7 and Python 3.5 to setup a localhost:8000 but it did not get through as shown below: python -m http.server Serving HTTP on 0.0.0.0 port 8000 ... But it did not show the results. Can someone help me how to setup the localhost? There is

Re: how to setup for localhost:8000

2019-02-24 Thread 0x906 via Python-list
There is a chance that I missed something with the 0.0.0.0. but I am pretty sure that the localhost IP is 127.0.0.1. > On Feb 24, 2019, at 6:13 PM, nathanntkou...@gmail.com wrote: > > On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote: >> Hi, >> >> I am working on window

Re: how to setup for localhost:8000

2019-02-24 Thread nathanntkou123
On Thursday, April 14, 2016 at 1:47:03 PM UTC-4, wrh...@gmail.com wrote: > Hi, > > I am working on window 7 and Python 3.5 to setup a localhost:8000 but it did > not get through as shown below: > > python -m http.server > Serving HTTP on 0.0.0.0 port 8000 ... > > But it did not show the results.

Re: how to setup for localhost:8000

2016-04-22 Thread wrh8609
On Sunday, April 17, 2016 at 1:11:39 PM UTC-4, Pierre Quentel wrote: > > > 127.0.0.1 - - [15/Apr/2016 20:57:32] "GET / HTTP/1.1" 200 - > > Hi Pierre, > > > > When I type http://localhost:8000, I did not see anything in the console > > after the line "Serving HTTP on 0.0.0.0 port 8000 ... I belie

Re: how to setup for localhost:8000

2016-04-17 Thread Pierre Quentel
> > 127.0.0.1 - - [15/Apr/2016 20:57:32] "GET / HTTP/1.1" 200 - > Hi Pierre, > > When I type http://localhost:8000, I did not see anything in the console > after the line "Serving HTTP on 0.0.0.0 port 8000 ... I believe the way I ran > was not correct as shown below: > > python -m http.server

Re: how to setup for localhost:8000

2016-04-17 Thread Monte Milanuk
On 2016-04-16 15:35, wrh8...@gmail.com wrote: When you type http://localhost:8000, do you see something in the console after the line "Serving HTTP on 0.0.0.0 port 8000 ..." ? If the server actually serves requests on port 8000 you should see a log message such as 127.0.0.1 - - [15/Apr/2016 2

Re: how to setup for localhost:8000

2016-04-16 Thread wrh8609
On Friday, April 15, 2016 at 3:04:09 PM UTC-4, Pierre Quentel wrote: > Le jeudi 14 avril 2016 22:50:33 UTC+2, wrh...@gmail.com a écrit : > > On Thursday, April 14, 2016 at 2:23:36 PM UTC-4, Andrew Farrell wrote: > > > What happens when you type > > > > > > http://localhost:8000 > > > > > > Into t

Re: how to setup for localhost:8000

2016-04-15 Thread Pierre Quentel
Le jeudi 14 avril 2016 22:50:33 UTC+2, wrh...@gmail.com a écrit : > On Thursday, April 14, 2016 at 2:23:36 PM UTC-4, Andrew Farrell wrote: > > What happens when you type > > > > http://localhost:8000 > > > > Into the address bar of your browser as this is running? > > > > On Thu, Apr 14, 2016 at

Re: how to setup for localhost:8000

2016-04-15 Thread Chris Angelico
On Fri, Apr 15, 2016 at 3:59 PM, Vito De Tullio wrote: > Chris Angelico wrote: > >>> Just a note, some browsers will try to resolve this as www.localhost.com >>> - try http://127.0.0.1:8000 . >> >> Huh? Why should the name 'localhost' get a dot com added? > > ask browser vendors... I'd more ask y

Re: how to setup for localhost:8000

2016-04-14 Thread Vito De Tullio
Chris Angelico wrote: >> Just a note, some browsers will try to resolve this as www.localhost.com >> - try http://127.0.0.1:8000 . > > Huh? Why should the name 'localhost' get a dot com added? ask browser vendors... -- By ZeD -- https://mail.python.org/mailman/listinfo/python-list

RE: how to setup for localhost:8000

2016-04-14 Thread Dan Strohl via Python-list
"well, just do this, and poof, all will be good". Sorry it's not more. Dan > -Original Message- > From: Python-list [mailto:python-list-bounces+d.strohl=f5@python.org] > On Behalf Of wrh8...@gmail.com > Sent: Thursday, April 14, 2016 1:50 PM > To:

Re: how to setup for localhost:8000

2016-04-14 Thread wrh8609
On Thursday, April 14, 2016 at 2:23:36 PM UTC-4, Andrew Farrell wrote: > What happens when you type > > http://localhost:8000 > > Into the address bar of your browser as this is running? > > On Thu, Apr 14, 2016 at 12:46 PM, wrote: > > > Hi, > > > > I am working on window 7 and Python 3.5 to s

Re: how to setup for localhost:8000

2016-04-14 Thread Chris Angelico
On Fri, Apr 15, 2016 at 4:36 AM, Random832 wrote: > Just a note, some browsers will try to resolve this as www.localhost.com > - try http://127.0.0.1:8000 . Huh? Why should the name 'localhost' get a dot com added? ChrisA -- https://mail.python.org/mailman/listinfo/python-list

Re: how to setup for localhost:8000

2016-04-14 Thread Random832
Just a note, some browsers will try to resolve this as www.localhost.com - try http://127.0.0.1:8000 . On Thu, Apr 14, 2016, at 14:06, Andrew Farrell wrote: > What happens when you type > > http://localhost:8000 > > Into the address bar of your browser as this is running? -- https://mail.python

Re: how to setup for localhost:8000

2016-04-14 Thread Andrew Farrell
What happens when you type http://localhost:8000 Into the address bar of your browser as this is running? On Thu, Apr 14, 2016 at 12:46 PM, wrote: > Hi, > > I am working on window 7 and Python 3.5 to setup a localhost:8000 but it > did not get through as shown below: > > python -m http.server

Re: how to setup for localhost:8000

2016-04-14 Thread Peter Otten
wrh8...@gmail.com wrote: > I am working on window 7 and Python 3.5 to setup a localhost:8000 but it > did not get through as shown below: >> python -m http.server > Serving HTTP on 0.0.0.0 port 8000 ... That looks correct so far. Now open a browser and open http://localhost:8000/ -- https://m