Submodule for all microservices
To add submodule to project:
$ git submodule add https://github.com/GordiigPinny/ApiRequesters.gitFor include this submodule you need package dotenv, requests and, of course, django and django rest framework:
$ pip3 install dotenv
$ pip3 install requests
$ pip3 install django
$ pip3 install djangorestframeworkNext, include next lines to the bottom of the settings.py:
try:
from ApiRequesters.settings import *
except ImportError as e:
raise e