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 8809421
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:52:22+00:00 2026-06-14T02:52:22+00:00

I want help on how I would get a variable in a class function

  • 0

I want help on how I would get a variable in a class function sent to another module in python. For example:

class MainHandler(tornado.web.RequestHandler):
    def get(self):
        self.render('main.html')

    def post(self):
        event = self.get_argument('event')
        print event
        return event

How can I use the event variable in another python module?

Thanks

  • 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-14T02:52:23+00:00Added an answer on June 14, 2026 at 2:52 am

    make it self.event …

    the reason for this is that event only exists in the scope of post method as it is…
    it is created when you call post and destroyed when you exit post

    this page may help explain scope and variable lifetimes for you

    http://www.saltycrane.com/blog/2008/01/python-variable-scope-notes/

    Module 1

    class MainHandler(tornado.web.RequestHandler):
        event = None
        def get(self):
            self.render('main.html')
    
        def post(self):
            MainHandler.event = self.get_argument('event')
            print event
            return event
    

    Module 2

    from module1 import MainHandler
    print MainHandler.event
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone help me understand variable/function inheritance in PHP classes. My parent class has
I want a program that would help me create virtual devices on a virtual
i would like you to help me. I want to create dynamicly table (screenshot).
I would appreciate any help on this issue. Lets say I want to load
I would appreciate some help with an UPDATE statement. I want to update tblOrderHead
I want help on this script I am making... I want my website to
hey i guys i want help from you. i am working on website project,
I am in a learning way of mysql and want help to know where
I want to help user to take their pictures with a plugged in video
I'm a final year high school student and want to help my father secure

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.