3
votes
1answer
98 views

Can Flask (Python) be ported to Lua?

Is there anything Flask (the Python webframework) does that Lua as a language doesn't support? I'd like to re-implement Flask, which is developed in Python, over to Lua to create a new Lua ...
0
votes
1answer
61 views

AttributeError: 'Anonymousidentity' object has no attribute 'name'

everyone! I'm using Flask to build a website. But when I open 127.0.0.1:5000, it returns AttributeError: 'Anonymousidentity' object has no attribute 'name'. Anonymousidentity is defined in ...
0
votes
0answers
81 views

Google Custom Search Original Image URL

I have currently implemented a Google Custom Search for images locally via Python/Flask. However, I am having difficulty getting the urls of the original image, rather than the page that they were ...
1
vote
1answer
74 views

How should I create & pass user tokens?

I'm writing a web app (in flask) that has an API back end that the iOS app will communicate with. What is the best way to create, pass, and authenticate user tokens?
3
votes
1answer
67 views

Flask @route bug

I'm using Flask 0.9 in an API project, and there seems to be a bug on the @router decorator, or I'm doing something extremely wrong here. I have these 2 URL, /twitter/authorize and ...
2
votes
1answer
310 views

Python Flask webapp simple proxy configuration to enable SSL/HTTPS with Apache

I have a working webapp based on Python, Flask. (configured to work on http:// host:port) I need to get it to work with https. I was given an Apache proxy - which redirects all requests in such ...
4
votes
1answer
344 views

flask-login: Chrome ignoring cookie expiration?

I've got the authentication working with flask-login, but it seems like no matter what I use for the cookie duration in flask, the session is still authenticated. Am I setting the config variables ...
1
vote
3answers
116 views

can I store a Dictionary as the property of an object?

Using Python/Flask/SQLAlchemy/Heroku. Want to store dictionaries of objects as properties of an object: TO CLARIFY class SoccerPlayer(db.Model): name = db.Column(db.String(80)) goals_scored ...
0
votes
1answer
37 views

Should the flask folder be a part of my project?

I have a flask web app. The flask folder is pretty heavy. Do I need to add it to my git repository in order for the app to work with Heroku? Should I add the flask folder to git ignore and not commit ...
0
votes
1answer
21 views

web-app: namespace of a server function

I want to compute functions on my server, such as median() or average(). Currently I'm doing this by mapping these functions to an URL, i.e. /computeMedian. I could alternatively put all my functions ...
3
votes
1answer
341 views

Minify HTML output from Flask application with Jinja2 templates

Is there a Flask or Jinja2 configuration flag / extension to automatically minify the HTML output after rendering the template?
0
votes
3answers
112 views

How is a text file sent to a browser line by line

I have a text file and want to send it line by line to a web browser. So as each line is read it is output in the browser. I presume JQuery would be the route to take, but I've never used it as the ...
0
votes
1answer
108 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 ...
1
vote
2answers
283 views

What would be the python web framework to push real-time data to client from server eg Tornado? [closed]

I'm having a problem in implementing an application using the Flask framework to send real-time data to a client browser. It will be streaming tweet user info to a client, using the twitter Streaming ...
2
votes
2answers
238 views

Send real time data to client with juggernaut

I have tried to use the juggernaut framework for flask in order to send real-time information to the client browser followinf the flask snippet at http://flask.pocoo.org/snippets/80/. When I try to ...
1
vote
1answer
753 views

Can flask framework send real-time data from server to client browser?

I was wondering how (if at all) flask performs long polling, so the server can send data over a connection to the client. For example if the server receives a twitter feed via the streaming api how ...
2
votes
1answer
118 views

What are the non-obvious problems you encounter, moving from Django to Flask? [closed]

Question is for programmers who have used Django and Flask for real projects. What challenges do you face going to the Flask? Interested in the situation when there may be unexpected difficulties ...
1
vote
2answers
296 views

blueprint of blueprints (Flask)

I have a series of blueprints I'm using, and I want to be able to bundle them further into a package I can use as seamlessly as possible with any number of other applications. A bundle of blueprints ...
0
votes
0answers
100 views

reversi web app

I modified an online simple command line text based python reversi code to be a web app using flask. This is for a learning project. To communicate between the browser and the server I used a base64 ...
3
votes
1answer
508 views

celery / flask ; going from development to production

I have a flask app, I am using celery as a task queue. I have a development version working well through a small script that looks like this: from celery import Celery from settings import REDIS_URL ...
2
votes
1answer
290 views

Simplest way to deploy platform independent python apps with graphics functionality. [closed]

Let say I want to write a simple app that lets users paste in a column or two of data, click a few radio boxes and have my code process that data and display some plots for them. What are some of the ...
4
votes
3answers
266 views

Should PostgreSQL connections be pooled in a Python web app, or create a new connection per request?

I'm building a web app in Python (using Flask). I do not intend to use SQLAlchemy or similar ORM system, rather I'm going to use Psycopg2 directly. Should I open a new database connection (and ...
3
votes
2answers
297 views

How can I securely pass an arbitrarily deep path to a webapp (Flask, in this case)?

I have a form that sends a string to my Flask app when the form is posted. The string is a filepath, so I'd like to make sure it doesn't contain anything nasty, like ../../../etc/passwd. Werkzeug, ...
2
votes
3answers
2k views

great flask / other python micro framework code I could learn from

I'd like to look at some good web-app code written in python, just so i can learn some of the patters / see how i can improve my code. I've already googled around a bit, used google code search and ...
5
votes
1answer
1k views

Flask for Python - architectural question regarding the system

I've been using Django and Django passes in a request object to a view when it's run. It looks like (from first glance) in Flask the application owns the request and it's imported (as if it was a ...