summaryrefslogtreecommitdiff
path: root/app/ebay/update_price.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/ebay/update_price.py')
-rwxr-xr-xapp/ebay/update_price.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/ebay/update_price.py b/app/ebay/update_price.py
deleted file mode 100755
index b8b4c8c..0000000
--- a/app/ebay/update_price.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import sys
-import os
-from os.path import dirname, abspath
-import django
-PROJECT_ROOT = abspath(dirname(dirname(dirname(__file__)))) + '/'
-sys.path.append(PROJECT_ROOT)
-sys.path.append(PROJECT_ROOT + '/app')
-sys.path.append(PROJECT_ROOT + '/app/lib')
-sys.path.append(PROJECT_ROOT + '/config')
-sys.path.append(PROJECT_ROOT + '/venv/bin/python3')
-os.environ['DJANGO_SETTINGS_MODULE'] = 'config.settings'
-django.setup()
-import datetime
-from ebay.models import TrackedItem, update_tracked_item_price
-items = TrackedItem.objects.filter(date_ending__gte=datetime.datetime.now())
-for item in items:
- update_tracked_item_price(item)