├── .bumpversion.cfg ├── .ci └── build.cmd ├── .clang-format ├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── auto_assign.yml ├── dependabot.yml ├── milestones.py ├── stale.yml └── workflows │ ├── docs_test_action.yml │ ├── flake8.yml │ ├── manylinux_build.yml │ ├── mypy.yml │ ├── octocheese.yml │ ├── python_ci.yml │ └── python_ci_linux.yml ├── .gitignore ├── .imgbotconfig ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yml ├── .style.yapf ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── MoNA_GCMS_Library ├── AUTHORS ├── MoNA-export-GC-MS_Spectra-json.zip ├── MoNA.msp ├── MoNA │ ├── ALNUMNAM.INU │ ├── ALPHANAM.INU │ ├── FORM.INU │ ├── LOSS.DBU │ ├── LOSS.INU │ ├── MAXMASS.DBU │ ├── MAXMASS.INU │ ├── MW.INU │ ├── NAME.INU │ ├── NAMESORT.DBU │ ├── PEAK.DBU │ ├── PEAK.INU │ ├── PEAK_AM0.DBU │ ├── PEAK_AM0.INU │ ├── PEAK_AM2.DBU │ ├── PEAK_AM2.INU │ ├── REGISTRY.INU │ ├── USER.DBU │ ├── USER.INU │ └── USERID.NUM ├── __init__.py ├── parse_json_and_contribs.py ├── parse_mona_contributors.py └── parse_mona_json.py ├── NISTDLL Reference.pdf ├── README.rst ├── THIRD_PARTY_COPYRIGHT ├── appveyor.yml ├── cleanup.sh ├── copr_header.txt ├── coverage-fixup.py ├── doc-source ├── 404.rst ├── Source.rst ├── _static │ └── style.css ├── _templates │ └── base.html ├── api.rst ├── conf.py ├── contributing.rst ├── docutils.conf ├── git_download.png ├── index.rst ├── license.rst ├── not-found.png ├── requirements.txt └── usage.rst ├── formate.toml ├── justfile ├── pyproject.toml ├── read_jcamp.py ├── repo_helper.yml ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── pyms_nist_search │ ├── NISTERR.H │ ├── NISTMS.H │ ├── NISTMS_min.H │ ├── __init__.py │ ├── __init__.pyi │ ├── base.py │ ├── docker_engine.py │ ├── mona_tools.py │ ├── py.typed │ ├── pyms_nist_search.c │ ├── pyms_nist_search_min.c │ ├── reference_data.py │ ├── search_result.py │ ├── templates │ ├── __init__.py │ └── msp_template │ ├── utils.py │ ├── win_engine.py │ ├── x64 │ ├── ctnt66_64.dll │ ├── nistdl64.dll │ ├── nistdl64.lib │ ├── nistdl64_2gb.dll │ └── nistdl64_2gb.lib │ └── x86 │ ├── ctnt66.dll │ ├── nistdl32.dll │ ├── nistdl32.lib │ ├── nistdl32_2gb.dll │ └── nistdl32_2gb.lib ├── stubs.txt ├── test.py ├── test_multi_library ├── MSPs │ ├── c1.msp │ ├── c2.msp │ ├── c3.msp │ ├── c4.msp │ └── c5.msp ├── c1 │ ├── ALNUMNAM.INU │ ├── ALPHANAM.INU │ ├── FORM.INU │ ├── LOSS.DBU │ ├── LOSS.INU │ ├── MAXMASS.DBU │ ├── MAXMASS.INU │ ├── MW.INU │ ├── NAME.INU │ ├── NAMESORT.DBU │ ├── PEAK.DBU │ ├── PEAK.INU │ ├── PEAK_AM0.DBU │ ├── PEAK_AM0.INU │ ├── PEAK_AM2.DBU │ ├── PEAK_AM2.INU │ ├── REGISTRY.INU │ ├── USER.DBU │ ├── USER.INU │ └── USERID.NUM ├── c2 │ ├── ALNUMNAM.INU │ ├── ALPHANAM.INU │ ├── FORM.INU │ ├── LOSS.DBU │ ├── LOSS.INU │ ├── MAXMASS.DBU │ ├── MAXMASS.INU │ ├── MW.INU │ ├── NAME.INU │ ├── NAMESORT.DBU │ ├── PEAK.DBU │ ├── PEAK.INU │ ├── PEAK_AM0.DBU │ ├── PEAK_AM0.INU │ ├── PEAK_AM2.DBU │ ├── PEAK_AM2.INU │ ├── REGISTRY.INU │ ├── USER.DBU │ ├── USER.INU │ └── USERID.NUM ├── c3 │ ├── ALNUMNAM.INU │ ├── ALPHANAM.INU │ ├── FORM.INU │ ├── LOSS.DBU │ ├── LOSS.INU │ ├── MAXMASS.DBU │ ├── MAXMASS.INU │ ├── MW.INU │ ├── NAME.INU │ ├── NAMESORT.DBU │ ├── PEAK.DBU │ ├── PEAK.INU │ ├── PEAK_AM0.DBU │ ├── PEAK_AM0.INU │ ├── PEAK_AM2.DBU │ ├── PEAK_AM2.INU │ ├── REGISTRY.INU │ ├── USER.DBU │ ├── USER.INU │ └── USERID.NUM ├── c4 │ ├── ALNUMNAM.INU │ ├── ALPHANAM.INU │ ├── FORM.INU │ ├── LOSS.DBU │ ├── LOSS.INU │ ├── MAXMASS.DBU │ ├── MAXMASS.INU │ ├── MW.INU │ ├── NAME.INU │ ├── NAMESORT.DBU │ ├── PEAK.DBU │ ├── PEAK.INU │ ├── PEAK_AM0.DBU │ ├── PEAK_AM0.INU │ ├── PEAK_AM2.DBU │ ├── PEAK_AM2.INU │ ├── REGISTRY.INU │ ├── USER.DBU │ ├── USER.INU │ └── USERID.NUM ├── c5 │ ├── ALNUMNAM.INU │ ├── ALPHANAM.INU │ ├── FORM.INU │ ├── LOSS.DBU │ ├── LOSS.INU │ ├── MAXMASS.DBU │ ├── MAXMASS.INU │ ├── MW.INU │ ├── NAME.INU │ ├── NAMESORT.DBU │ ├── PEAK.DBU │ ├── PEAK.INU │ ├── PEAK_AM0.DBU │ ├── PEAK_AM0.INU │ ├── PEAK_AM2.DBU │ ├── PEAK_AM2.INU │ ├── REGISTRY.INU │ ├── USER.DBU │ ├── USER.INU │ └── USERID.NUM ├── conftest.py └── test_multi_library.py ├── tests ├── __init__.py ├── conftest.py ├── constants.py ├── engines.py ├── requirements.txt ├── spectra.py ├── test_full_search.py ├── test_full_search_ref_data.py ├── test_get_ref_data.py ├── test_quick_search.py ├── test_reference_data.py ├── test_search_result.py └── test_utils.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.ci/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.ci/build.cmd -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.clang-format -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/milestones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/milestones.py -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/docs_test_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/workflows/docs_test_action.yml -------------------------------------------------------------------------------- /.github/workflows/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/workflows/flake8.yml -------------------------------------------------------------------------------- /.github/workflows/manylinux_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/workflows/manylinux_build.yml -------------------------------------------------------------------------------- /.github/workflows/mypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/workflows/mypy.yml -------------------------------------------------------------------------------- /.github/workflows/octocheese.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/workflows/octocheese.yml -------------------------------------------------------------------------------- /.github/workflows/python_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/workflows/python_ci.yml -------------------------------------------------------------------------------- /.github/workflows/python_ci_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.github/workflows/python_ci_linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.gitignore -------------------------------------------------------------------------------- /.imgbotconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.imgbotconfig -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/.style.yapf -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /MoNA_GCMS_Library/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/AUTHORS -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA-export-GC-MS_Spectra-json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA-export-GC-MS_Spectra-json.zip -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA.msp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA.msp -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/ALNUMNAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/ALNUMNAM.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/ALPHANAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/ALPHANAM.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/FORM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/FORM.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/LOSS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/LOSS.DBU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/LOSS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/LOSS.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/MAXMASS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/MAXMASS.DBU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/MAXMASS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/MAXMASS.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/MW.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/MW.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/NAME.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/NAME.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/NAMESORT.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/NAMESORT.DBU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/PEAK.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/PEAK.DBU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/PEAK.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/PEAK.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/PEAK_AM0.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/PEAK_AM0.DBU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/PEAK_AM0.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/PEAK_AM0.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/PEAK_AM2.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/PEAK_AM2.DBU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/PEAK_AM2.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/PEAK_AM2.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/REGISTRY.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/REGISTRY.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/USER.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/USER.DBU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/USER.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/USER.INU -------------------------------------------------------------------------------- /MoNA_GCMS_Library/MoNA/USERID.NUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/MoNA/USERID.NUM -------------------------------------------------------------------------------- /MoNA_GCMS_Library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/__init__.py -------------------------------------------------------------------------------- /MoNA_GCMS_Library/parse_json_and_contribs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/parse_json_and_contribs.py -------------------------------------------------------------------------------- /MoNA_GCMS_Library/parse_mona_contributors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/parse_mona_contributors.py -------------------------------------------------------------------------------- /MoNA_GCMS_Library/parse_mona_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/MoNA_GCMS_Library/parse_mona_json.py -------------------------------------------------------------------------------- /NISTDLL Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/NISTDLL Reference.pdf -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/README.rst -------------------------------------------------------------------------------- /THIRD_PARTY_COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/THIRD_PARTY_COPYRIGHT -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/cleanup.sh -------------------------------------------------------------------------------- /copr_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/copr_header.txt -------------------------------------------------------------------------------- /coverage-fixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/coverage-fixup.py -------------------------------------------------------------------------------- /doc-source/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/404.rst -------------------------------------------------------------------------------- /doc-source/Source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/Source.rst -------------------------------------------------------------------------------- /doc-source/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/_static/style.css -------------------------------------------------------------------------------- /doc-source/_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/_templates/base.html -------------------------------------------------------------------------------- /doc-source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/api.rst -------------------------------------------------------------------------------- /doc-source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/conf.py -------------------------------------------------------------------------------- /doc-source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/contributing.rst -------------------------------------------------------------------------------- /doc-source/docutils.conf: -------------------------------------------------------------------------------- 1 | [restructuredtext parser] 2 | tab_width : 4 3 | -------------------------------------------------------------------------------- /doc-source/git_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/git_download.png -------------------------------------------------------------------------------- /doc-source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/index.rst -------------------------------------------------------------------------------- /doc-source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/license.rst -------------------------------------------------------------------------------- /doc-source/not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/not-found.png -------------------------------------------------------------------------------- /doc-source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/requirements.txt -------------------------------------------------------------------------------- /doc-source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/doc-source/usage.rst -------------------------------------------------------------------------------- /formate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/formate.toml -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/pyproject.toml -------------------------------------------------------------------------------- /read_jcamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/read_jcamp.py -------------------------------------------------------------------------------- /repo_helper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/repo_helper.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/setup.py -------------------------------------------------------------------------------- /src/pyms_nist_search/NISTERR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/NISTERR.H -------------------------------------------------------------------------------- /src/pyms_nist_search/NISTMS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/NISTMS.H -------------------------------------------------------------------------------- /src/pyms_nist_search/NISTMS_min.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/NISTMS_min.H -------------------------------------------------------------------------------- /src/pyms_nist_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/__init__.py -------------------------------------------------------------------------------- /src/pyms_nist_search/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/__init__.pyi -------------------------------------------------------------------------------- /src/pyms_nist_search/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/base.py -------------------------------------------------------------------------------- /src/pyms_nist_search/docker_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/docker_engine.py -------------------------------------------------------------------------------- /src/pyms_nist_search/mona_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/mona_tools.py -------------------------------------------------------------------------------- /src/pyms_nist_search/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyms_nist_search/pyms_nist_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/pyms_nist_search.c -------------------------------------------------------------------------------- /src/pyms_nist_search/pyms_nist_search_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/pyms_nist_search_min.c -------------------------------------------------------------------------------- /src/pyms_nist_search/reference_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/reference_data.py -------------------------------------------------------------------------------- /src/pyms_nist_search/search_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/search_result.py -------------------------------------------------------------------------------- /src/pyms_nist_search/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/templates/__init__.py -------------------------------------------------------------------------------- /src/pyms_nist_search/templates/msp_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/templates/msp_template -------------------------------------------------------------------------------- /src/pyms_nist_search/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/utils.py -------------------------------------------------------------------------------- /src/pyms_nist_search/win_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/win_engine.py -------------------------------------------------------------------------------- /src/pyms_nist_search/x64/ctnt66_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x64/ctnt66_64.dll -------------------------------------------------------------------------------- /src/pyms_nist_search/x64/nistdl64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x64/nistdl64.dll -------------------------------------------------------------------------------- /src/pyms_nist_search/x64/nistdl64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x64/nistdl64.lib -------------------------------------------------------------------------------- /src/pyms_nist_search/x64/nistdl64_2gb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x64/nistdl64_2gb.dll -------------------------------------------------------------------------------- /src/pyms_nist_search/x64/nistdl64_2gb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x64/nistdl64_2gb.lib -------------------------------------------------------------------------------- /src/pyms_nist_search/x86/ctnt66.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x86/ctnt66.dll -------------------------------------------------------------------------------- /src/pyms_nist_search/x86/nistdl32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x86/nistdl32.dll -------------------------------------------------------------------------------- /src/pyms_nist_search/x86/nistdl32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x86/nistdl32.lib -------------------------------------------------------------------------------- /src/pyms_nist_search/x86/nistdl32_2gb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x86/nistdl32_2gb.dll -------------------------------------------------------------------------------- /src/pyms_nist_search/x86/nistdl32_2gb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/src/pyms_nist_search/x86/nistdl32_2gb.lib -------------------------------------------------------------------------------- /stubs.txt: -------------------------------------------------------------------------------- 1 | types-requests 2 | docker>=4.2.0 3 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test.py -------------------------------------------------------------------------------- /test_multi_library/MSPs/c1.msp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/MSPs/c1.msp -------------------------------------------------------------------------------- /test_multi_library/MSPs/c2.msp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/MSPs/c2.msp -------------------------------------------------------------------------------- /test_multi_library/MSPs/c3.msp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/MSPs/c3.msp -------------------------------------------------------------------------------- /test_multi_library/MSPs/c4.msp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/MSPs/c4.msp -------------------------------------------------------------------------------- /test_multi_library/MSPs/c5.msp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/MSPs/c5.msp -------------------------------------------------------------------------------- /test_multi_library/c1/ALNUMNAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/ALNUMNAM.INU -------------------------------------------------------------------------------- /test_multi_library/c1/ALPHANAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/ALPHANAM.INU -------------------------------------------------------------------------------- /test_multi_library/c1/FORM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/FORM.INU -------------------------------------------------------------------------------- /test_multi_library/c1/LOSS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/LOSS.DBU -------------------------------------------------------------------------------- /test_multi_library/c1/LOSS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/LOSS.INU -------------------------------------------------------------------------------- /test_multi_library/c1/MAXMASS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/MAXMASS.DBU -------------------------------------------------------------------------------- /test_multi_library/c1/MAXMASS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/MAXMASS.INU -------------------------------------------------------------------------------- /test_multi_library/c1/MW.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/MW.INU -------------------------------------------------------------------------------- /test_multi_library/c1/NAME.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/NAME.INU -------------------------------------------------------------------------------- /test_multi_library/c1/NAMESORT.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/NAMESORT.DBU -------------------------------------------------------------------------------- /test_multi_library/c1/PEAK.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/PEAK.DBU -------------------------------------------------------------------------------- /test_multi_library/c1/PEAK.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/PEAK.INU -------------------------------------------------------------------------------- /test_multi_library/c1/PEAK_AM0.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/PEAK_AM0.DBU -------------------------------------------------------------------------------- /test_multi_library/c1/PEAK_AM0.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/PEAK_AM0.INU -------------------------------------------------------------------------------- /test_multi_library/c1/PEAK_AM2.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/PEAK_AM2.DBU -------------------------------------------------------------------------------- /test_multi_library/c1/PEAK_AM2.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/PEAK_AM2.INU -------------------------------------------------------------------------------- /test_multi_library/c1/REGISTRY.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/REGISTRY.INU -------------------------------------------------------------------------------- /test_multi_library/c1/USER.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/USER.DBU -------------------------------------------------------------------------------- /test_multi_library/c1/USER.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/USER.INU -------------------------------------------------------------------------------- /test_multi_library/c1/USERID.NUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c1/USERID.NUM -------------------------------------------------------------------------------- /test_multi_library/c2/ALNUMNAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/ALNUMNAM.INU -------------------------------------------------------------------------------- /test_multi_library/c2/ALPHANAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/ALPHANAM.INU -------------------------------------------------------------------------------- /test_multi_library/c2/FORM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/FORM.INU -------------------------------------------------------------------------------- /test_multi_library/c2/LOSS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/LOSS.DBU -------------------------------------------------------------------------------- /test_multi_library/c2/LOSS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/LOSS.INU -------------------------------------------------------------------------------- /test_multi_library/c2/MAXMASS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/MAXMASS.DBU -------------------------------------------------------------------------------- /test_multi_library/c2/MAXMASS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/MAXMASS.INU -------------------------------------------------------------------------------- /test_multi_library/c2/MW.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/MW.INU -------------------------------------------------------------------------------- /test_multi_library/c2/NAME.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/NAME.INU -------------------------------------------------------------------------------- /test_multi_library/c2/NAMESORT.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/NAMESORT.DBU -------------------------------------------------------------------------------- /test_multi_library/c2/PEAK.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/PEAK.DBU -------------------------------------------------------------------------------- /test_multi_library/c2/PEAK.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/PEAK.INU -------------------------------------------------------------------------------- /test_multi_library/c2/PEAK_AM0.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/PEAK_AM0.DBU -------------------------------------------------------------------------------- /test_multi_library/c2/PEAK_AM0.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/PEAK_AM0.INU -------------------------------------------------------------------------------- /test_multi_library/c2/PEAK_AM2.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/PEAK_AM2.DBU -------------------------------------------------------------------------------- /test_multi_library/c2/PEAK_AM2.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/PEAK_AM2.INU -------------------------------------------------------------------------------- /test_multi_library/c2/REGISTRY.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/REGISTRY.INU -------------------------------------------------------------------------------- /test_multi_library/c2/USER.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/USER.DBU -------------------------------------------------------------------------------- /test_multi_library/c2/USER.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/USER.INU -------------------------------------------------------------------------------- /test_multi_library/c2/USERID.NUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c2/USERID.NUM -------------------------------------------------------------------------------- /test_multi_library/c3/ALNUMNAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/ALNUMNAM.INU -------------------------------------------------------------------------------- /test_multi_library/c3/ALPHANAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/ALPHANAM.INU -------------------------------------------------------------------------------- /test_multi_library/c3/FORM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/FORM.INU -------------------------------------------------------------------------------- /test_multi_library/c3/LOSS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/LOSS.DBU -------------------------------------------------------------------------------- /test_multi_library/c3/LOSS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/LOSS.INU -------------------------------------------------------------------------------- /test_multi_library/c3/MAXMASS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/MAXMASS.DBU -------------------------------------------------------------------------------- /test_multi_library/c3/MAXMASS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/MAXMASS.INU -------------------------------------------------------------------------------- /test_multi_library/c3/MW.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/MW.INU -------------------------------------------------------------------------------- /test_multi_library/c3/NAME.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/NAME.INU -------------------------------------------------------------------------------- /test_multi_library/c3/NAMESORT.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/NAMESORT.DBU -------------------------------------------------------------------------------- /test_multi_library/c3/PEAK.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/PEAK.DBU -------------------------------------------------------------------------------- /test_multi_library/c3/PEAK.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/PEAK.INU -------------------------------------------------------------------------------- /test_multi_library/c3/PEAK_AM0.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/PEAK_AM0.DBU -------------------------------------------------------------------------------- /test_multi_library/c3/PEAK_AM0.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/PEAK_AM0.INU -------------------------------------------------------------------------------- /test_multi_library/c3/PEAK_AM2.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/PEAK_AM2.DBU -------------------------------------------------------------------------------- /test_multi_library/c3/PEAK_AM2.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/PEAK_AM2.INU -------------------------------------------------------------------------------- /test_multi_library/c3/REGISTRY.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/REGISTRY.INU -------------------------------------------------------------------------------- /test_multi_library/c3/USER.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/USER.DBU -------------------------------------------------------------------------------- /test_multi_library/c3/USER.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/USER.INU -------------------------------------------------------------------------------- /test_multi_library/c3/USERID.NUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c3/USERID.NUM -------------------------------------------------------------------------------- /test_multi_library/c4/ALNUMNAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/ALNUMNAM.INU -------------------------------------------------------------------------------- /test_multi_library/c4/ALPHANAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/ALPHANAM.INU -------------------------------------------------------------------------------- /test_multi_library/c4/FORM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/FORM.INU -------------------------------------------------------------------------------- /test_multi_library/c4/LOSS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/LOSS.DBU -------------------------------------------------------------------------------- /test_multi_library/c4/LOSS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/LOSS.INU -------------------------------------------------------------------------------- /test_multi_library/c4/MAXMASS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/MAXMASS.DBU -------------------------------------------------------------------------------- /test_multi_library/c4/MAXMASS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/MAXMASS.INU -------------------------------------------------------------------------------- /test_multi_library/c4/MW.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/MW.INU -------------------------------------------------------------------------------- /test_multi_library/c4/NAME.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/NAME.INU -------------------------------------------------------------------------------- /test_multi_library/c4/NAMESORT.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/NAMESORT.DBU -------------------------------------------------------------------------------- /test_multi_library/c4/PEAK.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/PEAK.DBU -------------------------------------------------------------------------------- /test_multi_library/c4/PEAK.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/PEAK.INU -------------------------------------------------------------------------------- /test_multi_library/c4/PEAK_AM0.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/PEAK_AM0.DBU -------------------------------------------------------------------------------- /test_multi_library/c4/PEAK_AM0.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/PEAK_AM0.INU -------------------------------------------------------------------------------- /test_multi_library/c4/PEAK_AM2.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/PEAK_AM2.DBU -------------------------------------------------------------------------------- /test_multi_library/c4/PEAK_AM2.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/PEAK_AM2.INU -------------------------------------------------------------------------------- /test_multi_library/c4/REGISTRY.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/REGISTRY.INU -------------------------------------------------------------------------------- /test_multi_library/c4/USER.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/USER.DBU -------------------------------------------------------------------------------- /test_multi_library/c4/USER.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/USER.INU -------------------------------------------------------------------------------- /test_multi_library/c4/USERID.NUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c4/USERID.NUM -------------------------------------------------------------------------------- /test_multi_library/c5/ALNUMNAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/ALNUMNAM.INU -------------------------------------------------------------------------------- /test_multi_library/c5/ALPHANAM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/ALPHANAM.INU -------------------------------------------------------------------------------- /test_multi_library/c5/FORM.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/FORM.INU -------------------------------------------------------------------------------- /test_multi_library/c5/LOSS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/LOSS.DBU -------------------------------------------------------------------------------- /test_multi_library/c5/LOSS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/LOSS.INU -------------------------------------------------------------------------------- /test_multi_library/c5/MAXMASS.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/MAXMASS.DBU -------------------------------------------------------------------------------- /test_multi_library/c5/MAXMASS.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/MAXMASS.INU -------------------------------------------------------------------------------- /test_multi_library/c5/MW.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/MW.INU -------------------------------------------------------------------------------- /test_multi_library/c5/NAME.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/NAME.INU -------------------------------------------------------------------------------- /test_multi_library/c5/NAMESORT.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/NAMESORT.DBU -------------------------------------------------------------------------------- /test_multi_library/c5/PEAK.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/PEAK.DBU -------------------------------------------------------------------------------- /test_multi_library/c5/PEAK.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/PEAK.INU -------------------------------------------------------------------------------- /test_multi_library/c5/PEAK_AM0.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/PEAK_AM0.DBU -------------------------------------------------------------------------------- /test_multi_library/c5/PEAK_AM0.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/PEAK_AM0.INU -------------------------------------------------------------------------------- /test_multi_library/c5/PEAK_AM2.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/PEAK_AM2.DBU -------------------------------------------------------------------------------- /test_multi_library/c5/PEAK_AM2.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/PEAK_AM2.INU -------------------------------------------------------------------------------- /test_multi_library/c5/REGISTRY.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/REGISTRY.INU -------------------------------------------------------------------------------- /test_multi_library/c5/USER.DBU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/USER.DBU -------------------------------------------------------------------------------- /test_multi_library/c5/USER.INU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/USER.INU -------------------------------------------------------------------------------- /test_multi_library/c5/USERID.NUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/c5/USERID.NUM -------------------------------------------------------------------------------- /test_multi_library/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/conftest.py -------------------------------------------------------------------------------- /test_multi_library/test_multi_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/test_multi_library/test_multi_library.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/constants.py -------------------------------------------------------------------------------- /tests/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/engines.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/spectra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/spectra.py -------------------------------------------------------------------------------- /tests/test_full_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/test_full_search.py -------------------------------------------------------------------------------- /tests/test_full_search_ref_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/test_full_search_ref_data.py -------------------------------------------------------------------------------- /tests/test_get_ref_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/test_get_ref_data.py -------------------------------------------------------------------------------- /tests/test_quick_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/test_quick_search.py -------------------------------------------------------------------------------- /tests/test_reference_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/test_reference_data.py -------------------------------------------------------------------------------- /tests/test_search_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/test_search_result.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domdfcoding/pynist/HEAD/tox.ini --------------------------------------------------------------------------------