Renamed apiclient.ext.django to django_orm to prevent accidental shadowing of django library (issue 3, comment 2)
diff --git a/apiclient/ext/django.py b/apiclient/ext/django_orm.py
similarity index 100%
rename from apiclient/ext/django.py
rename to apiclient/ext/django_orm.py
diff --git a/samples/django_sample/buzz/models.py b/samples/django_sample/buzz/models.py
index 914b586..10a83ef 100644
--- a/samples/django_sample/buzz/models.py
+++ b/samples/django_sample/buzz/models.py
@@ -5,8 +5,8 @@
 from django.contrib.auth.models import User
 from django.db import models
 
-from apiclient.ext.django import FlowThreeLeggedField
-from apiclient.ext.django import OAuthCredentialsField
+from apiclient.ext.django_orm import FlowThreeLeggedField
+from apiclient.ext.django_orm import OAuthCredentialsField
 
 # Create your models here.