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.

views.py 399B

123456789101112131415161718
  1. from django.shortcuts import render
  2. # Create your views here.
  3. import hrld.test_imp
  4. from django.db import transaction
  5. from django.http import HttpResponse
  6. @transaction.non_atomic_requests
  7. async def myview(request):
  8. hrld.test_imp.run_hrld(3)
  9. return HttpResponse("return this string???./>,.>")
  10. print("ABC123+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++===")