Questions tagged [web.py]

web.py is a minimalist web framework for Python.

web.py is a web framework for Python that is as simple as it is powerful. web.py is in the public domain; you can use it for whatever purpose with absolutely no restrictions.

web.py was originally published while Aaron Swartz worked at reddit.com, where the site used it as it grew to become one of the top 1000 sites according to Alexa and served millions of daily page views.

Links

Web.py on Github

Web.py on Google Groups

Tutorials

889 questions
-2
votes
1 answer

Does web.py support search box? Like the search bar on the top right of stack overflow?

I'm new to web.py and front end. The problem is that I didn't find any search box support in web.py cookbook. I did some research and it seems that web.py form only supports Textbox, Password, Textarea, Dropdown, Radio, Checkbox, Button. I wonder…
JohnnyHuo
  • 453
  • 7
  • 13
-2
votes
2 answers

generating errors and access logs in python

We are realizing that we need error logs and access logs for our service processes. These are long running process like services; they respond to calls made to them. Hence, we need your help to simply achieve the following: # for developers from…
Amol Pujari
  • 2,280
  • 20
  • 42
-3
votes
1 answer

User defined functions variable to be accessed by rest of the other functions in python without use of classes

class index: def GET(self): return 'hello' def POST(self): data = web.data() parse_data(data) display() def parse_data(data): data_part=["abc","bcd"] return data def display(): data= "here i…
Zumbaa
  • 61
  • 3
  • 9
-3
votes
1 answer

Can you please tell me how to calculate the lowest and highest number in this list using python

markList=[] while True: mark=float(input("Enter your marks here(Click -1 to exit)")) if mark == -1: break markList.append(mark) markList.sort() mid = len(markList)//2 if len(markList)%2==0: median=(markList[mid]+…
Liban
  • 41
  • 1
  • 5
1 2 3
59
60