defaults.py 285 B

1234567891011121314151617181920
  1. default_headers = (
  2. 'accept',
  3. 'accept-encoding',
  4. 'authorization',
  5. 'content-type',
  6. 'dnt',
  7. 'origin',
  8. 'user-agent',
  9. 'x-csrftoken',
  10. 'x-requested-with',
  11. )
  12. default_methods = (
  13. 'DELETE',
  14. 'GET',
  15. 'OPTIONS',
  16. 'PATCH',
  17. 'POST',
  18. 'PUT',
  19. )