Code Monkey home page Code Monkey logo

hallo's People

Contributors

dwpeng avatar oldjun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

hallo's Issues

feature: 自动收集Controller

目前的自动路由属于是lazy自动路由,只有当用户去请求的时候,才会去查找对应的Controller,能否使用一种主动的方式,去Controller。下面是我的一个demo

class BaseControllerProxy(object):
        """  原来的BaseController """
        ...

from collections import defaultdict
module_controller = defaultdict(lambda:[])

class BaseControllerMetaClass(type):

    def __init__(self, name, base, attr):
        print(name, attr)
        # 每创建一个Controller,都做一下收集
        module_controller[attr['__module__']].append(name)
        return BaseControllerProxy()


class BaseController(metaclass=BaseControllerMetaClass):
    pass


def get_module_controller(module, controller):
    pass

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.