Skip to main content

Microservice for django

Project description

Django for microservice

settings.py

INSTALL_APP = [
    ...,
    'msvc_framework',
]

MSVC_FRAMEWORK = {
    'ENGINE': 'msvc_framework.broker.kafka.KafkaBroker',
    'HOST': 'localhost',
    'TOPIC': 'topic'
}

Service 1

register tasks in apps/{appname}/tasks.py

from msvc_framework import tasks
from msvc_framework import SUCCESS

@tasks('user.user.get')
def get_users(data):
    print(data)
    return {
        'status': SUCCESS,
        'data': [....]
    }

run command

python manange.py subscribe

Service 2

sync call tasks

from msvc_framework import call

call('user.user.get', {'ids': [1]})

use in model

from msvc_framework import call

class Profile(models.Model):
    user = RemoteRelatedField('user.user.get')

    def __str__(self):
        return self.name


profile = Profile.objects.get(user=1)
print(profile.user.get())
print(profile.user.value)

use in Serializer

from msvc_framework import ModelSerializer

class ProfileSerializer(ModelSerializer):
    class Meta:
        model = Merchant
        fields = ('id', 'user', )

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

How to deploy

Create config file in home directory ~/.pypirc

[distutils] 
index-servers=pypi
[pypi] 
repository = https://upload.pypi.org/legacy/ 
username = myrubapa

After run command for build and deploy

python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*

for more detail read packaging-projects

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

msvc_framework-0.0.1.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

msvc_framework-0.0.1-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file msvc_framework-0.0.1.tar.gz.

File metadata

  • Download URL: msvc_framework-0.0.1.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for msvc_framework-0.0.1.tar.gz
Algorithm Hash digest
SHA256 cd2300d30a446b6ecaecd9ce81873a459c102114a34c9cc1653acf4af863e48a
MD5 2be73e876e69ccd398259326842ca132
BLAKE2b-256 b25951de8dd8754610590a4b370dc03d0feb644f21bd707866664875790a9d0b

See more details on using hashes here.

File details

Details for the file msvc_framework-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: msvc_framework-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for msvc_framework-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 817d71e006bc7899db9962a8cdda868ea89e0ab06f68abce20160b0467d4ebe3
MD5 9296a66219ecc876abe8ada1ed0c3103
BLAKE2b-256 ac69428c72b98d5636a3865277e577522ff8b18b525b440cf06d367af472d7af

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page