Can I slow down Django

前端 未结 6 608
轻奢々
轻奢々 2021-02-05 10:12

Simple question really

./manage.py runserver

Can I slow down localhost:8000 on my development machine so I can simulate file uploa

6条回答
  •  梦毁少年i
    2021-02-05 10:53

    depending on where you want to simulate such you could simply sleep?

    from time import sleep
    sleep(500)
    

提交回复
热议问题