writing dll in python?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • nishalrs

    writing dll in python?

    Hello All,

    My main motivation is to build a collection of useful mathematical
    models (that I have developed over the years) to design ultrasonic
    sensors. This should be some sort of a library that should be able to
    be used for desktop/web application development, to run in variety of
    operating systems.

    I am more than convinced after looking at python.org website, it is
    the right tool for the job. I intend to learn python, but I am not
    really sure, where to begin.

    Should I write all the functions as simple python scripts? Or is there
    some facility for creating a .dll like library, that could be more
    suitable for what in intend to develop?

    Any help is much appreciated.

    Regards,
    Nishal




  • Lawrence D'Oliveiro

    #2
    Re: writing dll in python?

    In message <mailman.1671.1 222693607.3487. python-list@python.org >, nishalrs
    wrote:
    Should I write all the functions as simple python scripts? Or is there
    some facility for creating a .dll like library, that could be more
    suitable for what in intend to develop?
    Start with Python.

    Comment

    • Larry Bates

      #3
      Re: writing dll in python?

      nishalrs wrote:
      Hello All,
      >
      My main motivation is to build a collection of useful mathematical
      models (that I have developed over the years) to design ultrasonic
      sensors. This should be some sort of a library that should be able to
      be used for desktop/web application development, to run in variety of
      operating systems.
      >
      I am more than convinced after looking at python.org website, it is
      the right tool for the job. I intend to learn python, but I am not
      really sure, where to begin.
      >
      Should I write all the functions as simple python scripts? Or is there
      some facility for creating a .dll like library, that could be more
      suitable for what in intend to develop?
      >
      Any help is much appreciated.
      >
      Regards,
      Nishal
      >
      >
      >
      >
      DLLs are so 1990s <wink>.

      You can more easily write COM objects in Python that can easily be utilized by
      essentially virtually every programming language that exists on Windows.

      -Larry

      Comment

      Working...