__init__.py (520B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 from condprof.scenarii.full import full 6 from condprof.scenarii.settled import settled 7 from condprof.scenarii.settled2 import settled2 8 from condprof.scenarii.settled_youtube import settled_youtube 9 10 scenarii = { 11 "full": full, 12 "settled": settled, 13 "settled-youtube": settled_youtube, 14 "settled2": settled2, 15 }