• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ringcentral / ringcentral-python / 139

pending completion
139

push

travis-ci-com

DaKingKong
increase version number

550 of 615 relevant lines covered (89.43%)

1.79 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

92.31
/ringcentral/sdk.py
1
#!/usr/bin/env python
2
# encoding: utf-8
3

4
from .platform import Platform
2✔
5
from .subscription import Subscription
2✔
6
from .http import Client, MultipartBuilder
2✔
7

8

9
class SDK:
2✔
10
    def __init__(self, key, secret, server, name='', version='', redirect_uri=None, known_prefixes=None):
2✔
11
        self._client = Client()
2✔
12
        self._platform = Platform(self._client, key, secret, server, name, version, redirect_uri, known_prefixes)
2✔
13

14
    def platform(self):
2✔
15
        return self._platform
2✔
16

17
    def create_subscription(self):
2✔
18
        return Subscription(self._platform)
2✔
19

20
    def create_multipart_builder(self):
2✔
21
        return MultipartBuilder(self._platform)
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc