traut / feeds2fb2

Convert RSS/Atom feeds into fb2 book
0 stars 0 forks source link

It seems images are not downloaded (python module is missing)? #4

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create an opml file with only one feed http://iogannsb.livejournal.com/rss
2. run application

>What is the expected output? 
Completed fb2 book

What do you see instead?
Getting image from 
http://farm3.static.flickr.com/2397/2130049705_022fc93102_o.jpg
Traceback (most recent call last):
  File "./feeds2fb2.py", line 703, in ?
    books[book_title] += imagesToSections(feeds_images[book_title])
  File "./feeds2fb2.py", line 462, in imagesToSections
    binaryblock += base64.b64encode("".join(img_content))
AttributeError: 'module' object has no attribute 'b64encode'

What version of the product are you using? On what operating system?
4.1.3 on linux python 2.3.4

Please provide any additional information below.

Original issue reported on code.google.com by ivan.kov...@gmail.com on 31 Mar 2009 at 5:36

GoogleCodeExporter commented 9 years ago
It seems application requires python 2.4 (or lib base64.py) from that version.
I've managed to run app with a workaround described in 
http://groups.google.com/group/google-code-hosting/msg/54b743d04844cf58. 
Sorry for not reading documentation.

Original comment by ivan.kov...@gmail.com on 31 Mar 2009 at 5:42