Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
please explain Bottle runtime log
#1
Bottle v0.13-dev server starting up (using MyWSGIRefServer())...
Listening on http://0.0.0.0:10000/
Hit Ctrl-C to quit.

localhost - - [06/Jul/2016 10:27:52] "HEAD / HTTP/1.1" 200 0
localhost - - [06/Jul/2016 10:27:52] "GET /hello HTTP/1.1" 200 81
localhost - - [06/Jul/2016 10:27:52] "GET /favicon.ico HTTP/1.1" 404 743
localhost - - [06/Jul/2016 10:28:17] "GET / HTTP/1.1" 200 115988
localhost - - [06/Jul/2016 10:28:17] "GET /favicon.ico HTTP/1.1" 404 743
localhost - - [06/Jul/2016 10:28:18] "GET /api/file-tree HTTP/1.1" 200 6471
localhost - - [06/Jul/2016 10:28:38] "GET /api/file-tree HTTP/1.1" 200 6471
# QWEBAPPEND
localhost - - [06/Jul/2016 13:21:36] "GET /__exit HTTP/1.1" 200 0
Okay short story. Couple months ago. I installed Qpython on Android. Tested a bit. Forgot all about it. Forward to today. Suddenly an Android notification appears. Name was like Qpython runtime log. I click it. Above text appears.

Am I paranoid or whats happening?
Reply
#2
What would you be paranoid about? It looks like it started a local server, and then something requested the index page/favicon and some api call.
Also, all of those dates are from three months ago, which is probably when you installed it. Why the log showed up now, is maybe due to a recent update.
Reply
#3
It's just because I did not start a local server or request anything from it today or during last few days. So I assumed somebody / something else may have been doing it.

Okay, the date in the log is old. I did not notice that before. Then it may be okay.
Reply
#4
That's all cool and all... but what does this have to do with Python? I feel like we've fallen into the deep end of the pool, and should probably all swim away lol
Reply
#5
Quote:Am I paranoid or whats happening?

Yes ;)
The point is that Qpython comes with Bottle is installed.

localhost - - [06/Jul/2016 10:27:52] "GET /hello HTTP/1.1" 200 81
So 200 mean a standard response for successful HTTP requests.
Localhost is loop-back IP-address 127.0.0.1,so this is just local for you no connection out.
The respond will return ('Hello, Username!').
Username! is the name Qpyton find for application.
So it's look like a normal severe response of the first run of Bottle.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Issue with bottle-pymysql nikos 13 5,350 Feb-23-2019, 11:15 AM
Last Post: nikos
  How to access routes using Bottle Framework nikos 5 4,201 Feb-13-2019, 11:43 PM
Last Post: nikos
  Passing a query value from a Bottle html template to a route with an encoding nikos 0 2,890 Sep-30-2018, 03:29 AM
Last Post: nikos

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020