Giter Club home page Giter Club logo

django-qr's Introduction

Python/Django Intern at ASC IIT Bombay

๐Ÿ‘‹ Hello there! I'm Ansari Majid Ali, a passionate Python/Django developer previously worked as an intern at ASC(Application Software Centre) IIT Bombay. I have over 2 years of experience in web development using Django and I'm also deeply interested in the field of Artificial Intelligence and Machine Learning.

About Me

  • ๐ŸŒ I reside in the vibrant city of Mumbai, Maharashtra, India.
  • โœ‰๏ธ You can reach me at [email protected].
  • ๐Ÿง  I have a keen interest in learning and applying full-stack development techniques and exploring various machine learning algorithms.

Projects

During my career, I have worked on numerous projects, some of which include:

  1. College ERP - Developed an Enterprise Resource Planning (ERP) system tailored for educational institutions, providing features for managing student records, academic schedules, administrative tasks, and more. GitHub Repository | Live Demo

  2. Learning-Tree NMS - Designed and implemented a comprehensive notes management system to organize and manage academic materials efficiently, facilitating easy access and retrieval of course notes. Contact me for access - GitHub Private Repository | Live Demo

๐Ÿ“ˆ GitHub Activity Graph:

Skills and Experience

  • ๐Ÿ’ป Python: I have a strong command of the Python programming language and its various libraries and frameworks.
  • ๐ŸŒ Django: I have hands-on experience in developing web applications using the Django framework, enabling me to create robust and scalable solutions.
  • ๐Ÿค– Machine Learning: I'm currently delving into the exciting field of Machine Learning, exploring algorithms and techniques to solve complex problems.
  • ๐ŸŒ Full-stack Development: I'm actively expanding my knowledge in full-stack development, acquiring expertise in both frontend and backend technologies.

Interests

Apart from programming and development, I have a few other interests:

  • ๐Ÿ“š Reading Books: I love immersing myself in books, especially those related to technology, self-improvement, and fiction.
  • ๐ŸŽถ Music: I enjoy listening to various genres of music, which helps me relax and find inspiration.
  • ๐Ÿšดโ€โ™‚๏ธ Fitness: I believe in maintaining a healthy lifestyle and often engage in activities like cycling and exercising.

Feel free to get in touch with me if you have any questions, suggestions, or collaboration opportunities. I'm always eager to connect with like-minded individuals who share a passion for technology and innovation.

๐Ÿš€ Skills And Technologys Know

Familer Technologys
Frameworks TensorFlowDjangoReact
Data-Bases PostgreSQL MySQL sqlite
Languages Python CPP Javascript
Deployment Aws Heroku pythonanywhere
Designing Photoshop
Socials

django-qr's People

Contributors

ansarimajid avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

dilgamme

django-qr's Issues

table not found

Hello,

i follow the instructions to run the app, but i got this error:

Environment:

Request Method: POST
Request URL: http://localhost:8000/

Django Version: 3.1.5
Python Version: 3.10.12
Installed Applications:
['django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'qrgenerator']
Installed Middleware:
['django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware']

Traceback (most recent call last):
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/backends/sqlite3/base.py", line 413, in execute
return Database.Cursor.execute(self, query, params)

The above exception (no such table: qrgenerator_qrmodel) was the direct cause of the following exception:
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/core/handlers/exception.py", line 47, in inner
response = get_response(request)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/core/handlers/base.py", line 181, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/oussama/Django-QR/qrgenerator/views.py", line 20, in Home
data = QRModel.objects.create(text=text, qr_image=qr_image)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/manager.py", line 85, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/query.py", line 447, in create
obj.save(force_insert=True, using=self.db)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/base.py", line 753, in save
self.save_base(using=using, force_insert=force_insert,
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/base.py", line 790, in save_base
updated = self._save_table(
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/base.py", line 895, in _save_table
results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/base.py", line 933, in _do_insert
return manager._insert(
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/manager.py", line 85, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/query.py", line 1254, in _insert
return query.get_compiler(using=using).execute_sql(returning_fields)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql
cursor.execute(sql, params)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/backends/utils.py", line 98, in execute
return super().execute(sql, params)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/backends/utils.py", line 66, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/backends/utils.py", line 79, in _execute
with self.db.wrap_database_errors:
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/utils.py", line 90, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "/home/oussama/Django-QR/venv/lib/python3.10/site-packages/django/db/backends/sqlite3/base.py", line 413, in execute
return Database.Cursor.execute(self, query, params)

Exception Type: OperationalError at /
Exception Value: no such table: qrgenerator_qrmodel

how to create table ?
thank you
Oussama

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.