You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 980B

123456789101112131415161718192021222324252627282930313233
  1. r"""
  2. ______ _____ _____ _____ __
  3. | ___ \ ___/ ___|_ _| / _| | |
  4. | |_/ / |__ \ `--. | | | |_ _ __ __ _ _ __ ___ _____ _____ _ __| |__
  5. | /| __| `--. \ | | | _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
  6. | |\ \| |___/\__/ / | | | | | | | (_| | | | | | | __/\ V V / (_) | | | <
  7. \_| \_\____/\____/ \_/ |_| |_| \__,_|_| |_| |_|\___| \_/\_/ \___/|_| |_|\_|
  8. """
  9. __title__ = 'Django REST framework'
  10. __version__ = '3.10.3'
  11. __author__ = 'Tom Christie'
  12. __license__ = 'BSD 2-Clause'
  13. __copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'
  14. # Version synonym
  15. VERSION = __version__
  16. # Header encoding (see RFC5987)
  17. HTTP_HEADER_ENCODING = 'iso-8859-1'
  18. # Default datetime input and output formats
  19. ISO_8601 = 'iso-8601'
  20. default_app_config = 'rest_framework.apps.RestFrameworkConfig'
  21. class RemovedInDRF311Warning(DeprecationWarning):
  22. pass
  23. class RemovedInDRF312Warning(PendingDeprecationWarning):
  24. pass