Git Product home page Git Product logo

Comments (6)

alxnik avatar alxnik commented on August 10, 2024

Hi,
The library covers all the parts that are in the scope of ISO-8583 at this point. Can you please elaborate on what you mean by message header?

from py8583.

cesc1802 avatar cesc1802 commented on August 10, 2024

i think he say about TPDU

from py8583.

jorgemprende avatar jorgemprende commented on August 10, 2024

Hello, thanks for the implementation for ISO8583 with Python. Can you help me with a client example? I need conect to a real server. Thanks so much!

from py8583.

alxnik avatar alxnik commented on August 10, 2024

Hi,

The library doesn't cover TPDU or any other header as it is considered out of the scope of ISO8583. It should be relatively easy to implement though if you decide to do it.

A simple ISO client would be as follows:

req = py8583.Iso8583(IsoSpec = py8583spec.IsoSpec1987ASCII())

req.MTI('0800') # Set message MTI
req.Field(3, 1) # Enable Field 3
req.FieldData(fld, '000000') # Set field 3 data

req.DebugMessage()

send(req.BuildIso()) # Send message - replace with your own send
data = receive() # Receive reply - replace with your own receive

resp = py8583.Iso8583(data, IsoSpec = py8583spec.IsoSpec1987ASCII()) # Parse message

resp.DebugMessage()

from py8583.

georgesystem avatar georgesystem commented on August 10, 2024

Hi alxnik,

I am need send a optional header 4 bytes like the example show in this web
https://nayibor.github.io/post/iso8583-message-structure/

Can you help me?

Thanks so much!

from py8583.

alxnik avatar alxnik commented on August 10, 2024

Hi @georgesystem. As commented above, header is not in the scope of the library so I cannot help you out on that. It should not be too hard to implement though.

from py8583.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.