diff options
Diffstat (limited to 'app/photos/build.py')
-rw-r--r-- | app/photos/build.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/photos/build.py b/app/photos/build.py new file mode 100644 index 0000000..15a649e --- /dev/null +++ b/app/photos/build.py @@ -0,0 +1,30 @@ +import os +from django.core.urlresolvers import reverse +from builder.base import BuildNew + + +class BuildLuxPhotos(BuildNew): + + def build(self): + self.build_detail_view() + + def get_model_queryset(self): + return self.model.objects.all() + + def build_detail_view(self): + ''' + write out all the expenses for each trip + ''' + for obj in self.get_model_queryset(): + url = obj.get_absolute_url() + path, slug = os.path.split(url) + path = '%s/' % path + # write html + response = self.client.get(url) + print(path, slug) + self.write_file(path, response.content, filename=slug) + + +def builder(): + j = BuildLuxPhotos("photos", "LuxGallery") + j.build() |