Hello All,Interesting new applications of Python are welcome. Googling "Python
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.
package (or module) ultrasonic sensor" did not turn up anything relevant
that I saw.
I am more than convinced after looking at python.org website, it isStart with the Python tutorial, perhaps parts of the reference manual,
the right tool for the job. I intend to learn python, but I am not
really sure, where to begin.
and definitely peruse the first chapters in the library manual on
built-in functions and classes.
You will almost certainly want to use numpy (numpy.org) for numerical
calculation and possibly existing modules in scipy (scipy.org) or elsewhere.
Should I write all the functions as simple python scripts? Or is thereA module is a 'script' that is intended to be imported by other Python
some facility for creating a .dll like library, that could be more
suitable for what in intend to develop?
code. In your Python installation directory, /Libs has numerous *.py
examples. A 'package' is a collection of modules in a directory that
includes only called __init__.py (if I remember correctly). Don't worry
about details yet. When you have something worth distributing, you can
get help here or on other lists, such as the one for numpy/scipy.
When you are ready, you can announce it here and elsewhere and register
it at the Python Package Index (pypi.python.org/pypi).
Terry Jan Reedy