ioos / pyoos

A Python library for collecting Met/Ocean observations
GNU Lesser General Public License v3.0
34 stars 33 forks source link

Nerrs Parser, odd error #29

Closed DanRamage closed 10 years ago

DanRamage commented 10 years ago

I've been trying to test the NERRS collector and have run up against an error when doing

from pyoos.collectors.nerrs.nerrs_soap import NerrsSoap

I see an import error when trying to pull in the

from pyoos.parsers.nerrs import NerrsToPaegan

It's definitely there. One thing I notice when trying to operate from the python prompt is if I

import pyoos.parsers.nerrs
dir(pyoos.parsers.nerrs)

This is the output:

['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__']

It's as if it has not imported the nerrs.py at all. Was hoping maybe someone had some thoughts on that.

I am working from the Git repository, not installing via pip.

DanRamage commented 10 years ago

A new clone from the repository seems to have resolved the issue. Still curious as to what the underlying issue was.