PythonAnywhere is a Python-centric web-based development and hosting service.

learn more… | top users | synonyms

0
votes
0answers
52 views

Python web.py hasattr not defined[solved]

If my explanation is lacking, please look here as well: https://github.com/webpy/webpy/issues/199 In this instance, I am trying to hide/show certain elements in the layout based on certain variables. ...
1
vote
1answer
47 views

Pythonanwhere Facebook app Canvas URL no longer available

Am trying to follow the PythonAnywhere Facebook app example, but get stuck early on trying to set the Canvas URL per PA's instructions. It appears that FB wants to force me to use Heroku for this; and ...
2
votes
1answer
68 views

Same template across multiple pages in web.py[solved]

I am having difficulty understanding how to do a site layout with the same template across multiple pages (PLEASE don't just link me to the 'site layout cookbook' on the Web.Py page. It only uses a ...
2
votes
1answer
76 views

pythonanywhere 404 error

I'm building an app in pythonanywhere using the Flask Mega Tutorial and it works fine when I run in on my pc. When I upload it to PA it gets a 404 error. my structure /microblog /flask ...
-1
votes
1answer
97 views

Python console 24/7 hosting [closed]

I've been looking around for a 24/7 python console hosting, with internet access, I'm thinking of setting up a vps, but I stumbled apon pythonanywhere.com, They do support what I'm looking for except ...
0
votes
0answers
100 views

Oauth2 - TypeError: expected a character buffer object

I'm building an application on pythonanywhere.com, I'm using using this oauth2 library. When I run this code: PROXY_DOMAIN = "proxy.server:3128" resp, content = ...
2
votes
1answer
230 views

ImportError while rendering: No module named app

I'm running a twitter application on pythonanywhere, the app works perfectly on localhost development server, but when I run it on pythonanywhere I get this error: 2013-01-30 20:04:12,843 :Traceback ...
2
votes
2answers
202 views

Connection refused to Twitter API on PythonAnywhere

I am trying to connect to the twitter streaming API on Python anywhere, but always get a connection refused error. I use Tweepy in my application, and to test the connection I am using the streaming ...
1
vote
1answer
99 views

web.py doesn't delete stop between requests

Took me a very long time to figure out what the problem was, and now I don't know how to solve it. I'm using pythonanywhere to run my web.py server So here's the problem. The web.py instance does ...
5
votes
2answers
545 views

Run python script online (django) [closed]

I'm new to Python, and programming in general, so anything explained should be in Layman terms. I've created a simple script that reads CSV files and outputs results. I'd like to upload that script ...
2
votes
1answer
231 views

Python Anywhere access denied to MySQL database

I started to use Python Anywhere today. I created the database MySQL following the instructions. The problem is I can't do a simple manage.py syncdb because I get acess denied error for my user ...
2
votes
1answer
126 views

Trouble getting PythonAnywhere to scrape web for me

I've been experimenting around on PythonAnywhere trying to get some python to work on a webserver. I initially switched from Arvixe because they were running 2.4 and PythonAnywhere's name was just ...
1
vote
1answer
135 views

Enable Automatic Reload in Django on PythonAnywhere

I've been wondering if I can enable Auto Reload on a PythonAnywhere-based Django web-server. Right now, when I make any changes to my models or views, I have to reload the complete web-app for changes ...
1
vote
1answer
85 views

No template named index error

I am new to Python, and I am trying to run a web.py app with Python Anywhere, but I keep getting the No template named index error. I've modified wsgi.py to use the following: import web import ...
0
votes
2answers
108 views

looking for a tool that allows in-browser python

I am developing an application in python that involves a lot of plots and user interactions. I do not want my clients to have to download anything to use the app. So I was looking for an online tool ...
2
votes
1answer
99 views

Restart server from bash console

Is there any way to restart the web server from within the bash console given in the browser for PythonAnywhere? I have searched google for a while and have not found anything relevant.
3
votes
1answer
117 views

Installing from source without apt-get in pythonanywhere

Maybe it's because I'm new to shared environments where I have no root access or the dpkg/apt family of tools, but I wanted to install from source (for instance, gcc/gdb), possibly by using wget to ...
5
votes
1answer
163 views

django pythonforfacebook handle mobile app access?

Inspired by the write a facebook app on PythonAnywhere in 20 minutes on Hacker News (http://blog.pythonanywhere.com/35/), I'm writing a facebook app. All is well with accessing the facebook app via a ...
4
votes
2answers
206 views

Django facebook app: missing signed_request

Inspired by the write a facebook app app in 20 minutes on Hacker News, I'm writing a facebook app, and the home page works fine: The empty list of poems is displayed. However, I'm having trouble ...
0
votes
1answer
391 views

django hosting with mysql

I m running my python base REST services on DJango free hosting site called "pythonanywhere". So far each web service was ~100ms in response thus my frontend was super fast, but last few days ...
1
vote
1answer
32 views

Duplicate Search Engine results on Pythonanywhere

I am currently using my own domain name for my Pythonanywhere app. The original username.pythonanywhere.com still serves the same content as www.my-domain.com, and I wanted to know if there would be ...
3
votes
1answer
189 views

Accessing module installed on Pythonanywhere in Web2py

I've used pip-2.7 install --user soundcloud to install the soundcloud module for Python 2.7 in Pythonanywhere. In my Web2py App in Pythonanywhere, I get an error message when using import soundcloud, ...
3
votes
1answer
452 views

Pythonanywhere install and import new module

I'm new to Pythonanywhere and want to install the 'soundcloud' Python module. I've opened up a Bash console and given the pip install --user soundcloud command. It appears to have installed, as I see ...
2
votes
1answer
204 views

How can I get command line parameters into Python Anywhere's scheduler?

I have a Python3 script that can take optional command line parameters which the script reads via sys.argv. My script works fine if I run it from a terminal window, however any time I add it to the PA ...
2
votes
1answer
150 views

PythonAnywhere scheduler return codes

When I look at my logs from scheduled tasks at PythonAnywhere I see they are full of statements such as: 2012-06-07 11:09:16 -- Completed task, took 11.00 seconds, return code was 0. 2012-06-08 ...
3
votes
1answer
125 views

Stuck processes need to be killed on pythonanywhere [closed]

The kill button on the schedule page isn't working at the moment on pythonanywhere. Any ideas for a work around while I wait for support from the helpful folks at ResolverSys? I currently can't open ...
2
votes
1answer
239 views

backup mysql database on pythonanywhere

I am new to MySQL and know how to use mysqldump utility to backup a database. However, I think it is not installed on pythonanywhere. I would appreciate any suggestions on how I can back up mysql ...
5
votes
1answer
525 views

Web Form with Web.py on PythonAnywhere

I'm trying to make a simple web script using the PythonAnywhere.com's web.py platform. My intention is to create a simples Form which gets the data of textboxes and is able to work with them just like ...
2
votes
1answer
75 views

How to see new results in console after updating imported module in PythonAnywhere

When I import a selfmade module and run the program, the output is what I expected. However when I update the module and run the program in the same console, the previous result is shown. If I open a ...
3
votes
1answer
548 views

How do I deploy web2py on PythonAnywhere but from Dropbox shared folder?

I have tried to use this link How do I deploy web2py on PythonAnywhere? to deploy Web2py on Pythonanywhere but from Dropbox's shared folder. path = '/home/my_username/Dropbox/web2py' The result ...
9
votes
3answers
1k views

How do I deploy web2py on PythonAnywhere?

How do i get a basic web2py server up and running on PythonAnywhere?