Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 667 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 667 Bytes

codebottle-python Build Status

A Python library to interact with CodeBottle's API. This is obviously still in development.

Example:

from codebottle import CodeBottle

cb = CodeBottle()

# Results of a search
search = cb.snippets.get(keywords='java').data

# Get a snippet
snippet = cb.snippets.get('91f98993c8').data

# Get newest snippets
browse = cb.snippets.new().data

Installing

From git: pip install git+https://github.com/codebottle-io/codebottle-python.git

TODO:

  • Convert dicts to classes