Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating a webpy app that has multiple forms that take input and than that input is executed by python, however I keep getting an Attribute Error on Key Error on the first form : AttributeError : 'Pycode' , no clue why this is happening, here's the code :

import web
from Commands import *
import Commands

operations = [method for method in dir(port) if callable(getattr(port, method))]
test = port(0)

def make_text(string):
    return string

urls = ('/', 'tutorial')
render = web.template.render('templates/',globals={'oper':operations})

app = web.application(urls, globals())

pythonCode = web.form.Form(
            web.form.Textarea(name='', class_='Pycode', id='Pycode')
            )
setProportionalGain = web.form.Form(
    web.form.Textbox(name='Set Proportional Gain', class_='SG', id='SG')
    )
setIntegralGain = web.form.Form(
    web.form.Textbox(name='Set Inegral Gain', class_='SI', id='SI')
    )
setDerivativeGain = web.form.Form(
    web.form.Textbox(name='Set Derivative Gain', class_='SD', id='SD')
    )

class tutorial:
    def GET(self):
        code = pythonCode()
        proportional = setProportionalGain()
        integral = setIntegralGain()
        derivative = setDerivativeGain()
    return render.tutorial(code,proportional,integral,derivative, "Input Command for ohm")

def POST(self):
    form = pythonCode()
    proportional = setProportionalGain()
    integral = setIntegralGain()
    derivative = setDerivativeGain()
    form.validates()
    data = web.input()
    print data
    print data.Pycode
    s = data.Pycode
    proportionalGain = "test.setProportionalGain(%s)" % data.SG
    integralGain = "test.setItegralGain(%s)" % data.SI
    derivativeGain = "test.setDerivativeGain(%s)" % data.SD
    try:
        exec(proportionalGain)
        exec(integralGain)
        exec(derivativeGain)
        exec(data.Pycode)
        s = "This is Python!"
    except:
        pass
    return s


if __name__ == '__main__':
    app.run()
share|improve this question

1 Answer

up vote 0 down vote accepted

Check the docs of how to use form inputs. Every input should have name as it first argument and what you have in your name attributes should be description.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.