├── .gitignore ├── Readme.markdown ├── dev-requirements.txt ├── example ├── __init__.py ├── computed │ ├── __init__.py │ ├── models.py │ └── tests.py ├── settings.py ├── timestamp │ ├── __init__.py │ ├── models.py │ └── tests.py ├── urls.py └── wsgi.py ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/Readme.markdown -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | ipython 3 | ipdb 4 | -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/computed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/computed/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/example/computed/models.py -------------------------------------------------------------------------------- /example/computed/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/example/computed/tests.py -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/timestamp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/timestamp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/example/timestamp/models.py -------------------------------------------------------------------------------- /example/timestamp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/example/timestamp/tests.py -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/example/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinastone/django-descriptors/HEAD/requirements.txt --------------------------------------------------------------------------------