From 04e9e985a14d07231876a4e8c4fcf33593256352 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Mon, 17 May 2010 11:54:51 -0400 Subject: [PATCH] Document unauthenticated connections in the README. --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index 96f86e3..d41a88e 100644 --- a/README.rst +++ b/README.rst @@ -44,6 +44,10 @@ Creating a request >>> from github2.client import Github >>> github = Github(username="ask", api_token=".......") +Or for an unauthenticated connection + + >>> github = Github() + Users =====