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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T15:45:29+00:00 2026-06-08T15:45:29+00:00

I am using django-tastypie to create a rest API for my webapp. I want

  • 0

I am using django-tastypie to create a rest API for my webapp.
I want to create classes like mentioned below without typing them all out explicitly(I have more than a 100 classes)

class CityResource(ModelResource):
    class Meta:
        queryset = City.objects.all()
class StateResource(ModelResource):
    class Meta:
        queryset = State.objects.all()
etc...

I was thinking of using metaclasses in python(my approach might be wrong but still want to solve it this way as I want to see how metaclass can help me and maybe a good way to learn it in a real life problem)

I tried this:

class ClassFactory(type):
    def __new__(cls, name, bases, dct):
        return type.__new__(cls, name, bases, dct)

for model in get_models(app):
    name = "%sResource" % model._meta.object_name
    ClassFactory(name, (ModelResource, ), {'Meta':type('Meta', (), {'queryset': model.objects.all()})})

But this gives an error:

TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases

I googled up on this and everywhere it mentions about how if a class derives from 2 other classes that have two different metaclass then the class I make must have a metaclass that was derived from the two metaclasses[*].

  1. How does this error happen in my case, as I am deriving from the same class ModelResource?
  2. I am not sure I understand [*]

I might be solving this problem the wrong way, but need some pointers.

  • 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-08T15:45:31+00:00Added an answer on June 8, 2026 at 3:45 pm

    (Reposted from comment.)

    I don’t think you need the ClassFactory “metaclass” at all.

    klass = type(name, (ModelResource, ), {...})
    

    should get you a new class that’s derived from ModelResource, as you want.

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

Sidebar

Related Questions

I have a REST API using Django Tastypie. Given the following code The models
So, I started using the TastyPie plugin for Django to make a REST api
I'm currently using django with tastypie. I need to implement an api for Questions
I am using django-tastypie to build the API for my project. I followed the
I'm building a simple API using django-tastypie. The idea is I have two resources:
I have a REST api developed with django-tastypie . I have a couple of
I am using Django with Tastypie to provide a restful api. Since each GET
I'm using django and when users go to www.website.com/ I want to point them
I am using the facade-like pattern described here: http://django-tastypie.readthedocs.org/en/latest/non_orm_data_sources.html def obj_get(self, request=None, **kwargs): rv
I'm using Django and Tastypie to create a RESTful web app. I have a

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.