├── .gitignore ├── LICENSE ├── README.md ├── apps ├── corp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── biz.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ └── views.py └── isv │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── backend.py │ ├── biz.py │ ├── cache.py │ ├── constants.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── serializer.py │ └── views.py ├── core ├── __init__.py ├── admin.py ├── celery_annotations.py ├── constants.py ├── middlewares.py ├── model.py ├── parsers.py ├── renderers.py ├── serializer.py ├── storage.py ├── utils.py └── view.py ├── example ├── __init__.py ├── celery.py ├── local_settings.py.default ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt ├── setup.cfg ├── static └── microapp.html └── templates └── error.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/README.md -------------------------------------------------------------------------------- /apps/corp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/corp/__init__.py -------------------------------------------------------------------------------- /apps/corp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/corp/admin.py -------------------------------------------------------------------------------- /apps/corp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/corp/apps.py -------------------------------------------------------------------------------- /apps/corp/biz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/corp/biz.py -------------------------------------------------------------------------------- /apps/corp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/corp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/corp/models.py -------------------------------------------------------------------------------- /apps/corp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/corp/views.py -------------------------------------------------------------------------------- /apps/isv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/__init__.py -------------------------------------------------------------------------------- /apps/isv/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/admin.py -------------------------------------------------------------------------------- /apps/isv/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/apps.py -------------------------------------------------------------------------------- /apps/isv/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/backend.py -------------------------------------------------------------------------------- /apps/isv/biz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/biz.py -------------------------------------------------------------------------------- /apps/isv/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/cache.py -------------------------------------------------------------------------------- /apps/isv/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/constants.py -------------------------------------------------------------------------------- /apps/isv/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/isv/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/models.py -------------------------------------------------------------------------------- /apps/isv/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/serializer.py -------------------------------------------------------------------------------- /apps/isv/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/apps/isv/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/celery_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/celery_annotations.py -------------------------------------------------------------------------------- /core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/constants.py -------------------------------------------------------------------------------- /core/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/middlewares.py -------------------------------------------------------------------------------- /core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/model.py -------------------------------------------------------------------------------- /core/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/parsers.py -------------------------------------------------------------------------------- /core/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/renderers.py -------------------------------------------------------------------------------- /core/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/serializer.py -------------------------------------------------------------------------------- /core/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/storage.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/utils.py -------------------------------------------------------------------------------- /core/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/core/view.py -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/example/celery.py -------------------------------------------------------------------------------- /example/local_settings.py.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/example/local_settings.py.default -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/example/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = migrations,.svn,CVS,.bzr,.hg,.git,__pycache,.ropeproject 3 | max-line-length = 120 4 | -------------------------------------------------------------------------------- /static/microapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/static/microapp.html -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/007gzs/dingtalk-django-example/HEAD/templates/error.html --------------------------------------------------------------------------------