diff --git a/Задания/task1/Epifanov/Django/db_get.py b/Задания/task1/Epifanov/Django/db_get.py
new file mode 100644
index 0000000..ad6c958
--- /dev/null
+++ b/Задания/task1/Epifanov/Django/db_get.py
@@ -0,0 +1,28 @@
+import psycopg2
+
+def djselect():
+ connection = psycopg2.connect(host='localhost', dbname='FHWDB', user='postgres', password='Q1w2e3r4')
+ cursor = connection.cursor()
+ cursor.execute('''SELECT * FROM public.parse ORDER BY id;''')
+ arr = list(cursor.fetchall())
+ res = ''
+ k = 0
+ while k != len(arr):
+ i = arr[k]
+ res = res + f'''
+
+
+
+ Скидка: {i[3]}
+ {i[2]}
+
+
+
+ '''
+ k += 1
+
+ cursor.close()
+ connection.close()
+ return res
diff --git a/Задания/task1/Epifanov/Django/manage.py b/Задания/task1/Epifanov/Django/manage.py
new file mode 100644
index 0000000..e398d8f
--- /dev/null
+++ b/Задания/task1/Epifanov/Django/manage.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+ """Run administrative tasks."""
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+ main()