mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 16:43:36 +00:00
* fix: fixes of backwords * fixing hotel information with image placeholders * chore: clean up product display in hotel and cleaner interfacing * adding loader with historical data loading * feature: cleaning up pipeline * chore: simple surge pricer * created new pricing pipeline * adding a checkout page to both sites * fix: fixing stale pacakge * test: we wont be using elasticity anymore so its okay * chore: cleaning elasticity references * chore: store sting * feature: e2e intro pipline surge pricing * fix: CVE vulnerability patching
15 lines
483 B
Python
15 lines
483 B
Python
from procesing.pricers.base import PricingFunction
|
|
from procesing.pricers.elasticity import ElasticityBasedPricer
|
|
from procesing.pricers.simple import StaticPricer, RandomPricer, SimpleSurgePricer
|
|
from procesing.pricers.session_aware import SessionAwarePricer, ProductSpecificSessionPricer
|
|
|
|
__all__ = [
|
|
'PricingFunction',
|
|
'ElasticityBasedPricer',
|
|
'StaticPricer',
|
|
'RandomPricer',
|
|
'SimpleSurgePricer',
|
|
'SessionAwarePricer',
|
|
'ProductSpecificSessionPricer'
|
|
]
|