SQLite is quite suitable for sharing information between processes, although I suspect its locking is quite coarse-grained so if the processes make frequent updates (many a second) then you might find that this affects performance. However, if your processes are running on different machines then you'd need to arrange some shared storage for them. Since SQLite relies on file locking, shared filesystems like NFS may have issues - see their FAQ for details.
MySQL and PostgreSQL are both sensible options which allow connections over a network and should make it easier for multiple machines to access the database at once, although they require considerably more setup than SQLite.
All that said, it sounds like what you really want to achieve is for processes to be woken up by each other, and this sort of thing is harder with a database. You generally end up having to poll on a particular value at frequent intervals, and that's quite an inefficient way of doing things. If you're after a static data store, databases are great, but they're not really a replacement for proper IPC. You might also consider using UDP instead of TCP if you don't need to send data, more of just a "wake up call". Bear in mind that UDP makes no guarantees about reliability, however, and you'll probably find many more tutorials and documentation about TCP sockets than UDP ones.
If you're not comfortable using raw sockets, have you looked at 0MQ? It's a message-passing system which can run over, among other things, sockets. It has Python bindings and it performs really well. Perhaps that abstraction might work better for you than dealing with raw sockets?
As a final note, socket programming isn't really all that tricky once you get your head around the concepts, but it does have quite a learning curve until you're comfortable with what's going on. If you want to give it a try, I suggest starting with Python's Socket Programming HOWTO.
The main complexity you're going to have is dealing with multiple connections at once. If you're happy using threads, you can spawn a thread per connection (i.e. one thread per other machine), or you can keep things in the same thread and wait for something to happen on multiple connections with the functionality of the select module.