Hi Guys
I have installed fileconveyor (http://fileconveyor.org/) successfully with Amaxon S3 . I was struggling to configure this on linux python 2.6.8. I never got it correct,
then I dropped it because of frustration and then looked for other solutions like s3fs for Drupal.
Finally because project requirements I tried this today again and got it worked.
No concrete documentation available when you encounter an error with fileconveyor
I got 2 errors
1. Could not load Boto's S3 bindings
Some where I read, that file conveyor need django-storages==1.1.5
So I just install django-storages==1.1.5 (sudo easy_install django-storages==1.1.5) and I got the fileconveyor deamon started, then I got the second error.
2. set_contents_from_file() got an unexpected keyword argument 'reduced_redundancy
Fortunately this helped me https://github.com/wimleers/fileconveyor/issues/110
I installed Boto 2.1.5
$ pip unistall boto
$ git clone git://github.com/boto/boto.git
$ cd boto
$ python setup.py install
Hence fileconveyor needs exactly the following
django-storages version 1.1.5 and Boto Version 2.15.0 (latest version)
The fileconveyor version is 0.3
I am putting this here, it may be helpful to others as well who want to configure drupal with s3 Amazon cloudfront
Good link how you can do this