Python Forum

Full Version: TypeError("index() missing 1 required positional argument: 'pymydb'"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
# dbhost is optional, default is localhost
plugin = bottle_pymysql.Plugin( dbuser='nikos', dbpass='*******', dbname='counters', charset = 'utf8' )
app.install(plugin)
 

@app.route( '/' )
@auth_basic(is_authenticated_user)
def index( pymydb ):
 
    pdata = ''
    names = []
 
    pymydb.execute( '''SELECT name, phone, hits, money FROM clients ORDER BY hits DESC''' )
    data = pymydb.fetchall()
Error:
TypeError("index() missing 1 required positional argument: 'pymydb'",) Traceback: Traceback (most recent call last): File "/usr/lib64/python3.6/site-packages/bottle.py", line 862, in _handle return route.call(**args) File "/usr/lib64/python3.6/site-packages/bottle.py", line 1740, in wrapper rv = callback(*a, **ka) File "/usr/lib64/python3.6/site-packages/bottle.py", line 2690, in wrapper return func(*a, **ka) TypeError: index() missing 1 required positional argument: 'pymydb'
Can you help me fix this error?
index() has as an argument the bottle_pymysql keyword 'pymydb' but i'am not calling this function from within myscript it supposed to be run when script starts.

Why am i getting thsi error?
Hello, any thoughts as to why i'm getting thsi error?
Can you please provide minimal, runnable code that reproduces this issue?