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

Navalnoy 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.1.tar.gz (38.2 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.1-py3-none-any.whl (41.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for nawalny-0.1.tar.gz
Algorithm Hash digest
SHA256 01078c92fe5dd4fee42de2bf9213043f2124fe0fa30e9dbfee52c9d06942b6bb
MD5 746d684fc10832d260458a20ac9198bd
BLAKE2b-256 c43b882d2d032f41a758cce1ce6db0838dfa47ba1c59d21db480733588a59f22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for nawalny-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 85381e28cdb1bd17c9187980b5be0b4658b018fed06cf032119a7f0eb5aa87d2
MD5 d2d8dec31926a407aa1a5c2b5f4dc878
BLAKE2b-256 ef487854aace9b499695bfd3e2c966808a73a7f6fb281f6fdc27af60c32208bd

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