source: main/waeup.sirp/trunk/src/waeup/sirp/jambtables/__init__.py @ 5666

Last change on this file since 5666 was 5480, checked in by uli, 14 years ago

Enrich public API of jambtables a bit.

File size: 488 bytes
Line 
1# Make this a package.
2from waeup.sirp.jambtables.applicants import (
3    ResultEntry, Applicant, ApplicantFactory, ApplicantContainer,
4    ApplicantsPlugin,
5    )
6from waeup.sirp.jambtables.batching import ApplicantImporter
7from waeup.sirp.jambtables.jambtables import JAMBDataTable, JAMB_DATA_HEADERS
8
9
10__all__ = (
11    Applicant,
12    ApplicantContainer,
13    ApplicantFactory,
14    ApplicantImporter,
15    ApplicantsPlugin,
16    JAMBDataTable,
17    JAMB_DATA_HEADERS,
18    ResultEntry,
19    )
Note: See TracBrowser for help on using the repository browser.