Spaces:
Paused
Paused
| # Copyright 2022 The HuggingFace Team. All rights reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| import os | |
| from distutils.util import strtobool | |
| def get_int_from_env(env_keys, default): | |
| """Returns the first positive env value found in the `env_keys` list or the default.""" | |
| for e in env_keys: | |
| val = int(os.environ.get(e, -1)) | |
| if val >= 0: | |
| return val | |
| return default | |
| def parse_flag_from_env(key, default=False): | |
| """Returns truthy value for `key` from the env if available else the default.""" | |
| value = os.environ.get(key, str(default)) | |
| return strtobool(value) == 1 # As its name indicates `strtobool` actually returns an int... | |
| def parse_choice_from_env(key, default="no"): | |
| value = os.environ.get(key, str(default)) | |
| return value | |