Metadata-Version: 2.1
Name: django_server_autoreload
Version: 1.4.3
Summary: Python Package for Reloading Django Server at some specific time once every day,Note: this package only works in django installed in windows os. 
Home-page: https://github.com/odiwuorlameck2019gmail
Author: Odiwuor Lameck
Author-email: odiwuorlameck2019@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE.txt




# At the  top of your setting.py file in django add :

from django_server_autoreload.Django_AutoReloader import Autoreload_Django    


# At the End of settings.py file add the bellow code.
# Enter Reload Time and App url example: reload_time='03:00',app_url='127.0.0.1:8080'

re_run=Autoreload_Django(reload_time="03:00",app_url="127.0.0.1:8080")   
re_run.refresh.start() 






