Ubuntu One에 대한 API 세트가 있습니까? 예를 들어, 연락처, 책갈피 등을 동기화하는 API
Ubuntu One에 대한 API 세트가 있습니까? 예를 들어, 연락처, 책갈피 등을 동기화하는 API
답변:
무언가를 지속적으로 저장하고 Ubuntu One과 동기화하는 일반적인 방법은 desktopcouch를 사용하는 것입니다. 예를 들면 다음과 같습니다.
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)
"example.com"은 레코드 형식에 대한 설명을 이상적으로 가리켜 야합니다.
그리고 나중에 정보를 검색하려면 :
database = CouchDatabase("askubuntu_test")
for i in database.get_records(create_view=True):
print i
desktopcouch에 대한 API는 매우 간단합니다. Desktopcouch 설명서 를 참조하여 자세히 알아보십시오.
@Stefano가 말한 것. 또한 지금은 Ubuntu One과 관련된 모든 다른 API를 읽고 읽을 수있는 단일 장소가 없지만 Natty를 위해 제 시간에 빌드하고 있습니다.
예 .. 이것을보십시오 : https://one.ubuntu.com/developer/