├── .github ├── dependabot.yml └── workflows │ └── citest.yml ├── .gitignore ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── _static │ ├── brand.css │ └── pyraflogo.png ├── conf.py ├── ecl.html ├── epar.png ├── index.rst ├── ipython_notes.txt ├── prow.png ├── pyraf_tutorial.rst └── teal_guide.rst ├── pyproject.toml ├── pyraf ├── GkiMpl.py ├── MplCanvasAdapter.py ├── Ptkplot.py ├── __init__.py ├── __main__.py ├── aqutil.py ├── blankcursor.xbm ├── cgeneric.py ├── cl2py.py ├── clast.py ├── clcache.py ├── cllinecache.py ├── clparse.py ├── clscan.py ├── cltoken.py ├── epar.optionDB ├── epar.py ├── filecache.py ├── fill_clcache.py ├── fontdata.py ├── generic.py ├── gki.py ├── gkicmd.py ├── gkigcur.py ├── gkiiraf.py ├── gkitkbase.py ├── gkitkplot.py ├── graphcap.py ├── gwm.py ├── ipython_api.py ├── ipythonrc-pyraf ├── iraf.py ├── irafcompleter.py ├── irafdisplay.py ├── irafecl.py ├── irafexecute.py ├── iraffunctions.py ├── irafgwcs.py ├── irafhelp.py ├── irafimcur.py ├── irafimport.py ├── irafinst.py ├── irafnames.py ├── irafpar.py ├── iraftask.py ├── irafukey.py ├── msgiobuffer.py ├── msgiowidget.py ├── newWindowHack.py ├── noiraf │ ├── cl.par │ ├── clpackage.cl │ ├── login.cl │ ├── system.cl │ └── system.par ├── pseteparoption.py ├── pycmdline.py ├── pyrafTk.py ├── pyrafglobals.py ├── pyraflogo_rgb_web.gif ├── scanf.py ├── splash.py ├── sqliteshelve.py ├── subproc.py ├── tests │ ├── __init__.py │ ├── data │ │ ├── psdump_prow_250.ps │ │ ├── psdump_prow_256.ps │ │ ├── psdump_prow_256_250.ps │ │ ├── psdump_prow_256_250_200.ps │ │ ├── pset_msstat_input.fits │ │ ├── psi_land_prow_250.ps │ │ ├── psi_land_prow_256.ps │ │ ├── psi_land_prow_256_250.ps │ │ └── psi_land_prow_256_250_200.ps │ ├── test_basic.py │ ├── test_clcache.py │ ├── test_cli.py │ ├── test_core_nongraphics.py │ ├── test_graphics.py │ ├── test_invocation.py │ ├── test_plot.py │ ├── test_tasks.py │ ├── test_using_tasks.py │ └── utils.py ├── textattrib.py ├── tkplottext.py ├── tools │ ├── __init__.py │ ├── alert.py │ ├── basicpar.py │ ├── capable.py │ ├── cfgpars.py │ ├── compmixin.py │ ├── dialog.py │ ├── editpar.py │ ├── eparoption.py │ ├── filedlg.py │ ├── irafglobals.py │ ├── irafutils.py │ ├── listdlg.py │ ├── minmatch.py │ ├── taskpars.py │ ├── teal.py │ ├── teal_bttn.py │ ├── tests │ │ ├── __init__.py │ │ ├── cfgobj_output.ref │ │ ├── rt_sample.cfg │ │ ├── rt_sample.cfgspc │ │ ├── test_cfgobj.py │ │ ├── test_compmixin.py │ │ ├── test_irafutils.py │ │ └── test_minmatch.py │ ├── tkrotext.py │ └── vtor_checks.py ├── tpar.py ├── urwfiledlg.py ├── urwutil.py ├── wutil.py └── xutil.c ├── setup.py └── tools ├── compileallcl.py └── loadall.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/citest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/.github/workflows/citest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/README.rst -------------------------------------------------------------------------------- /docs/_static/brand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/_static/brand.css -------------------------------------------------------------------------------- /docs/_static/pyraflogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/_static/pyraflogo.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/ecl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/ecl.html -------------------------------------------------------------------------------- /docs/epar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/epar.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | pyraf_tutorial.rst -------------------------------------------------------------------------------- /docs/ipython_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/ipython_notes.txt -------------------------------------------------------------------------------- /docs/prow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/prow.png -------------------------------------------------------------------------------- /docs/pyraf_tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/pyraf_tutorial.rst -------------------------------------------------------------------------------- /docs/teal_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/docs/teal_guide.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyraf/GkiMpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/GkiMpl.py -------------------------------------------------------------------------------- /pyraf/MplCanvasAdapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/MplCanvasAdapter.py -------------------------------------------------------------------------------- /pyraf/Ptkplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/Ptkplot.py -------------------------------------------------------------------------------- /pyraf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/__init__.py -------------------------------------------------------------------------------- /pyraf/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/__main__.py -------------------------------------------------------------------------------- /pyraf/aqutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/aqutil.py -------------------------------------------------------------------------------- /pyraf/blankcursor.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/blankcursor.xbm -------------------------------------------------------------------------------- /pyraf/cgeneric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/cgeneric.py -------------------------------------------------------------------------------- /pyraf/cl2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/cl2py.py -------------------------------------------------------------------------------- /pyraf/clast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/clast.py -------------------------------------------------------------------------------- /pyraf/clcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/clcache.py -------------------------------------------------------------------------------- /pyraf/cllinecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/cllinecache.py -------------------------------------------------------------------------------- /pyraf/clparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/clparse.py -------------------------------------------------------------------------------- /pyraf/clscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/clscan.py -------------------------------------------------------------------------------- /pyraf/cltoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/cltoken.py -------------------------------------------------------------------------------- /pyraf/epar.optionDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/epar.optionDB -------------------------------------------------------------------------------- /pyraf/epar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/epar.py -------------------------------------------------------------------------------- /pyraf/filecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/filecache.py -------------------------------------------------------------------------------- /pyraf/fill_clcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/fill_clcache.py -------------------------------------------------------------------------------- /pyraf/fontdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/fontdata.py -------------------------------------------------------------------------------- /pyraf/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/generic.py -------------------------------------------------------------------------------- /pyraf/gki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/gki.py -------------------------------------------------------------------------------- /pyraf/gkicmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/gkicmd.py -------------------------------------------------------------------------------- /pyraf/gkigcur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/gkigcur.py -------------------------------------------------------------------------------- /pyraf/gkiiraf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/gkiiraf.py -------------------------------------------------------------------------------- /pyraf/gkitkbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/gkitkbase.py -------------------------------------------------------------------------------- /pyraf/gkitkplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/gkitkplot.py -------------------------------------------------------------------------------- /pyraf/graphcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/graphcap.py -------------------------------------------------------------------------------- /pyraf/gwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/gwm.py -------------------------------------------------------------------------------- /pyraf/ipython_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/ipython_api.py -------------------------------------------------------------------------------- /pyraf/ipythonrc-pyraf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/ipythonrc-pyraf -------------------------------------------------------------------------------- /pyraf/iraf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/iraf.py -------------------------------------------------------------------------------- /pyraf/irafcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafcompleter.py -------------------------------------------------------------------------------- /pyraf/irafdisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafdisplay.py -------------------------------------------------------------------------------- /pyraf/irafecl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafecl.py -------------------------------------------------------------------------------- /pyraf/irafexecute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafexecute.py -------------------------------------------------------------------------------- /pyraf/iraffunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/iraffunctions.py -------------------------------------------------------------------------------- /pyraf/irafgwcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafgwcs.py -------------------------------------------------------------------------------- /pyraf/irafhelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafhelp.py -------------------------------------------------------------------------------- /pyraf/irafimcur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafimcur.py -------------------------------------------------------------------------------- /pyraf/irafimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafimport.py -------------------------------------------------------------------------------- /pyraf/irafinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafinst.py -------------------------------------------------------------------------------- /pyraf/irafnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafnames.py -------------------------------------------------------------------------------- /pyraf/irafpar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafpar.py -------------------------------------------------------------------------------- /pyraf/iraftask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/iraftask.py -------------------------------------------------------------------------------- /pyraf/irafukey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/irafukey.py -------------------------------------------------------------------------------- /pyraf/msgiobuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/msgiobuffer.py -------------------------------------------------------------------------------- /pyraf/msgiowidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/msgiowidget.py -------------------------------------------------------------------------------- /pyraf/newWindowHack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/newWindowHack.py -------------------------------------------------------------------------------- /pyraf/noiraf/cl.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/noiraf/cl.par -------------------------------------------------------------------------------- /pyraf/noiraf/clpackage.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/noiraf/clpackage.cl -------------------------------------------------------------------------------- /pyraf/noiraf/login.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/noiraf/login.cl -------------------------------------------------------------------------------- /pyraf/noiraf/system.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/noiraf/system.cl -------------------------------------------------------------------------------- /pyraf/noiraf/system.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/noiraf/system.par -------------------------------------------------------------------------------- /pyraf/pseteparoption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/pseteparoption.py -------------------------------------------------------------------------------- /pyraf/pycmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/pycmdline.py -------------------------------------------------------------------------------- /pyraf/pyrafTk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/pyrafTk.py -------------------------------------------------------------------------------- /pyraf/pyrafglobals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/pyrafglobals.py -------------------------------------------------------------------------------- /pyraf/pyraflogo_rgb_web.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/pyraflogo_rgb_web.gif -------------------------------------------------------------------------------- /pyraf/scanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/scanf.py -------------------------------------------------------------------------------- /pyraf/splash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/splash.py -------------------------------------------------------------------------------- /pyraf/sqliteshelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/sqliteshelve.py -------------------------------------------------------------------------------- /pyraf/subproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/subproc.py -------------------------------------------------------------------------------- /pyraf/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyraf/tests/data/psdump_prow_250.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/psdump_prow_250.ps -------------------------------------------------------------------------------- /pyraf/tests/data/psdump_prow_256.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/psdump_prow_256.ps -------------------------------------------------------------------------------- /pyraf/tests/data/psdump_prow_256_250.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/psdump_prow_256_250.ps -------------------------------------------------------------------------------- /pyraf/tests/data/psdump_prow_256_250_200.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/psdump_prow_256_250_200.ps -------------------------------------------------------------------------------- /pyraf/tests/data/pset_msstat_input.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/pset_msstat_input.fits -------------------------------------------------------------------------------- /pyraf/tests/data/psi_land_prow_250.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/psi_land_prow_250.ps -------------------------------------------------------------------------------- /pyraf/tests/data/psi_land_prow_256.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/psi_land_prow_256.ps -------------------------------------------------------------------------------- /pyraf/tests/data/psi_land_prow_256_250.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/psi_land_prow_256_250.ps -------------------------------------------------------------------------------- /pyraf/tests/data/psi_land_prow_256_250_200.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/data/psi_land_prow_256_250_200.ps -------------------------------------------------------------------------------- /pyraf/tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_basic.py -------------------------------------------------------------------------------- /pyraf/tests/test_clcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_clcache.py -------------------------------------------------------------------------------- /pyraf/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_cli.py -------------------------------------------------------------------------------- /pyraf/tests/test_core_nongraphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_core_nongraphics.py -------------------------------------------------------------------------------- /pyraf/tests/test_graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_graphics.py -------------------------------------------------------------------------------- /pyraf/tests/test_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_invocation.py -------------------------------------------------------------------------------- /pyraf/tests/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_plot.py -------------------------------------------------------------------------------- /pyraf/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_tasks.py -------------------------------------------------------------------------------- /pyraf/tests/test_using_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/test_using_tasks.py -------------------------------------------------------------------------------- /pyraf/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tests/utils.py -------------------------------------------------------------------------------- /pyraf/textattrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/textattrib.py -------------------------------------------------------------------------------- /pyraf/tkplottext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tkplottext.py -------------------------------------------------------------------------------- /pyraf/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyraf/tools/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/alert.py -------------------------------------------------------------------------------- /pyraf/tools/basicpar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/basicpar.py -------------------------------------------------------------------------------- /pyraf/tools/capable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/capable.py -------------------------------------------------------------------------------- /pyraf/tools/cfgpars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/cfgpars.py -------------------------------------------------------------------------------- /pyraf/tools/compmixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/compmixin.py -------------------------------------------------------------------------------- /pyraf/tools/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/dialog.py -------------------------------------------------------------------------------- /pyraf/tools/editpar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/editpar.py -------------------------------------------------------------------------------- /pyraf/tools/eparoption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/eparoption.py -------------------------------------------------------------------------------- /pyraf/tools/filedlg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/filedlg.py -------------------------------------------------------------------------------- /pyraf/tools/irafglobals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/irafglobals.py -------------------------------------------------------------------------------- /pyraf/tools/irafutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/irafutils.py -------------------------------------------------------------------------------- /pyraf/tools/listdlg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/listdlg.py -------------------------------------------------------------------------------- /pyraf/tools/minmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/minmatch.py -------------------------------------------------------------------------------- /pyraf/tools/taskpars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/taskpars.py -------------------------------------------------------------------------------- /pyraf/tools/teal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/teal.py -------------------------------------------------------------------------------- /pyraf/tools/teal_bttn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/teal_bttn.py -------------------------------------------------------------------------------- /pyraf/tools/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyraf/tools/tests/cfgobj_output.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/tests/cfgobj_output.ref -------------------------------------------------------------------------------- /pyraf/tools/tests/rt_sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/tests/rt_sample.cfg -------------------------------------------------------------------------------- /pyraf/tools/tests/rt_sample.cfgspc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/tests/rt_sample.cfgspc -------------------------------------------------------------------------------- /pyraf/tools/tests/test_cfgobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/tests/test_cfgobj.py -------------------------------------------------------------------------------- /pyraf/tools/tests/test_compmixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/tests/test_compmixin.py -------------------------------------------------------------------------------- /pyraf/tools/tests/test_irafutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/tests/test_irafutils.py -------------------------------------------------------------------------------- /pyraf/tools/tests/test_minmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/tests/test_minmatch.py -------------------------------------------------------------------------------- /pyraf/tools/tkrotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/tkrotext.py -------------------------------------------------------------------------------- /pyraf/tools/vtor_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tools/vtor_checks.py -------------------------------------------------------------------------------- /pyraf/tpar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/tpar.py -------------------------------------------------------------------------------- /pyraf/urwfiledlg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/urwfiledlg.py -------------------------------------------------------------------------------- /pyraf/urwutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/urwutil.py -------------------------------------------------------------------------------- /pyraf/wutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/wutil.py -------------------------------------------------------------------------------- /pyraf/xutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/pyraf/xutil.c -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/setup.py -------------------------------------------------------------------------------- /tools/compileallcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/tools/compileallcl.py -------------------------------------------------------------------------------- /tools/loadall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iraf-community/pyraf/HEAD/tools/loadall.py --------------------------------------------------------------------------------