What is the best module to access SimpleDB in python?

I am writing a python script to select, insert, update and delete data in SimpleDB.

I used the simpledb module, written in six-party, and it works very well.

I found one potential error / function that is problematic for me when I run queries with a "limit" choice, and I'm thinking of trying it with the boto module to make sure it works better.

Has anyone used these two modules? Take care to improve your opinion?

Thanks!

+4
source share
1 answer

I found boto efficient and straightforward, and I never had problems with constrained queries. Although I have never used the 6apart module.

+3
source

Source: https://habr.com/ru/post/1302406/


All Articles