Skip to main content

Official Python SDK for the Droplo content API

Project description

Python client for droplo.io

Latest PyPI version MIT License Circle CI

Getting started

Install the client for your project

Simply run:

pip install droplo

Basic example of use:

>>> import droplo
>>> api = droplo.Api("YOUR_ACCESS_TOKEN")
>>> blogposts = api.get("blogposts")
>>> blogposts.files[0].name

Using Memcached (or any other cache)

By default, the kit will use Shelve to cache the requests (a file-based cache from the standard library). It is recommended to use a cache server instead, for example Memcached.

You can pass a Memcached client to the droplo.get call:

>>> import memcache
>>> api = droplo.Api("YOUR_ACCESS_TOKEN", cache=memcache.Client(['127.0.0.1:11211']))

By duck typing you can pass any object that implement the set and get methods (see the NoCache object for the methods to implement).

Licence

Copyright (c) 2018 Droplo, Inc. See LICENSE for further details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

droplo-0.1.3.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

droplo-0.1.3-py2-none-any.whl (7.0 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page