| 123456789101112131415161718192021222324 |
- # Copyright 2013-2024 The py-lmdb authors, all rights reserved.
- #
- # Redistribution and use in source and binary forms, with or without
- # modification, are permitted only as authorized by the OpenLDAP
- # Public License.
- #
- # A copy of this license is available in the file LICENSE in the
- # top-level directory of the distribution or, alternatively, at
- # <http://www.OpenLDAP.org/license.html>.
- #
- # OpenLDAP is a registered trademark of the OpenLDAP Foundation.
- #
- # Individual files and/or contributed packages may be copyright by
- # other parties and/or subject to additional restrictions.
- #
- # This work also contains materials derived from public sources.
- #
- # Additional information about OpenLDAP can be obtained at
- # <http://www.openldap.org/>.
- # Hack to support Python >=v2.6 'python -mlmdb'
- from __future__ import absolute_import
- import lmdb.tool
- lmdb.tool.main()
|