Skip to content

Instantly share code, notes, and snippets.

@GabLeRoux
Last active September 10, 2023 00:45
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save GabLeRoux/d6b2c2f7a69ebcd8430ea59c9bcc62c0 to your computer and use it in GitHub Desktop.
Save GabLeRoux/d6b2c2f7a69ebcd8430ea59c9bcc62c0 to your computer and use it in GitHub Desktop.
.env file to json using simple python
#!/usr/bin/env python
import json
import sys
try:
dotenv = sys.argv[1]
except IndexError as e:
dotenv = '.env'
with open(dotenv, 'r') as f:
content = f.readlines()
# removes whitespace chars like '\n' at the end of each line
content = [x.strip().split('=') for x in content if '=' in x]
print(json.dumps(dict(content)))
@0del
Copy link

0del commented Aug 23, 2022

Delete white space start/end string with trip():

- contentDict[k] = v
+ contentDict[k] = v.strip()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment