Files
rapid/README.rst
Kenneth Reitz aca2d61773 simple updates
2011-05-02 10:21:48 -04:00

55 lines
720 B
ReStructuredText

Rapid: API Wrapper Framework
============================
:Author: Kenneth Reitz
:License: ISC
Features
--------
- Encoding/Decoding Mechanisms (JSON, YAML, etc)
- HTTP Basic, OAuth
- Pagination
- CachedEndpoint
rapid.Endpoint
rapid.CachedEndpoint
rapid.API
rapid.SyncedList
Simple::
import rapid
class GitHub(rapid.API):
repos = rapid.Endpoint(models.Repo)
def __init__(self, username=None, password=None):
pass
@api_property('')
def repos()
@property
def repos():
repos = rapid.CachedEndpoint()
Hmmmm::
import rapid
class GitHub(rapid.API):
def __init__(self):
pass
def repos():