Replies: 1 comment 1 reply
-
Good question! I'd be interested to hear more about what you're working on. My first thought is that iNaturalist's own javascript package (inaturalistjs) is going to be better suited for displaying iNat data on your own website. Otherwise, pyinaturalist should theoretically be usable in Pyodide already. If you're referring to the wheels built specifically for Pyodide, I believe those are only necessary for packages that depend on C extensions, which need to be compiled for WASM. For pure python packages (including this one), you can install with micropip. The only extra step needed is to explicitly install the import micropip
await micropip.install('sqlite3', 'pyinaturalist') |
Beta Was this translation helpful? Give feedback.
-
Just a thought, if its included with Pyodide we can use pyinaturalist with py-scripts as well and write code right in our HTML pages, which opens up a lot of options for displaying inat data back on our websites.
Beta Was this translation helpful? Give feedback.
All reactions