├── Documents ├── A Project Report on RecipeLens.docx └── A Project Report on RecipeLens.pdf ├── PPT └── Presentation on RecipeLens.pptx ├── README.md └── Source Code ├── Info.txt └── RecipeLens ├── requirements.txt └── src ├── RecipeLens ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-311.pyc │ ├── settings.cpython-310.pyc │ ├── settings.cpython-311.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-311.pyc │ ├── wsgi.cpython-310.pyc │ └── wsgi.cpython-311.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── db.sqlite3 ├── enc_names.txt ├── encodings.txt ├── main ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-311.pyc │ ├── admin.cpython-310.pyc │ ├── admin.cpython-311.pyc │ ├── apps.cpython-310.pyc │ ├── apps.cpython-311.pyc │ ├── encoder.cpython-310.pyc │ ├── encoder.cpython-311.pyc │ ├── forms.cpython-310.pyc │ ├── forms.cpython-311.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-311.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-311.pyc │ ├── views.cpython-310.pyc │ └── views.cpython-311.pyc ├── admin.py ├── apps.py ├── encoder.py ├── forms.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── __init__.cpython-311.pyc ├── models.py ├── static │ └── main │ │ ├── icons │ │ ├── bg-1.jpg │ │ ├── bg-2.jpg │ │ └── scan.png │ │ ├── indian_recipes.json │ │ └── style.css ├── templates │ └── main │ │ └── home.html ├── tests.py ├── urls.py └── views.py └── manage.py /Documents/A Project Report on RecipeLens.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Documents/A Project Report on RecipeLens.docx -------------------------------------------------------------------------------- /Documents/A Project Report on RecipeLens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Documents/A Project Report on RecipeLens.pdf -------------------------------------------------------------------------------- /PPT/Presentation on RecipeLens.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/PPT/Presentation on RecipeLens.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/README.md -------------------------------------------------------------------------------- /Source Code/Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/Info.txt -------------------------------------------------------------------------------- /Source Code/RecipeLens/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/requirements.txt -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/asgi.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/settings.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/urls.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/RecipeLens/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/RecipeLens/wsgi.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/enc_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/enc_names.txt -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/encodings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/encodings.txt -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/encoder.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/encoder.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/encoder.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/encoder.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/forms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/forms.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/admin.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/apps.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/encoder.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/forms.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/models.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/static/main/icons/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/static/main/icons/bg-1.jpg -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/static/main/icons/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/static/main/icons/bg-2.jpg -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/static/main/icons/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/static/main/icons/scan.png -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/static/main/indian_recipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/static/main/indian_recipes.json -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/static/main/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/static/main/style.css -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/templates/main/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/templates/main/home.html -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/tests.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/urls.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/main/views.py -------------------------------------------------------------------------------- /Source Code/RecipeLens/src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiplabGorain/Final-Year-Project/HEAD/Source Code/RecipeLens/src/manage.py --------------------------------------------------------------------------------