diff --git a/jimin/.gitignore b/jimin/.gitignore new file mode 100644 index 0000000..6065512 --- /dev/null +++ b/jimin/.gitignore @@ -0,0 +1,4 @@ +# Created by venv; see https://docs.python.org/3/library/venv.html + +.env + diff --git a/jimin/capture.png b/jimin/capture.png new file mode 100644 index 0000000..d606e94 Binary files /dev/null and b/jimin/capture.png differ diff --git a/jimin/example.py b/jimin/example.py new file mode 100644 index 0000000..630e8cd --- /dev/null +++ b/jimin/example.py @@ -0,0 +1,8 @@ +import os +from dotenv import load_dotenv + +load_dotenv() + +api_key=os.getenv("API_KEY") + +print("My API Key is : "+api_key) \ No newline at end of file