コード例 #1
0
# Copyright (c) Mathias Kaerlev 2011-2012.

# This file is part of pyspades.

# pyspades is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# pyspades is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with pyspades.  If not, see <http://www.gnu.org/licenses/>.

from pyspades.site import get_servers
from twisted.internet import reactor


def got_servers(servers):
    print servers


get_servers().addCallback(got_servers)
reactor.run()
コード例 #2
0
ファイル: run.py プロジェクト: Lwgano/pyspades
 def update(self):
     get_servers().addCallback(self.got_servers)
     reactor.callLater(UPDATE_INTERVAL, self.update)
コード例 #3
0
ファイル: test_serverbrowser.py プロジェクト: Lwgano/pyspades
# Copyright (c) Mathias Kaerlev 2011-2012.

# This file is part of pyspades.

# pyspades is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# pyspades is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with pyspades.  If not, see <http://www.gnu.org/licenses/>.

from pyspades.site import get_servers
from twisted.internet import reactor

def got_servers(servers):
    print servers

get_servers().addCallback(got_servers)
reactor.run()
コード例 #4
0
 def update(self):
     get_servers().addCallback(self.got_servers)
     reactor.callLater(UPDATE_INTERVAL, self.update)