File size: 297 Bytes
708f4a3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from crayon.resources import build_and_cache_profile
import logging
logging.basicConfig(level=logging.INFO)
def main():
print("Building LITE profile...")
path = build_and_cache_profile("lite", prefer_local_only=True)
print(f"Created: {path}")
if __name__ == "__main__":
main()
|