Skills

Main features of this project


Skills
Marco Antonio Parra, Portfolio Page
Stack: Python Django HTML CSS SQL Postgres Linux Github Git JavaScript Heroku

This project provides a compilation of professional experience, academic training, specializations, programming languages skills, and the most relevant projects I have participated in. This web application was built with the language programming Python and used the Framework Django. The application business logic was realize used Postgres how database motor SQL. Deploying in the cloud was considered Heroku how provider.

Python Django Framework Postegres HTML CSS Javascript Heroku
Skills

EndPoint & Routes


URLS code in the Project Directory

import djoser as djoser
from django.contrib import admin
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
from allauth.account.views import LoginView
from django.urls import path

from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView
from rest_framework_simplejwt.tokens import BlacklistedToken

from django.conf.urls import handler404

import blog.views
from .views import *
from django_registration.backends.activation.views import RegistrationView

urlpatterns = [
                  path('admin/', admin.site.urls),
                  path('', include('portfolio.urls')),
                  path('blog/', include('blog.urls')),
                  path("blog/post/<slug>/", blog.views.post_detail, name="blog-post-detail"),
                  path("ip/", blog.views.get_ip),
                  path('api/', include('BookListAPI.urls')),
                  path('littlelemon/', include('LittleLemonAPI.urls')),
                  path('restaurant/', include('restaurant.urls')),
                  path('auth/', include('djoser.urls')),
                  path('auth/', include('djoser.urls.authtoken')),
                  path('movies/', include('movies_OMDb.urls')),
                  path('digidesk/', include('digidesk_api.urls')),
                  path('data-science/', include('dataScience.urls')),
                  path('accounts/', include('allauth.urls')),
                  path('todo/', include('todo_app.urls')),
                  #path('accounts/login/customize/', custom_login_view, name='account_login'),
                  path('registration/', include('registration.urls')),
                  path('timetracker/', include('timetracker.urls')),
              ] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)

urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
handler404 = 'portfolio.views.handler404'

URLS code in the Application Directory

from django.urls import path, include
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
from . import views

urlpatterns = [
    path('home/deprecated', views.home, name='home'),
    path('', views.homeportfolio, name='portfolio'),
    path('portfolio/parts', views.portfolio_parts, name='parts'),
    path('addspecialization/', views.add_specialization, name='add_specialization'),
    path('addcourse/', views.add_course, name='add_course'),
    path('addinstitution/', views.add_institution, name='add_institution'),
    path('contact/', views.contact_view, name='contact_me'),
    path('education/', views.education, name='education'),
    path("specialization/<int:specialization_id>/details", views.specialization_details, name="detail_specialization"),
    path("bootcamp/<int:bootcamp_id>/details", views.bootcamp_details, name="detail_bootcamp"),
    path("projects/<int:project_id>/", views.projects_rendering, name="detail_projects"),
    path('resume/en', views.resume_en, name='resume_en'),
    path('resume/sp', views.resume_sp, name='resume_sp'),
    path('resume/sp/harvard', views.resume_es_h, name='resume_es_h'),
    path('__debug__/', include('debug_toolbar.urls')),
    path('courses-details', views.CourseDetailView.as_view()),
    path('certificates-details', views.CertificationDetailView.as_view()),
    path('institutions', views.InstitutionDetailView.as_view()),
    path('courses-details/<int:pk>', views.SingleCourseItemView.as_view()),
    path('certificates-details/<int:pk>', views.SingleCertificateItemView.as_view()),
    path('institutions/<int:pk>', views.SingleInstitutionItemView.as_view()),
    path('manager-view/', views.manager_view),
    path('throttle-check', views.throttle_check),
    path('throttle-check-auth', views.throttle_check_auth),
    path('groups/manager/users', views.managers),
]

urlpatterns += staticfiles_urlpatterns()

Bootcamp

EndPoint Description URL
addspecialization/ It's a personalized view to add a new specialization to the database, to press the button submit you need to be authenticated. To create the form was used Crispy Form to help your creation. With Rest Framework was restricted the number of call to the server
addinstitution/ It's a personalized view to add a new instituion or company, to press the button submit you need to be authenticated. To create the form was used Crispy Form to help your creation. With Rest Framework was restricted the number of call to the server
addcourses/ It's a personalized view to add register in the Course models, through Foreign key relationships with Institutions & Specialization models. To press the button submit you need to be authenticated. To create the form Crispy Form was used to help your creation. With Rest Framework was restricted the number of calls to the server.
education/ It's a personalized view to render my education profile. It was built using Bootstrap.
specialization/specialization_id/details It's a personalized view to retrieve information about a specific specialization, using the method to make queries to the database. In the education URL rendered a table with all specializations in the database, you can get the URL specialization you want to return. It was incorporated a section to display code
bootcamp/bootcamp_id/details It's a personalized view to retrieve information about a specific bootcamp, using the method to make queries to the database. In the education URL rendered a table with all specializations in the database, you can get the URL bootcamp you want to return.
certificates-details Using Django REST Framework make a request to GET HTTP 200 that retrieves a JSON response with data of the certifications from the database. This was done using the serializers.ModelSerializer in the serializers.py and in the views.py using generics.ListCreateAPIView classes.
courses-details Using Django REST Framework make a request to GET HTTP 200 that retrieves a JSON response with data of the courses from the database. This was done using the serializers.ModelSerializer and nd in the views.py using generics.ListCreateAPIView classes.
institutions Using Django REST Framework make a request to GET HTTP 200 that retrieves a JSON response with data of the institutions & companies that offered each course. This was done using the serializers.ModelSerializer and nd in the views.py usinggenerics.ListCreateAPIView classes.
certificates/certificate_id Using Django REST Framework make a request to GET HTTP 200 that retrieves a JSON response, with information of a Certificate. This was done using the serializers.ModelSerializer in the serializers.py file and using generics.RetrieveUpdateAPIView, generics.DestroyAPIView classes in the views.py file.
courses/course_id Using Django REST Framework make a request to GET HTTP 200 that retrieves a JSON response, with information of a Certificate. This was done using the serializers.ModelSerializer in the serializers.py file and using generics.RetrieveUpdateAPIView, generics.DestroyAPIView classes in the views.py file.