Kristen Thyng
Kristen Thyng
@martindurant Thanks again for your help on this. I am trying your changes out and they seem to be working so far, except my `cache_kwargs` aren't working. When I input...
Ok I think I have it working! You were right, I dug in more and figured out a bunch of details which were unrelated to your changes. I hope to...
I have the package working with intake v2 now. Thanks for your help through this process. https://github.com/axiom-data-science/intake-erddap
No, I am working on https://github.com/axiom-data-science/intake-erddap/blob/main/intake_erddap/erddap_cat.py#L37. I had eventually found my way to that example actually. I think I have something set up in the vain of `SQLAlchemyCatalog` (https://github.com/intake/intake/blob/master/intake/readers/catalogs.py#L71) but...
Ok, I put this: ``` import intake intake.conf["extra_imports"] += ["intake_erddap"] intake.conf.save() ``` into the `__init__` of `intake-erddap` and uninstalled and reinstalled (`pip install .`) and imported intake a few times...
``` >>> intake.conf["import_block_list"] = ["an_intake_project"] >>> intake.conf.save() ``` It sounds like you are putting this directly in your local `intake` and I don't see it in `an_intake_project` but how can...
Ok I just realized you were using a different config option "import_block_list" (now that makes more sense) — I thought we were still talking about "extra_imports" which I may not...
> No, it's a potential alternative for packages that lack entrypoints Ah, ok. Now I am able to get both of the following to return True: ``` any("TableDAPSource" in str(_)...
For now I am working around the 'open_erddap_cat' problem just calling it directly, though I'd appreciate knowing what to do about that issue. I am hitting a different problem: I...
It seems like either `intake/intake/readers/mixins.py` or `intake/intake/readers/entry.py` needs to select `list(aliases)[item]` instead of just `item` to avoid looking for `0` instead of the keys themselves.