コード例 #1
0
ファイル: dump-post.py プロジェクト: lizsugar/cssbot
#!/usr/bin/env python2.6

#
# Copyright (C) 2011 by Brian Weck
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
#

#
import utils
from cssbot import reddit

utils.usage(1, "usage: %s id")
fetch_id = utils.argv(1)

r = reddit.APIWrapper()
r.num_retries = 0
x = r.get_comments(fetch_id)
print utils.format_json(x)

コード例 #2
0
ファイル: dequeue-post.py プロジェクト: lizsugar/cssbot
#!/usr/bin/env python2.6

#
# Copyright (C) 2011 by Brian Weck
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
#

import utils
from cssbot import log, queue

#
utils.usage(1, "usage: %s id")
thing_id = utils.argv(1)

#
log = log.getLogger("cssbot.dequeue")

#
queue = queue.Queue()
thing = queue.contains({"data.id": thing_id})

# if we have an item, and up for queueing.
if thing and "next_ts" in thing:
    log.warn("removing item %s from queue", thing_id)
    queue.dequeue(thing)
else:
    log.error("did not remove thing %s from the queue", thing_id)
コード例 #3
0
ファイル: dequeue-post.py プロジェクト: alademan/cssbot
#!/usr/bin/env python2.6

#
# Copyright (C) 2011 by Brian Weck
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
#


import utils
from cssbot import log, queue

#
utils.usage(1, "usage: %s id")
thing_id = utils.argv(1)

#
log = log.getLogger("cssbot.dequeue")

#
queue = queue.Queue()
thing = queue.contains({"data.id":thing_id})

# if we have an item, and up for queueing.
if thing and "next_ts" in thing:
   log.warn("removing item %s from queue", thing_id)
   queue.dequeue(thing)
else:
   log.error("did not remove thing %s from the queue", thing_id)