aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/models/users.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-02-03 14:45:32 +0100
committerDavid Medina <davidmedina9@gmail.com>2012-02-03 14:46:54 +0100
commitf01bc94a33d8644da65b5fa895c222e9ee057b50 (patch)
tree3bfc837901a54f97a30f1d24431d8322906de192 /pygithub3/models/users.py
parentPypi environment by setuptools (diff)
downloadpython-github3-f01bc94a33d8644da65b5fa895c222e9ee057b50.tar.xz
python-github3-f01bc94a33d8644da65b5fa895c222e9ee057b50.zip
Fix imports to new environment
Absolute imports as PEP8 tells
Diffstat (limited to 'pygithub3/models/users.py')
-rw-r--r--pygithub3/models/users.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/pygithub3/models/users.py b/pygithub3/models/users.py
new file mode 100644
index 0000000..0ceef90
--- /dev/null
+++ b/pygithub3/models/users.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+
+from .base import Model
+
+__all__ = ('Plan', 'User')
+
+
+class Plan(Model):
+
+ def __str__(self):
+ return '<Plan (%s)>' % getattr(self, 'name', '')
+
+
+class User(Model):
+ """ """
+
+ maps = {'plan': Plan}
+ dates = ('created_at', )
+
+ def __str__(self):
+ return '<User (%s)>' % getattr(self, 'login', '')