source: trunk/bindings/python/nxs/__init__.py @ 1564

Revision 1564, 747 bytes checked in by Freddie Akeroyd, 16 months ago (diff)

tree bindings now loaded and installed by default. Refs #252.

Line 
1# This program is public domain
2"""@package nxs
3Python NeXus interface.
4
5NeXus_ is a common data format for neutron, Xray and muon science.
6The files contain multidimensional data elements grouped into a
7hierarchical structure.  The data sets are self-describing, with
8a description of the instrument configuration including the units
9used as well as the data measured.
10
11The NeXus file interface requires compiled libraries to read the
12underlying HDF_ files.  Binary packages are available for some
13platforms from the NeXus site.  Details of where the nxs package
14searches for the libraries are recorded in `nxs.napi`.
15"""
16
17## @mainpage NeXus Python Documentation
18## See nxs.napi on the Packages tab
19
20from nxs.napi import *
21from nxs.tree import *
Note: See TracBrowser for help on using the repository browser.