Tagged Questions
0
votes
2answers
39 views
How to hide the log in form of a website to make sure that only the owner or admins can log in to the site?
I'm sorry if this is a silly question. But I've searched the web for a really long time. I've googled keywords like "website admin login", "website only admin can login", etc. And I still don't know ...
0
votes
1answer
78 views
Trying to host a persistent web app using EC2
I just created a lightweight web.py web app that I was able to successfully host on an Amazon EC2 instance. I am able to serve the webpage just fine with the following command:
python bin/app.py ...
0
votes
1answer
111 views
Creating a multiple blogger website: need advice on web framework
I am trying to create a website from scratch. Originally, I hoped to be able to use WordPress. However, I'm not sure that it offers me the flexibility that I want, so I am hoping to put some time in ...
0
votes
1answer
148 views
How to check browser compatibility
I've written a web app that uses features that make it incompatible with IE and require minimum versions of Firefox and Chrome. To check browser compatibility, I'm getting the User-Agent from the ...
1
vote
1answer
263 views
Deviding Django application (social network) to Django Frontend and RESTfull API
I'm writing Django application (social network) and thinking about dividing monolithic project to two projects: UI and API. For example, Django will be used only to render pages, interacting with and ...
1
vote
3answers
281 views
URL matching with web.py
I'm writing a simple "Hello world" with apache and web.py. The app works when I go to
http://sandbox-dev.com/webapp/
but not when I go to:
http://sandbox-dev.com/webapp
My intuition (clearly ...
1
vote
1answer
132 views
How to automatically map URL to Request Handler in webapp2?
I'm trying to find a way to automatically map URL to Request Handler in webapp2.
Here's what I want to get: with the classes below, all request to /users can be handled by Users, and all requests to ...
1
vote
1answer
418 views
web.py memory leak
Am I doing something wrong or does web.py leak memory?
import web
class Index:
def GET(self): return 'hello web.py'
app = web.application(('/*', 'Index'), globals())
app.run()
Run the above ...
0
votes
3answers
938 views
Access files from web.py urls
I'm using web.py for a small project and I have files I want the user to be able to access in /files directory on the server. I can't seem to find how to return a file on a GET request so I can't work ...
8
votes
3answers
4k views
Differences between webapp and web.py
Webpy.org - Who uses web.py?
"[web.py inspired the] web framework
we use at FriendFeed [and] the webapp
framework that ships with App
Engine..."
— Brett Taylor,
co-founder of ...
2
votes
3answers
920 views
Authenticating on Web.py - will this code be unsafe for production?
I am making a simple web-app which requires login for the admin page. I came across this incantation on the web.py site (http://webpy.org/cookbook/userauth) :
import hashlib
import web
def ...
5
votes
3answers
4k views
More efficient web framework than Web.py? Extremely Pythonic please! [closed]
I love webpy, it's really quite Pythonic but I don't like having to add the url mappings and create a class, typically with just 1 function inside it.
I'm interested in minimising code typing and ...