"""The Settings (:mod:`harp.settings`) module contains hardcoded configuration for Harp. This is probably only handyfor the young days of harp, and will be replaced by something less hard-coded later.Contents--------"""__title__="Settings"importbuiltinsfromosimportenviron#: Pagination size for api endpointsPAGE_SIZE=40#: Default timeout for http requestsDEFAULT_TIMEOUT=30.0#: Force environment override (dev or prod)HARP_ENV=environ.pop("HARP_ENV",None)ifHARP_ENVisnotNone:HARP_ENV=HARP_ENV.strip().lower()ifHARP_ENVnotin("dev","prod"):HARP_ENV=None