scikit-spectra
scikit-spectra copied to clipboard
Python pandas-based toolkit for explorative spectroscopy, in particular UVVis spectroscopic data.
My Environment: . Linux Ubuntu: 17.10 . Anaconda Python: 3.6.8 . Scikit-spectra from Git master source I've tried to install the scikit-spectra under Anaconda Python 3.6.8 and after fixing some...
Pickle is a security issue, it is code execution. So `pickle` should never be used to create a file format for storage of data for an application. But https://github.com/hugadams/scikit-spectra/blob/55eabf747d2ee34f2ff8082e76ee509c8a144752/skspec/pandas_utils/dataframeserial.py#L69 https://github.com/hugadams/scikit-spectra/blob/55eabf747d2ee34f2ff8082e76ee509c8a144752/skspec/pandas_utils/metadframe.py#L61...
`eval` is a security and performance issue. https://github.com/hugadams/scikit-spectra/blob/55eabf747d2ee34f2ff8082e76ee509c8a144752/skspec/core/utilities.py#L81 is definitely a misuse. Uses in `coregui` also seem like misuses - a user should define a function separately in the notebook...
Read the official guide: https://docs.python.org/3/howto/pyporting.html **Only do this if all pyuvvis dependencies are python 3 compat already!** Goal is to rewrite for python 3 compat, not to do a 2...
skspec-notebooks Also should migrate the part of the code necessary for nbconfig and put in its own setup.py file? Then can use magic and so forth from that module. Don't...
This may not be relevant for python 2.7, so ignore if appropriate. The issue I'm seeing is with the metadframe.py module. Trying to run the module stand-alone, I see a...
Regarding the long-term goal of scikit-spectra to offer an alternative to proprietary spectroscopy software I would like to open a discussion about the following feature: # Visual determination of parameters...
pip installing scikit-spectra yields ``` python IOError: [Errno 2] No such file or directory: 'requirements.txt' ``` in line 16 of "/tmp/pip_build_xxx/scikit-spectra/setup.py"
Just downloaded and installed skspec, and trying it out with one of my csv's and I get this error, `>>> spc = Spectra.from_csv('E1 Kinetics.csv') Traceback (most recent call last): File...