Ok, we aren't in the mid-1980s any more, but anyway. Are there any fax libraries for python?
6 Answers
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).

- 854,459
- 170
- 1,222
- 1,395
-
Thank you for the link – since I have no experience with fax+python, it provides me with some starting points. – miku Jul 10 '10 at 17:56
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).

- 54,973
- 13
- 116
- 224
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

- 136
- 6
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:

- 1,116
- 10
- 21
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/

- 743
- 8
- 18