We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6548b25 + 6571dc7 commit 2f9d326Copy full SHA for 2f9d326
product_pipeline.py
@@ -1,11 +1,11 @@
1
-# from dotenv import load_dotenv
+from dotenv import load_dotenv
2
import os
3
4
from util.shopify_util import shopify_util
5
from util.printify_util import printify_util
6
7
# # Load environment variables from .env file
8
-# load_dotenv('.env')
+load_dotenv('.env')
9
10
if __name__ == "__main__":
11
"""Printify Add Product"""
@@ -46,3 +46,6 @@
46
47
# Publish Product in Printify (Rate Limited to 200/30min or 1 per 10 seconds)
48
printify.publish_product(PRODUCT_ID)
49
+
50
51
+ print(os.getenv("ENV_TEST"))
requirements.txt
@@ -1,5 +1,5 @@
requests
-dotenv
+python-dotenv
ShopifyAPI
Pillow
openai==1.47.1
0 commit comments