Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(7) | Call(7) | Derive(0) | Import(0)
src/c/o/CollabQ-HEAD/administration/views.py CollabQ(Download)
root_user = api.user_create_root(api.ROOT, password=password) api.email_associate(api.ROOT, root_user.nick, root_mail) channel_ref = api.channel_create(api.ROOT, nick=api.ROOT.nick, channel=channel, tags=[], type='', description='Support Channel') util.set_metadata('DEFAULT_CHANNEL', default_channel)
'tags': request.POST.getlist('tags[]'), } channel_ref = api.channel_create(api.ROOT, **params) if channel_ref is not None: logging.info('Channel created %s' % channel_ref)
src/c/o/CollabQ-HEAD/administration/actions/country_channels.py CollabQ(Download)
description = 'Group P.O.Box for %s' % channel try: channel_ref = api.channel_create(api_user, nick=nick, channel=channel.title().replace(' ', ''), tags=tags, description=description) except exception.ApiException: logging.info('Channel Exists')
src/c/o/CollabQ-HEAD/common/test/api.py CollabQ(Download)
def setUp(self): super(ApiUnitTestChannels, self).setUp() self.test_channel_nick = '#testchannel@example.com' api.channel_create(api.ROOT, channel=self.test_channel_nick,
def _create_channel_again(): api.channel_create(api.ROOT, channel=self.test_channel_nick, nick=self.popular_nick)
src/j/a/JaikuEngine-HEAD/common/test/api.py JaikuEngine(Download)
def setUp(self): super(ApiUnitTestChannels, self).setUp() self.test_channel_nick = '#testchannel@example.com' api.channel_create(api.ROOT, channel=self.test_channel_nick,
def _create_channel_again(): api.channel_create(api.ROOT, channel=self.test_channel_nick, nick=self.popular_nick)