Skip to main content

A Python3 framework to access Eurocontrol NMB2B api properly

Project description

Next AWesome Access Library to NMB2B in pYthon

In the aviation world, Eurocontrol is a European pluri-state organization with more than 6 decades of expertise in the field of securing, organizing, optimizing civile aviation operations.

The Network Management Operation Centre is one of the key elements to smooth trafic flows, manage congestion in finding alternative paths in cooperatiion with Air Navigation Service Providers. For 15 years, NMOC has developped NMB2B, a business-to-business online data service. It is strongly advised to learn what NMB2B is all about. It is required to have an account and an access via a certificate to this set of services, before diving into the use of Nawalny.

See www.eurocontrol.int/service/network-manager-business-business-b2b-web-services

Intend

Nawalny is a python framework easing the access to NMB2B api in Soap/Xml - synchronous request/reply mode , and Amqp1.0 - publish / subscribe. It aims at :

  • delivering an easy access to required resources as authentication, via X509 certificate, in all the situation: testing access, connection, request, download of file, coupling r/r and p/s principles ...
  • easing the forging of input parameters to the different set of requests,
  • addressing expert features as requesting alternative backend to the two "preops" and "ops" environment.

Prerequisite

The user will have to obtain a X509 certificate with "preops" access to begin with and dipose of API definition file proposed by Eurocontrol. CommonServices_27.0.0.xsd GeneralinformationServices_27.0.0.xsd GeneralinformationServices_PREOPS_27.0.0.wsdl in "27" are the minimum set of file to bootstrap the mecanism. See (file:INSTALL.txt) to learn how to install nawalny library.

High level principles

The Nawalny library takes advantage of Python idioms to be elegant and readable-by-human as far as possible. As a simplistic example this sequence showcases the access to request / reply service.
More than 190 named requests are available through the 6 definitions of interface, so a lot of data services exposed, and to be explored !

# create a main object and configure it with wsdl location,version, choice preops/ops, an app name
# it supposes that you populate a python dict dmconf with your info ... 
onmaccess = NawalnyAccess(
           dmconf['swsdlpath'], "myappname", dmconf['nmapiindex'], dmconf['nmcontext']) 
# configure with credential (X509 cert): cert_key bundled, cert/key, cert/key_cyphered/password
onmaccess.set_credential(dmconf['nmcertpath'],dmconf['nmkeypath'],dmconf['nmpassword'])

# mount a set of services eg. "FlightServices"            
oflightservs =  onmaccess.get_asetofservice("FlightServices") 

# fire a Soap/Request with input parameters and get the results  
dsetofflight = oflightservs('FlightManagementService','queryFlightsByAerodrome',
                            **dnawalnyparam(suserdef)) 
                            

A Facade class - NawalnyPSService - proposes the different methods required to manage Publish/Subscribe subscriptions: create,update,retrieve,delete,pause,resume, ... 2 methods are devoted to register an object of abstract class NAHandler and then trigger the listening principle and the callback to the handler. The app - the caller - should subclass NAHandler and create a real instance doing what is intended by the app.

# create an object NawalnyPSService pointing on an NawalnyAccess object (in charge of credential) 
onmpsservice = NawalnyPSService(onmaccess,"myappname")

# create a subscription 
dsubscription =  {'subscription': {
    'topic' : "FLIGHT_DATA",
    'onBehalfOfUnit' : "FMPLFFF",
    'description' : "fmplff all",
    'messageFilter' : {
        'includeProposalFlights': True, 
        'flightSet': {
           'item': [
               { 'anuIds': { 'item': ['FMPLFFF'] }                 } ] } },
    'payloadConfiguration':{
        'concernedUnits': True, 
        'flightFields': {
            'item': []  #meaning all fields
            } } } }
dnmsub1 =  onmpsservice.create(**dsubscription) 
snmsub1uuid = dnmsub1['data']['subscription']['summary']['uuid'] 
snmsub1queueName = dnmsub1['data']['subscription']['summary']['queueName'] 

# subclass NAHandler 
class MyHandler(NAHandler):
    ''' the client class doing something useful with the message '''
    def on_message(self, event):
        squeuename = event.link.name
        if  event.message.content_encoding == 'gzip' :
            try:
                smsg = gzip.decompress(event.message.body)
            except:
                smsg = "***error decompressing message ***"
        else:
            smsg = event.message.body 
        print("[%s]: %s" % (squeuename, smsg ))

# new Nawalny handler  
omyhandler = MyHandler(onmpsservice,sapp,[snmsub1queueName])
onmpsservice.amqpregister(omyhandler)

# resuming one queue which is now supposed ACTIVE
lactivequeue = onmpsservice.resume(snmsub1uuid) 

# listening incoming messages (forever) and do what the app must do 
onmpsservice.amqprun()

Other projects

Several projects have addressed this topic, especially in Python; we can mention:

Browsing https://github.com/DGAC/ you will discover software doing the same job in other languages, Php, Javascript, Cobol (no, just kidding) ...

About the name

Nawalnoy was a tiny village near Verdun which was completly devastated during WWI. Its inhabitants, brave and fullish have tried to rebuilt it but without success.

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

nawalny-0.3.tar.gz (38.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nawalny-0.3-py3-none-any.whl (42.0 kB view details)

Uploaded Python 3

File details

Details for the file nawalny-0.3.tar.gz.

File metadata

  • Download URL: nawalny-0.3.tar.gz
  • Upload date:
  • Size: 38.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for nawalny-0.3.tar.gz
Algorithm Hash digest
SHA256 8a652f8c92b5de0675a20620930880820a7f22b4f3b0887417f81ba1f8f26292
MD5 ca3dadeaef9fb5625941898629d2a4bb
BLAKE2b-256 16e5668a0a5725a9e20ff62e061d523a489286c9ac8a7a448cccd28ee10e0f4b

See more details on using hashes here.

File details

Details for the file nawalny-0.3-py3-none-any.whl.

File metadata

  • Download URL: nawalny-0.3-py3-none-any.whl
  • Upload date:
  • Size: 42.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for nawalny-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 508175b83a0723adff4d8f4e2a7939b55302ec4db1931eaacc3a27356332496b
MD5 93d2979b0adffb678bfda994def2cf4d
BLAKE2b-256 f1ba5acc82bcb5483e1abd5ef256c704d9516276c092d31df695a1b7441ef889

See more details on using hashes here.

Supported by

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