python无法打开文件_Python,PyFITS,无法打开文件

I have problem in opening FITS file in Python. I get following error-message:

File "G:\Anaconda\lib\site-packages\pyfits\file.py", line 416, in _open_filelike % self.mode)

IOError: File-like object does not have a 'write' method, required for mode 'ostream'

at hdulist = pft.open(path) line (I did import pyfits as pft).

I checked the path twice - it's correct.

I'm not able to find any reference to this error in context of using PyFITS and I will be gratefull for any help.

UPDATE:

I missed some details and I'm sorry for it.

First of all: I'm using PyFITS 3.3 under Anaconda distribution for Windows (Windows XP 32-bit).

Code of whole widget you can find at this link:

FileView

In a short - I'm making simple explorer for filesystem, just to let user navigate to folder with FITS files and read it from folder. All project is under PyQT4.

解决方案

Obviously your path is not a subclass of basestring (I suppose you use Python 2.7) as it is expected by PyFITS. In fact path is a QString instance and you have to convert to unicode first.

So replace your line

hdulist = pft.open(path)

with

hdulist = pft.open(unicode(path.toUtf8(), encoding="UTF-8"))

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值