Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(15) | Call(4) | Derive(0) | Import(11)
src/t/r/trello-0.9.1/trello/__init__.py trello(Download)
from urllib import quote_plus from .actions import Actions from .boards import Boards from .cards import Cards from .checklists import Checklists
def __init__(self, apikey, token=None): self._apikey = apikey self._token = token self.actions = Actions(apikey, token) self.boards = Boards(apikey, token)
src/t/r/trello-py-HEAD/trello/__init__.py trello-py(Download)
from urllib import quote_plus from .actions import Actions from .boards import Boards from .cards import Cards from .checklists import Checklists
def __init__(self, apikey, token=None): self._apikey = apikey self._token = token self.actions = Actions(apikey, token) self.boards = Boards(apikey, token)
src/l/i/libsaas-0.4/libsaas/services/trello/service.py libsaas(Download)
from .cards import Card, Cards from .lists import List, Lists from .boards import Board, Boards from .notifications import Notification from .checklists import Checklist, Checklists
def boards(self): """ Return the resource corresponding to all boards """ return Boards(self)
src/l/i/libsaas-HEAD/libsaas/services/trello/service.py libsaas(Download)
from .cards import Card, Cards from .lists import List, Lists from .boards import Board, Boards from .notifications import Notification from .checklists import Checklist, Checklists
def boards(self): """ Return the resource corresponding to all boards """ return Boards(self)