I have no experience with it, but I guess you're looking for something like hylafax, right? A post here purports to show how to use it from Python (haven't tried myself).
from interfax import client
print 'Testing SendCharFax...'
c = client.InterFaxClient('USERNAME','PASSWORD')
result = c.sendCharFax('+12125554874', 'This is a test')
print ' Char Fax was sent with result code: %d' % result
Check out the link for a number of code samples demonstrating how to fax with Python using a commercial internet fax service.
As an example, the simplest one requires just this:
from interfax import client
print 'Testing SendCharFax...'
c = client.InterFaxClient('USERNAME','PASSWORD')
result = c.sendCharFax('+12125554874', 'This is a test')
print ' Char Fax was sent with result code: %d' % result
发布评论
评论(6)
我没有这方面的经验,但我猜你正在寻找类似 hylafax< /a>,对吧? 此处 的帖子旨在展示如何从 Python 使用它(避风港)我自己也试过)。
I have no experience with it, but I guess you're looking for something like hylafax, right? A post here purports to show how to use it from Python (haven't tried myself).
有些公司提供电子邮件到传真和传真到电子邮件的转换(因此您可以通过发送和接收电子邮件来发送/接收传真)。
There are companies which offer email-to-fax and fax-to-email conversion (so you can send/receive faxes by sending and receiving emails).
查看链接中的大量代码示例,演示如何使用商业软件使用 Python 进行传真互联网传真服务。
举个例子,最简单的一个只需要这样:
Check out the link for a number of code samples demonstrating how to fax with Python using a commercial internet fax service.
As an example, the simplest one requires just this:
dynaptico-pamfax 是一个开源 Python 模块,用于使用 PamFax 发送传真:
https://github.com/dynaptico/pamfaxp< /a>
该模块根据 MIT 许可证获得许可。可以使用 pip 安装:
pip install dynaptico-pamfax
其他信息可从以下位置获取:
http:// www.pamfax.biz/en/developers/introduction/
dynaptico-pamfax is an open source Python module to send faxes using PamFax:
https://github.com/dynaptico/pamfaxp
The module is licensed under a MIT license. It can be installed with pip:
pip install dynaptico-pamfax
Additional information is available from:
http://www.pamfax.biz/en/developers/introduction/
您还可以使用 phaxio 来实现此目的,
详细信息请访问
http://www.phaxio.com/
https://github.com/setaris/pyphaxio
You can also use phaxio for this purpose
details can be found at
http://www.phaxio.com/
https://github.com/setaris/pyphaxio
我通过谷歌找到的用于发送传真的工具是 python-faxage。这可以在以下位置找到:
用于发送和接收传真的互联网客户端。
编辑
上述链接现已失效,您可以请参阅以下包:
http://www.phaxio.com/
The one I found by google for sending faxes is python-faxage. This can found at:
Internet client for sending and receiving faxes.
EDIT
above mentioned link is now dead, you can see the following package instead:
http://www.phaxio.com/