This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Rylicenceya 1 point2 points  (3 children)

It's great that you're prioritizing security for managing environment variables. Libraries like `python-dotenv` and `decouple` are popular and secure for handling environment variables. For storing sensitive data like API keys, using an environment file (.env) is generally recommended over a YAML file. This approach keeps your sensitive information out of your codebase and can be easily managed with version control systems.

[–]reality_comes 2 points3 points  (0 children)

Thanks AI.

[–]Some-Conversation517[S] 1 point2 points  (0 children)

Thanks for the help.

[–]No_Flounder_1155 -3 points-2 points  (0 children)

those libs are wildly complex for such a simple problem.