Akinsola AdemolaforMore.About.Techlevi-writes.hashnode.net·Jan 25, 2023How to download data in multiple file formats (CSV, XLS, TXT) with Django REST FrameworkA lot of the time, our typical server response is in the form of JSON or XML. This serves our use cases a good number of times, however, there are times when the need to provide data in the form of a file arises. In this article, we will be exploring...Discuss·66 likes·322 readsPython
Ifennaifenna.hashnode.net·Sep 1, 2022FeaturedBuild a Pseudocode to Python Converter APIWhat did Pseudo say to Python? "Bibbidi-bobbidi-boo" ~ Laptop and the Fairy Lady In this article, we will create a script that will convert pseudocode into Python executable code. Along the way, we'll learn about string manipulation and become more ...Discuss·29 likes·448 readsA Lady's guide to buildingPython
Alonge Ayomidesieg.hashnode.net·Mar 15, 2023Reusability in DjangoThe process of designing, building, testing, and continuous maintenance that goes into creating and sustaining a web application is labor-intensive. Many Python and Django projects run into the same problems and difficulties. Don't you think it would...Gulshan Negi and 1 other are discussing this2 people are discussing thisDiscuss·21 likes·152 readsDjango
Faith Bolanlefaithbolanle.hashnode.net·Apr 21, 2023Unlock the Secrets of Django Project Files and Apps: Everything You Need to KnowWhen starting a new Django project, it can be helpful to think about what goes into making a Django project tick. In Django, everything is based on the concept of projects and apps. A Django project is a collection of settings, configurations, and ap...DiscussDjango
Emmanuel Kipchirchir Langatmanulangat.hashnode.net·Apr 17, 2023Implementing an Audit Trail Middleware in Django for Tracking User Actions in DjangoThis is part 2 of the series create and use custom signals in Django. In this article, you will do some updates on the previously written code in the previous article and learn how to wrap the signal in middleware for it to be automatically fired up ...Discuss·48 readsGetting started with Django. From beginner to expert. Django
Praveenpraveeennair.hashnode.net·Apr 16, 2023Secure Your Project's Sensitive Information with Django-environ and .env FilesIt's crucial to uphold appropriate security practices in every software development project, including the protection of sensitive data like API keys, database credentials, and other configuration settings. Using a .env file is one of the most popula...Discuss·29 readsPython
Narendra Kumar Sivangulanarendra95.hashnode.net·Apr 13, 2023Creating Simple Django Application1.Install Django To install Django, you can follow the below steps: Make sure you have Python installed on your system. You can download the latest version of Python from the official website: https://www.python.org/downloads/ Open the command pro...Discuss·6 likesDjango
Idiomatic Programmersidiomaticprogrammers.hashnode.net·Apr 10, 2023How to implement Auto Expiring Token in Django Rest FrameworkIntroduction Today I will be talking about one of the crucial features you might have found missing in the Django Rest Framework, and that is the ability to create authentication tokens that expire after a set period, let's say after 20-25 days, ever...Discuss·29 readsPython
Vicente Antonio G. Reyesvgreyes.hashnode.net·Apr 8, 2023Getting started with Django Rest FrameworkPhoto by Markus Spiske: https://www.pexels.com/photo/a-laptop-screen-with-text-4439901/ In this article, we'll create a project that posts about rants using Django and Django Rest Framework. We'll use Django's built-in slugify method and override its...Discuss·2 likes·186 readsDjango
Odulaja Philip Temitayophilipodulaja.hashnode.net·Apr 7, 2023Generating Django rest framework API Documentation using drf-yasg libraryIntroduction In this article, I would be building an application within a School Management System project with Django rest Framework Our major objective is to create a few endpoints and generate Documentation for the users of our API What is a Docum...Discuss·2 likes·123 readsPython
Idowu Omisolaidowuomisola.hashnode.net·Apr 5, 2023Pytest Django Tutorial: Testing Your Django Apps With Selenium PytestDjango reduces the development complexities of large-scale websites. But when developing a website with Django, UI automation testing is as essential as unit testing. Even if your team operates a CI/CD pipeline, you want to ensure you catch bugs earl...DiscussDjango
Anthony GitauforOpen Replay's Technical Blogopenreplay.hashnode.net·Apr 3, 2023Build An App Using Vue And DjangoVue.js is a popular JavaScript framework for building user interfaces. This guide will teach you how to create a Vue.js app that interacts with data from a Django API. Ensure your computer has the Node.js and Python 3 installed. Setting up a Django A...Discuss·102 readsdjango rest framework
Ahmad Salahahmadsalah.hashnode.net·Mar 31, 2023Solving Common Performance Issues in Django REST FrameworkAre you experiencing sluggish load times or inefficient database queries in your Django REST Framework (DRF) application? These performance hitches can hinder your app's scalability and impede your development momentum. Fortunately, with the right to...Discuss·68 readsDjangoPython