Typowym sposobem przechowywania czegoś na stałe i synchronizacji z Ubuntu One jest po prostu użycie Desktopcouch. Oto przykład:
from desktopcouch.records.server import CouchDatabase
from desktopcouch.records.record import Record
database = CouchDatabase("askubuntu_test", create=True)
record = Record(
{"site": "askubuntu.com", "awesome": True}, "http://example.com")
database.put_record(record)
Gdzie „example.com” powinno idealnie wskazywać na opis formatu nagrania.
Aby później uzyskać informacje:
database = CouchDatabase("askubuntu_test")
for i in database.get_records(create_view=True):
print i
Interfejs API Desktopcouch jest dość prosty. Zajrzyj do dokumentacji Desktopcouch, aby dowiedzieć się więcej na ten temat.
Tak .. spróbuj zobaczyć to: https://one.ubuntu.com/developer/
źródło