用python发送传真?

发布于 2024-09-09 02:29:07 字数 124 浏览 0 评论 0原文

好吧,我们已经不再是 20 世纪 80 年代中期了,但无论如何。是否有用于 python 的 fax 库?

Ok, we aren't in the mid-1980s any more, but anyway. Are there any fax libraries for python?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

橘虞初梦 2024-09-16 02:29:07

我没有这方面的经验,但我猜你正在寻找类似 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).

青衫负雪 2024-09-16 02:29:07

该国家/地区将属于欧元区。没有其他限制。

有些公司提供电子邮件到传真和传真到电子邮件的转换(因此您可以通过发送和接收电子邮件来发送/接收传真)。

Country would be in Eurozone. No other constraints.

There are companies which offer email-to-fax and fax-to-email conversion (so you can send/receive faxes by sending and receiving emails).

雄赳赳气昂昂 2024-09-16 02:29:07

查看链接中的大量代码示例,演示如何使用商业软件使用 Python 进行传真互联网传真服务。

举个例子,最简单的一个只需要这样:

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
々眼睛长脚气 2024-09-16 02:29:07

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/

守望孤独 2024-09-16 02:29:07

您还可以使用 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

假面具 2024-09-16 02:29:07

我通过谷歌找到的用于发送传真的工具是 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文