From 3d5f8482d79483ee6f3a77c0af0bcf98a26eb740 Mon Sep 17 00:00:00 2001 From: Cameron Currie Date: Thu, 23 Feb 2012 12:41:50 -0600 Subject: [PATCH] Add README --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..375deca --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +coderwall +========= +A Python module for accessing user data at http://coderwall.com + +Usage: +------ +``` +>>> from coderwall import CoderWall +>>> cwc = CoderWall('cwc') +>>> cwc.name +u'Cameron Currie' +>>> cwc.location +u'Austin, TX' +>>> cwc.endorsements +0 +>>> cwc.badges +[Charity: Fork and commit to someone's open source project in need, +Python: Would you expect anything less? Have at least one original repo +where Python is the dominant language, T-Rex: Have at least one original +repo where C is the dominant language] +```