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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:58:32+00:00 2026-05-26T02:58:32+00:00

I have a base class and several subclasses. Each sub class has an attribute

  • 0

I have a base class and several subclasses. Each sub class has an attribute called “regex” containing a string:

# module level dictionary
action_types = {}

class Action():
    regex = '.*'

    @classmethod
    def register_action(cls):
        action_types[cls.regex] = cls


class Sing(Action):
    regex = r'^SING [0-9]+'
    Sing.register_action()

class Dance(Action):
    regex = r'^DANCE [0-9]+'
    Dance.register_action()

I want to register all the sub classes in the action_types dictionary using each classes’ regex as a key. I want the logic to register the class to be confined to the base class.

The above example doesn’t work, and I believe this is because the Dance and Sing variables are not yet available in the namespace when they are used.

Is there any way to register the sub classes in the dictionary during the class initialization?

  • 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-05-26T02:58:33+00:00Added an answer on May 26, 2026 at 2:58 am

    That’s not how you want to do it.

    class ActionRegistry(type):
      registry = {}
      def __init__(cls, name, bases, dic):
        if 'regex' in dic:
          cls.registry[dic['regex']] = cls
        super(ActionRegistry, cls).__init__(name, bases, dic)
    
    class Action(object):
      __metaclass__ = ActionRegistry
    
    class Sing(Action):
      regex = r'^SING [0-9]+'
    
    class Dance(Action):
      regex = r'^DANCE [0-9]+'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a base class and several subclasses derived from that base class. I
I have a Base Class, called primitive Graphics. derived from this class are several
I have a base class Character which has several classes deriving from it. The
I have a base class, called NodeUpgrade , which have several child types. An
Let's say I have a Base class and several Derived classes. Is there any
I have an interface with several events I have base class implementing the interface
I have a base class where I derive several classes. I have another class
I have a base class that has a private static member: class Base {
I have a base class and several derived classes. The derived classes use some
I have this class that has a static member. it is also a base

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.