Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7896439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:53:42+00:00 2026-06-03T07:53:42+00:00

I am playing around with Google App Engine and I am simply trying to

  • 0

I am playing around with Google App Engine and I am simply trying to increment a value by 1 (player.number_requests — see code below). However, when I do so, I am getting the following error: “TypeError: can only concatenate tuple (not “int”) to tuple”. Any idea why this is happening?

class Player(db.Model):
    name = db.StringProperty(required=True, multiline=False),
    number_requests = db.IntegerProperty(required=True, default=0),
    last_seen = db.DateTimeProperty(required=True, auto_now_add=True),
    created_date = db.DateTimeProperty(required=True, auto_now_add=True)

class PlayersHandler(webapp2.RequestHandler):
    def get(self):
        result = Player.get_by_key_name(self.request.get('name'))
        if result:
            result.last_seen = datetime.now()
            result.number_requests += 1 # FAILS HERE
            result.put()
            self.response.out.write('{0}, {1}'.format(result.last_seen, result.number_requests))

Trace

Traceback (most recent call last):
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 1536, in __call__
    rv = self.handle_exception(request, response, e)
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 1530, in __call__
    rv = self.router.dispatch(request, response)
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 1278, in default_dispatcher
    return route.handler_adapter(request, response)
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 1102, in __call__
    return handler.dispatch()
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 572, in dispatch
    return self.handle_exception(e, self.app.debug)
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 570, in dispatch
    return method(*args, **kwargs)
  File "main.py", line 39, in get
    result.number_requests += 1
TypeError: can only concatenate tuple (not "int") to tuple
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T07:53:43+00:00Added an answer on June 3, 2026 at 7:53 am

    The properties in your model have a comma (,) at the end. They shouldn’t. In python writing

    foo = bar,
    

    is the same as if you’d put

    foo = (bar,)
    

    which creates a tuple.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am playing around with google app engine and I'm thinking about starting an
I'm brand new to Google App Engine and have just been playing around with
I've playing around with Google App Engine and Google Datastore for a while now
I am playing around with Google Music. I'm trying to see if I can
Just playing around with java trying to learn it etc. Here is my code
Recently am being playing around with qr code generation, and after alot of google
I am playing around with phpwebsocket. I got the code from http://code.google.com/p/phpwebsocket/ . the
I'm playing around with the iosched app from Google I/O 2011. Looking at the
I am trying to write some google map functionlity and playing around with javascript
I'm currently playing around with tipfy on Google's Appengine and just recently ran into

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.