Compare commits

...

3 Commits

View File

@ -155,6 +155,8 @@ def parse_enclosures(post_dir, entry):
if "type" in e:
print("found enclosed media", e.type)
if "image/" in e.type:
if not os.path.exists(post_dir): #this might be redundant with create_post
os.makedirs(post_dir)
featured_image = grab_media(post_dir, e.href)
media_item = urlparse(e.href).path.split('/')[-1]
entry["featured_image"] = media_item