Metadata-Version: 2.1
Name: openldap-schema-parser
Version: 1.1.4
Summary: OpenLDAP schema file parser
Home-page: https://github.com/mypaceshun/openldap-schema-parser
License: MIT
Keywords: OpenLDAP,schema,parser
Author: KAWAI Shun
Author-email: shun@osstech.co.jp
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click (>=8.1.2,<9.0.0)
Requires-Dist: rich (>=12.2.0,<13.0.0)
Project-URL: Documentation, https://openldap-schema-parser.readthedocs.io/
Project-URL: Repository, https://github.com/mypaceshun/openldap-schema-parser
Description-Content-Type: text/x-rst

.. image:: https://img.shields.io/pypi/pyversions/openldap-schema-parser
   :target: https://pypi.org/project/openldap-schema-parser/
   :alt: PyPI - Python Version
.. image:: https://badge.fury.io/py/openldap-schema-parser.svg
   :target: https://pypi.org/project/openldap-schema-parser/
.. image:: https://github.com/mypaceshun/openldap-schema-parser/workflows/Test/badge.svg?branch=main&event=push
   :target: https://github.com/mypaceshun/openldap-schema-parser/actions/workflows/main.yml
.. image:: https://codecov.io/gh/mypaceshun/openldap-schema-parser/branch/main/graph/badge.svg?token=1H6ZVS122O
   :target: https://codecov.io/gh/mypaceshun/openldap-schema-parser
.. image:: https://pepy.tech/badge/openldap-schema-parser
   :target: https://pypi.org/project/openldap-schema-parser/
.. image:: https://readthedocs.org/projects/openldap-schema-parser/badge/?version=latest
   :target: https://openldap-schema-parser.readthedocs.io/ja/latest/?badge=latest
   :alt: Documentation Status


openldap-schema-parser
######################

OpenLDAP の schema ファイルをパースします。

Repository
----------

https://github.com/mypaceshun/openldap-schema-parser

Document
--------

https://openldap-schema-parser.readthedocs.io/ja/latest/

Install
-------

::

  $ pip install openldap-schema-parser

Command Usage
-------------

::

  Usage: schema-parser [OPTIONS] TARGET

  Options:
    --version     Show the version and exit.
    -h, --help    Show this message and exit.
    --expand-oid  Expand ObjectIdentifier

Library Usage
-------------

::

  from openldap_schema_parser.parser import parse

  result = parse("test.schema")
  print(result)

