Ross
Ross

Reputation: 46987

Monitoring internet activity

I'm looking into writing a small app (in Python) that monitors internet activity. The same idea as NetMeter except with a little more customisation (I need to be able to set off-peak time ranges).

Anyway, I've been having a little trouble researching these questions:

Upvotes: 2

Views: 1852

Answers (1)

Jarret Hardie
Jarret Hardie

Reputation: 97912

The pylibpcap project may actually give you what you want out of the box, or at least a leg up on implementing one yourself. It's a set of python bindings, as the name suggests, to the libpcap packet capture library.

Upvotes: 4

Related Questions