Alexander Afanasyev | 5ba9036 | 2013-07-15 19:58:38 -0700 | [diff] [blame] | 1 | ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | # |
| 3 | # Copyright (c) 2011-2013, Regents of the University of California |
| 4 | # Alexander Afanasyev |
| 5 | # |
| 6 | # GNU 3.0 license, See the LICENSE file for more information |
| 7 | # |
| 8 | # Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 9 | # |
| 10 | |
| 11 | # |
| 12 | # Based on PyCCN code, copyrighted and licensed as follows |
| 13 | # |
| 14 | # Copyright (c) 2011-2013, Regents of the University of California |
| 15 | # BSD license, See the COPYING file for more information |
| 16 | # Written by: Derek Kulinski <takeda@takeda.tk> |
| 17 | # Jeff Burke <jburke@ucla.edu> |
| 18 | # |
| 19 | |
| 20 | __all__ = ['Face', 'Closure', 'ContentObject', 'Interest', 'Key', 'Name'] |
| 21 | |
| 22 | VERSION = 0.3 |
| 23 | |
| 24 | # import sys as _sys |
| 25 | |
| 26 | # try: |
| 27 | # from ndn.Face import * |
| 28 | # from ndn.Closure import * |
| 29 | # from ndn.ContentObject import * |
| 30 | # from ndn.Interest import * |
| 31 | # from ndn.Key import * |
| 32 | # from ndn.Name import * |
| 33 | # from ndn import NameCrypto |
| 34 | # from ndn.LocalPrefixDiscovery import * |
| 35 | |
| 36 | # except ImportError: |
| 37 | # del _sys.modules[__name__] |
| 38 | # raise |