0
votes
1answer
108 views

Netmask/ip-address lookup on BSD/OS X

How do I do ip-address/netmask etc. lookup on OS X (or BSD) using the python standard library function. I'm in the middle of a process and can't make my script working on Mac. On the Linux machine, ...
1
vote
2answers
100 views

psutil error in Python on FreeBSD

I am trying to use psutil in a python script I'm writing on a FreeBSD system. At the top I have: import _psutil_bsd Then, when calling something like process_iter I have: for process in ...
3
votes
3answers
364 views

Why would `killpg` return “not permitted” when ownership is correct?

I've got some code which fork()s, calls setsid() in the child, and starts some processing. If any of the children quit (waitpid(-1, 0)), I kill all the child process groups: child_pids = [] for ...
2
votes
1answer
124 views

PyPI packages and licenses

Consider a Python package distributed through PyPI (aka CheeseShop). This package has adopted several classes/functions/ideas from 3d-party Python libraries (e.g. Django, PyMongo, Flask etc.). ...
0
votes
1answer
439 views

Check if file is modified deleted or extended using python select.kqueue()

Hi I am having a hard time understanding how to use the BSD only python module classes select.kqueue and select.kevent to setup a watch for file write events. I want to a python program to respond ...
0
votes
1answer
140 views

IS there a good non- GPL python libraries for finding the length of an mp3?

I have found a few libraries that are under GPL but are there any under BSD? or any other non-GPL license?
0
votes
4answers
994 views

Python clock function on FreeBSD

While testing Pythons time.clock() function on FreeBSD I've noticed it always returns the same value, around 0.156 The time.time() function works properly but I need a something with a slightly ...