Skip to main content

Stone is an interface description language (IDL) for APIs.

Project description

https://cfl.dropboxstatic.com/static/images/sdk/stone_banner.png https://img.shields.io/pypi/pyversions/stone.svg https://img.shields.io/pypi/v/stone.svg https://codecov.io/gh/dropbox/stone/branch/main/graph/badge.svg

The Official Api Spec Language for Dropbox.

Documentation can be found on GitHub

Installation

Install stone using pip:

$ pip install --user stone

This will install a script stone to your PATH that can be run from the command line:

$ stone -h

Alternative

If you choose not to install stone using the method above, you will need to ensure that you have the Python packages ply and six, which can be installed through pip:

$ pip install "ply>=3.4" "six>=1.3.0" "typing>=3.5.2"

If the stone package is in your PYTHONPATH, you can replace stone with python -m stone.cli as follows:

$ python -m stone.cli -h

If you have the stone package on your machine, but did not install it or add its location to your PYTHONPATH, you can use the following:

$ PYTHONPATH=path/to/stone python -m stone.cli -h

After installation, follow one of our Examples or read the Documentation.

Overview

Define an API once in Stone. Use backends, i.e. code generators, to translate your specification into objects and functions in the programming languages of your choice.

Warning: The documentation is undergoing a rewrite.

docs/overview.png

Stone is made up of several components:

Language

A language for writing API specifications, “specs” for short.

Command-Line Interface

The CLI (stone) generates code based on the provided specs, backend, and additional arguments.

Backends

There are builtin backends that come with Stone: Javascript, Python, Obj-C, Swift, and Typescript.

There are other backends we’ve written that aren’t part of the Stone package because they aren’t sufficiently general, and can’t realistically be re-used for non-Dropbox APIs: Go and Java.

Stone includes a Python interface for defining new backends based on its intermediate representation of specs. This gives you the freedom to generate to any target.

JSON Serialization

Stone defines a JSON-compatible serialization scheme.

Motivation

Stone was birthed at Dropbox at a time when it was becoming clear that API development needed to be scaled beyond a single team. The company was undergoing a large expansion in the number of product groups, and it wasn’t scalable for the API team, which traditionally dealt with core file operations, to learn the intricacies of each product and build corresponding APIs.

Stone’s chief goal is to decentralize API development and ownership at Dropbox. To be successful, it needed to do several things:

Decouple APIs from SDKS: Dropbox has first-party clients for our mobile apps, desktop client, and website. Each of these is implemented in a different language. Moreover, we wanted to continue providing SDKs to third-parties, over half of whom use our SDKs. It’s untenable to ask product groups that build APIs to also implement these endpoints in a half-dozen different language-specific SDKs. Without decoupling, as was the case in our v1 API, the SDKs will inevitably fall behind. Our solution is to have our SDKs automatically generated.

Improve Visibility into our APIs: These days, APIs aren’t just in the domain of engineering. Product managers, product specialists, partnerships, sales, and services groups all need to have clear and accurate specifications of our APIs. After all, APIs define Dropbox’s data models and functionality. Before Stone, API design documents obseleted by changes during implementation were the source of truth.

Consistency and Predictability: Consistency ranging from documentation tense to API patterns are important for making an API predictable and therefore easier to use. We needed an easy way to make and enforce patterns.

JSON: To make consumption easier for third parties, we wanted our data types to map to JSON. For cases where serialization efficiency (space and time) are important, you can try using msgpack (alpha support available in the Python generator). It’s possible also to define your own serialization scheme, but at that point, you may consider using something like Protobuf.

Stone is in active use for the Dropbox v2 API.

Assumptions

Stone makes no assumptions about the protocol layer being used to make API requests and return responses; its first use case is the Dropbox v2 API which operates over HTTP. Stone does not come with nor enforce any particular RPC framework.

Stone makes some assumptions about the data types supported in target programming languages. It’s assumed that there is a capacity for representing dictionaries (unordered string keys -> value), lists, numeric types, and strings.

Stone assumes that a route (or API endpoint) can have its argument and result types defined without relation to each other. In other words, the type of response does not change based on the input to the endpoint. An exception to this rule is afforded for error responses.

Examples

We provide Examples to help get you started with a lot of the basic functionality of Stone.

Getting Help

If you find a bug, please see CONTRIBUTING.md for information on how to report it.

If you need help that is not specific to Stone, please reach out to Dropbox Support.

License

Stone is distributed under the MIT license, please see LICENSE for more information.

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

stone-3.3.1.tar.gz (190.9 kB view details)

Uploaded Source

Built Distributions

stone-3.3.1-py3-none-any.whl (162.3 kB view details)

Uploaded Python 3

stone-3.3.1-py2-none-any.whl (162.2 kB view details)

Uploaded Python 2

File details

Details for the file stone-3.3.1.tar.gz.

File metadata

  • Download URL: stone-3.3.1.tar.gz
  • Upload date:
  • Size: 190.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for stone-3.3.1.tar.gz
Algorithm Hash digest
SHA256 4ef0397512f609757975f7ec09b35639d72ba7e3e17ce4ddf399578346b4cb50
MD5 be5ba8cefbe123ea813674091240097b
BLAKE2b-256 996fef25bbc1aefeb9c905d527f1d3cd3f41f22f40566d33001b8bb14ae0cdaf

See more details on using hashes here.

File details

Details for the file stone-3.3.1-py3-none-any.whl.

File metadata

  • Download URL: stone-3.3.1-py3-none-any.whl
  • Upload date:
  • Size: 162.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for stone-3.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e15866fad249c11a963cce3bdbed37758f2e88c8ff4898616bc0caeb1e216047
MD5 dd61e6f80393c21aa054f9e0a22c4daf
BLAKE2b-256 5c92d0c83f63d3518e5f0b8a311937c31347349ec9a47b209ddc17f7566f58fc

See more details on using hashes here.

File details

Details for the file stone-3.3.1-py2-none-any.whl.

File metadata

  • Download URL: stone-3.3.1-py2-none-any.whl
  • Upload date:
  • Size: 162.2 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.27.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.18

File hashes

Hashes for stone-3.3.1-py2-none-any.whl
Algorithm Hash digest
SHA256 cd2f7f9056fc39b16c8fd46a26971dc5ccd30b5c2c246566cd2c0dd27ff96609
MD5 007e40ebc23f03a9055d053b3427b619
BLAKE2b-256 6bbc90f6f7bd7aefbe35fc4918bb2f936f5cab1274c694401df24a9478fe9176

See more details on using hashes here.

Supported by

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