Projects tagged ‘mediashelf’


[2 total ]

1 Users

A podcatcher and broadcatcher for KDE. It lets you watch TV and listen to Radio shows from the net, for free. KatchTV is independent of channel and feed publishers, including Miro's channel guide, and ... [More] others too. It includes Bittorrent support, and is capable of downloading large movies, in parallel, while you watch something else. Integrates with Konqueror, and KDE media players. KatchTV is an Internet TV broadcatcher and podcatcher, similar to Miro, but for KDE. Supported features include: * Video podcasts ("vodcasts"). * Bittorrent-based broadcatching. * Audio podcasts. * Multiple background downloads of media and updates of feeds, all while you watch/listen to your favourite shows. * Manages any media you download, so that you don't lose track of your disk space. [Less]
Created 12 months ago.

0 Users

The pastiche software framework brings a variety of technologies together, like semantic web, multi-agent and distributed systems. It is designed for ease of use and fun. This is a continuation ... [More] of previous work done on Spyse. Still thinking about a number of ideas. #!/usr/bin/env python """Hello World example program from the Spyse tutorial""" from spyse.core.agents.agent import Agent from spyse.core.behaviours.behaviours import Behaviour from spyse.app.app import App # Define a custom behaviour class class HelloBehaviour(Behaviour): # Customize the Behaviour class by overriding action() def action(self): # The action: print "Hello, world" # Mark this behaviour as finished so that it will be removed # from the agent's behaviour list. self.set_done() # Define a custom agent class class HelloAgent(Agent): # Customize the Agent class by overriding setup() def setup(self): # Add the custom behaviour for the agent to perform. # An agent will die as soon as all its behaviours are complete. self.add_behaviour(HelloBehaviour()) # Define a custom application class class MyApp(App): # Customize it by overriding run() def run(self, args): self.start_agent(HelloAgent) # Instantiate and run MyApp if __name__ == "__main__": MyApp() [Less]
Created about 1 year ago.