1#===- __init__.py - Clang Python Bindings --------------------*- python -*--===#
2#
3# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4# See https://llvm.org/LICENSE.txt for license information.
5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6#
7#===------------------------------------------------------------------------===#
8
9r"""
10Clang Library Bindings
11======================
12
13This package provides access to the Clang compiler and libraries.
14
15The available modules are:
16
17  cindex
18
19    Bindings for the Clang indexing library.
20"""
21
22__all__ = ['cindex']
23
24