├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bin └── saas ├── doc ├── Makefile ├── basic_example.py ├── conf.py ├── generate_doc.py ├── index.rst ├── mashup_example.py ├── requests_executor.py ├── requirements.rst ├── unicode.rst └── usage.rst ├── libsaas ├── __init__.py ├── executors │ ├── __init__.py │ ├── base.py │ ├── current.py │ ├── requests_executor.py │ ├── test_executor.py │ ├── twisted_executor.py │ └── urllib2_executor.py ├── filters │ ├── __init__.py │ └── auth.py ├── http.py ├── parsers.py ├── port.py ├── scripts │ ├── __init__.py │ └── saas.py ├── services │ ├── __init__.py │ ├── base.py │ ├── basecamp │ │ ├── __init__.py │ │ ├── accesses.py │ │ ├── attachments.py │ │ ├── calendars.py │ │ ├── comments.py │ │ ├── documents.py │ │ ├── events.py │ │ ├── people.py │ │ ├── projects.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── todolists.py │ │ ├── topics.py │ │ └── uploads.py │ ├── bitbucket │ │ ├── __init__.py │ │ ├── changesets.py │ │ ├── emails.py │ │ ├── groups.py │ │ ├── issues.py │ │ ├── links.py │ │ ├── privileges.py │ │ ├── repositories.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── services.py │ │ └── users.py │ ├── bitly │ │ ├── __init__.py │ │ ├── links.py │ │ ├── resource.py │ │ ├── service.py │ │ └── users.py │ ├── cartodb │ │ ├── __init__.py │ │ └── service.py │ ├── compete │ │ ├── __init__.py │ │ ├── resource.py │ │ └── service.py │ ├── desk │ │ ├── __init__.py │ │ ├── cases.py │ │ ├── companies.py │ │ ├── contents.py │ │ ├── customers.py │ │ ├── insights.py │ │ ├── macros.py │ │ ├── resource.py │ │ ├── service.py │ │ └── users.py │ ├── ducksboard │ │ ├── __init__.py │ │ ├── datasource.py │ │ ├── resources.py │ │ └── service.py │ ├── flurry │ │ ├── __init__.py │ │ ├── resource.py │ │ └── service.py │ ├── fullcontact │ │ ├── __init__.py │ │ ├── resource.py │ │ └── service.py │ ├── github │ │ ├── __init__.py │ │ ├── authorizations.py │ │ ├── downloads.py │ │ ├── forks.py │ │ ├── gists.py │ │ ├── hooks.py │ │ ├── issues.py │ │ ├── keys.py │ │ ├── labels.py │ │ ├── members.py │ │ ├── milestones.py │ │ ├── organizations.py │ │ ├── pullrequests.py │ │ ├── releases.py │ │ ├── repocommits.py │ │ ├── repocontents.py │ │ ├── repos.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── teams.py │ │ └── users.py │ ├── googleanalytics │ │ ├── __init__.py │ │ ├── management.py │ │ ├── reporting.py │ │ ├── resources.py │ │ └── service.py │ ├── googlecalendar │ │ ├── __init__.py │ │ ├── acl.py │ │ ├── calendar.py │ │ ├── event.py │ │ ├── resource.py │ │ ├── service.py │ │ └── user.py │ ├── googleoauth2 │ │ ├── __init__.py │ │ └── service.py │ ├── googlespreadsheets │ │ ├── __init__.py │ │ ├── resource.py │ │ └── service.py │ ├── instagram │ │ ├── __init__.py │ │ ├── comments.py │ │ ├── feed.py │ │ ├── geographies.py │ │ ├── likes.py │ │ ├── locations.py │ │ ├── media.py │ │ ├── relationships.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── tags.py │ │ └── users.py │ ├── intercom │ │ ├── __init__.py │ │ ├── resource.py │ │ └── service.py │ ├── mailchimp │ │ ├── __init__.py │ │ └── service.py │ ├── mixpanel │ │ ├── __init__.py │ │ ├── resources.py │ │ └── service.py │ ├── mixrank │ │ ├── __init__.py │ │ ├── ads.py │ │ ├── advertisers.py │ │ ├── keywords.py │ │ ├── publishers.py │ │ └── service.py │ ├── mozscape │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── resources.py │ │ └── service.py │ ├── newrelic │ │ ├── __init__.py │ │ ├── alert_policies.py │ │ ├── application_hosts.py │ │ ├── application_instances.py │ │ ├── applications.py │ │ ├── components.py │ │ ├── key_transactions.py │ │ ├── notification_channels.py │ │ ├── plugins.py │ │ ├── resource.py │ │ ├── servers.py │ │ ├── service.py │ │ └── users.py │ ├── pingdom │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── analysis.py │ │ ├── checks.py │ │ ├── contacts.py │ │ ├── credit.py │ │ ├── probes.py │ │ ├── reference.py │ │ ├── reports.py │ │ ├── resource.py │ │ ├── results.py │ │ ├── servertime.py │ │ ├── service.py │ │ ├── settings.py │ │ ├── single.py │ │ ├── summary.py │ │ └── traceroute.py │ ├── pipedrive │ │ ├── __init__.py │ │ ├── activities.py │ │ ├── currencies.py │ │ ├── deals.py │ │ ├── files.py │ │ ├── filters.py │ │ ├── goals.py │ │ ├── notes.py │ │ ├── organizations.py │ │ ├── persons.py │ │ ├── pipelines.py │ │ ├── products.py │ │ ├── service.py │ │ └── users.py │ ├── recurly │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── adjustments.py │ │ ├── coupons.py │ │ ├── invoices.py │ │ ├── plans.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── subscriptions.py │ │ └── transactions.py │ ├── segmentio │ │ ├── __init__.py │ │ ├── resources.py │ │ └── service.py │ ├── spotify │ │ ├── __init__.py │ │ ├── resources.py │ │ └── service.py │ ├── stripe │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── balance_history.py │ │ ├── charges.py │ │ ├── coupons.py │ │ ├── customers.py │ │ ├── events.py │ │ ├── invoices.py │ │ ├── plans.py │ │ ├── resource.py │ │ ├── service.py │ │ └── tokens.py │ ├── trello │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── boards.py │ │ ├── cards.py │ │ ├── checklists.py │ │ ├── lists.py │ │ ├── members.py │ │ ├── notifications.py │ │ ├── organizations.py │ │ ├── resource.py │ │ └── service.py │ ├── twilio │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── applications.py │ │ ├── calls.py │ │ ├── conferences.py │ │ ├── notifications.py │ │ ├── numbers.py │ │ ├── queues.py │ │ ├── recordings.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── sms.py │ │ └── usage.py │ ├── uservoice │ │ ├── __init__.py │ │ ├── articles.py │ │ ├── categories.py │ │ ├── comments.py │ │ ├── custom_fields.py │ │ ├── faqs.py │ │ ├── flags.py │ │ ├── forums.py │ │ ├── gadgets.py │ │ ├── notes.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── streams.py │ │ ├── subdomains.py │ │ ├── suggestions.py │ │ ├── support_queues.py │ │ ├── tickets.py │ │ ├── topics.py │ │ └── users.py │ ├── youtube │ │ ├── __init__.py │ │ ├── analytics.py │ │ ├── base.py │ │ ├── service.py │ │ └── v3.py │ └── zendesk │ │ ├── __init__.py │ │ ├── resources.py │ │ └── service.py └── xml.py ├── requirements-docs.txt ├── setup.py └── test ├── __init__.py ├── test_basecamp.py ├── test_basic_auth.py ├── test_bitbucket.py ├── test_bitly.py ├── test_cartodb.py ├── test_compete.py ├── test_desk.py ├── test_ducksboard.py ├── test_flurry.py ├── test_fullcontact.py ├── test_github.py ├── test_googleanalytics.py ├── test_googlecalendar.py ├── test_googleoauth2.py ├── test_googlespreadsheets.py ├── test_http.py ├── test_instagram.py ├── test_intercom.py ├── test_libsaas.py ├── test_mailchimp.py ├── test_mixpanel.py ├── test_mixrank.py ├── test_mozscape.py ├── test_newrelic.py ├── test_oauth.py ├── test_parsers.py ├── test_pingdom.py ├── test_pipedrive.py ├── test_recurly.py ├── test_segmentio.py ├── test_spotify.py ├── test_stripe.py ├── test_trello.py ├── test_twilio.py ├── test_uservoice.py ├── test_youtube.py └── test_zendesk.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/README.rst -------------------------------------------------------------------------------- /bin/saas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/bin/saas -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/basic_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/basic_example.py -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/generate_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/generate_doc.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/mashup_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/mashup_example.py -------------------------------------------------------------------------------- /doc/requests_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/requests_executor.py -------------------------------------------------------------------------------- /doc/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/requirements.rst -------------------------------------------------------------------------------- /doc/unicode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/unicode.rst -------------------------------------------------------------------------------- /doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/doc/usage.rst -------------------------------------------------------------------------------- /libsaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/__init__.py -------------------------------------------------------------------------------- /libsaas/executors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/executors/__init__.py -------------------------------------------------------------------------------- /libsaas/executors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/executors/base.py -------------------------------------------------------------------------------- /libsaas/executors/current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/executors/current.py -------------------------------------------------------------------------------- /libsaas/executors/requests_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/executors/requests_executor.py -------------------------------------------------------------------------------- /libsaas/executors/test_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/executors/test_executor.py -------------------------------------------------------------------------------- /libsaas/executors/twisted_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/executors/twisted_executor.py -------------------------------------------------------------------------------- /libsaas/executors/urllib2_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/executors/urllib2_executor.py -------------------------------------------------------------------------------- /libsaas/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsaas/filters/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/filters/auth.py -------------------------------------------------------------------------------- /libsaas/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/http.py -------------------------------------------------------------------------------- /libsaas/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/parsers.py -------------------------------------------------------------------------------- /libsaas/port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/port.py -------------------------------------------------------------------------------- /libsaas/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsaas/scripts/saas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/scripts/saas.py -------------------------------------------------------------------------------- /libsaas/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsaas/services/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/base.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Basecamp 2 | 3 | -------------------------------------------------------------------------------- /libsaas/services/basecamp/accesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/accesses.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/attachments.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/calendars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/calendars.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/comments.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/documents.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/events.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/people.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/projects.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/resource.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/service.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/todolists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/todolists.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/topics.py -------------------------------------------------------------------------------- /libsaas/services/basecamp/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/basecamp/uploads.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/__init__.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/changesets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/changesets.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/emails.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/groups.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/issues.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/links.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/privileges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/privileges.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/repositories.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/resource.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/service.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/services.py -------------------------------------------------------------------------------- /libsaas/services/bitbucket/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitbucket/users.py -------------------------------------------------------------------------------- /libsaas/services/bitly/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Bitly 2 | 3 | -------------------------------------------------------------------------------- /libsaas/services/bitly/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitly/links.py -------------------------------------------------------------------------------- /libsaas/services/bitly/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitly/resource.py -------------------------------------------------------------------------------- /libsaas/services/bitly/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitly/service.py -------------------------------------------------------------------------------- /libsaas/services/bitly/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/bitly/users.py -------------------------------------------------------------------------------- /libsaas/services/cartodb/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import CartoDB 2 | -------------------------------------------------------------------------------- /libsaas/services/cartodb/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/cartodb/service.py -------------------------------------------------------------------------------- /libsaas/services/compete/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Compete 2 | -------------------------------------------------------------------------------- /libsaas/services/compete/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/compete/resource.py -------------------------------------------------------------------------------- /libsaas/services/compete/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/compete/service.py -------------------------------------------------------------------------------- /libsaas/services/desk/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Desk 2 | -------------------------------------------------------------------------------- /libsaas/services/desk/cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/cases.py -------------------------------------------------------------------------------- /libsaas/services/desk/companies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/companies.py -------------------------------------------------------------------------------- /libsaas/services/desk/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/contents.py -------------------------------------------------------------------------------- /libsaas/services/desk/customers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/customers.py -------------------------------------------------------------------------------- /libsaas/services/desk/insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/insights.py -------------------------------------------------------------------------------- /libsaas/services/desk/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/macros.py -------------------------------------------------------------------------------- /libsaas/services/desk/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/resource.py -------------------------------------------------------------------------------- /libsaas/services/desk/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/service.py -------------------------------------------------------------------------------- /libsaas/services/desk/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/desk/users.py -------------------------------------------------------------------------------- /libsaas/services/ducksboard/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Ducksboard 2 | -------------------------------------------------------------------------------- /libsaas/services/ducksboard/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/ducksboard/datasource.py -------------------------------------------------------------------------------- /libsaas/services/ducksboard/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/ducksboard/resources.py -------------------------------------------------------------------------------- /libsaas/services/ducksboard/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/ducksboard/service.py -------------------------------------------------------------------------------- /libsaas/services/flurry/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Flurry 2 | -------------------------------------------------------------------------------- /libsaas/services/flurry/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/flurry/resource.py -------------------------------------------------------------------------------- /libsaas/services/flurry/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/flurry/service.py -------------------------------------------------------------------------------- /libsaas/services/fullcontact/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Fullcontact 2 | -------------------------------------------------------------------------------- /libsaas/services/fullcontact/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/fullcontact/resource.py -------------------------------------------------------------------------------- /libsaas/services/fullcontact/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/fullcontact/service.py -------------------------------------------------------------------------------- /libsaas/services/github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/__init__.py -------------------------------------------------------------------------------- /libsaas/services/github/authorizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/authorizations.py -------------------------------------------------------------------------------- /libsaas/services/github/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/downloads.py -------------------------------------------------------------------------------- /libsaas/services/github/forks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/forks.py -------------------------------------------------------------------------------- /libsaas/services/github/gists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/gists.py -------------------------------------------------------------------------------- /libsaas/services/github/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/hooks.py -------------------------------------------------------------------------------- /libsaas/services/github/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/issues.py -------------------------------------------------------------------------------- /libsaas/services/github/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/keys.py -------------------------------------------------------------------------------- /libsaas/services/github/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/labels.py -------------------------------------------------------------------------------- /libsaas/services/github/members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/members.py -------------------------------------------------------------------------------- /libsaas/services/github/milestones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/milestones.py -------------------------------------------------------------------------------- /libsaas/services/github/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/organizations.py -------------------------------------------------------------------------------- /libsaas/services/github/pullrequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/pullrequests.py -------------------------------------------------------------------------------- /libsaas/services/github/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/releases.py -------------------------------------------------------------------------------- /libsaas/services/github/repocommits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/repocommits.py -------------------------------------------------------------------------------- /libsaas/services/github/repocontents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/repocontents.py -------------------------------------------------------------------------------- /libsaas/services/github/repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/repos.py -------------------------------------------------------------------------------- /libsaas/services/github/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/resource.py -------------------------------------------------------------------------------- /libsaas/services/github/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/service.py -------------------------------------------------------------------------------- /libsaas/services/github/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/teams.py -------------------------------------------------------------------------------- /libsaas/services/github/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/github/users.py -------------------------------------------------------------------------------- /libsaas/services/googleanalytics/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import GoogleAnalytics 2 | 3 | -------------------------------------------------------------------------------- /libsaas/services/googleanalytics/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googleanalytics/management.py -------------------------------------------------------------------------------- /libsaas/services/googleanalytics/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googleanalytics/reporting.py -------------------------------------------------------------------------------- /libsaas/services/googleanalytics/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googleanalytics/resources.py -------------------------------------------------------------------------------- /libsaas/services/googleanalytics/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googleanalytics/service.py -------------------------------------------------------------------------------- /libsaas/services/googlecalendar/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import GoogleCalendar 2 | -------------------------------------------------------------------------------- /libsaas/services/googlecalendar/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googlecalendar/acl.py -------------------------------------------------------------------------------- /libsaas/services/googlecalendar/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googlecalendar/calendar.py -------------------------------------------------------------------------------- /libsaas/services/googlecalendar/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googlecalendar/event.py -------------------------------------------------------------------------------- /libsaas/services/googlecalendar/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googlecalendar/resource.py -------------------------------------------------------------------------------- /libsaas/services/googlecalendar/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googlecalendar/service.py -------------------------------------------------------------------------------- /libsaas/services/googlecalendar/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googlecalendar/user.py -------------------------------------------------------------------------------- /libsaas/services/googleoauth2/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import GoogleOAuth2 2 | -------------------------------------------------------------------------------- /libsaas/services/googleoauth2/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googleoauth2/service.py -------------------------------------------------------------------------------- /libsaas/services/googlespreadsheets/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import GoogleSpreadsheets 2 | -------------------------------------------------------------------------------- /libsaas/services/googlespreadsheets/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googlespreadsheets/resource.py -------------------------------------------------------------------------------- /libsaas/services/googlespreadsheets/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/googlespreadsheets/service.py -------------------------------------------------------------------------------- /libsaas/services/instagram/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Instagram 2 | -------------------------------------------------------------------------------- /libsaas/services/instagram/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/comments.py -------------------------------------------------------------------------------- /libsaas/services/instagram/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/feed.py -------------------------------------------------------------------------------- /libsaas/services/instagram/geographies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/geographies.py -------------------------------------------------------------------------------- /libsaas/services/instagram/likes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/likes.py -------------------------------------------------------------------------------- /libsaas/services/instagram/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/locations.py -------------------------------------------------------------------------------- /libsaas/services/instagram/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/media.py -------------------------------------------------------------------------------- /libsaas/services/instagram/relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/relationships.py -------------------------------------------------------------------------------- /libsaas/services/instagram/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/resource.py -------------------------------------------------------------------------------- /libsaas/services/instagram/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/service.py -------------------------------------------------------------------------------- /libsaas/services/instagram/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/tags.py -------------------------------------------------------------------------------- /libsaas/services/instagram/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/instagram/users.py -------------------------------------------------------------------------------- /libsaas/services/intercom/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Intercom 2 | -------------------------------------------------------------------------------- /libsaas/services/intercom/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/intercom/resource.py -------------------------------------------------------------------------------- /libsaas/services/intercom/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/intercom/service.py -------------------------------------------------------------------------------- /libsaas/services/mailchimp/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Mailchimp 2 | -------------------------------------------------------------------------------- /libsaas/services/mailchimp/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mailchimp/service.py -------------------------------------------------------------------------------- /libsaas/services/mixpanel/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Mixpanel, InsufficientSettings 2 | -------------------------------------------------------------------------------- /libsaas/services/mixpanel/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mixpanel/resources.py -------------------------------------------------------------------------------- /libsaas/services/mixpanel/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mixpanel/service.py -------------------------------------------------------------------------------- /libsaas/services/mixrank/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import MixRank 2 | -------------------------------------------------------------------------------- /libsaas/services/mixrank/ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mixrank/ads.py -------------------------------------------------------------------------------- /libsaas/services/mixrank/advertisers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mixrank/advertisers.py -------------------------------------------------------------------------------- /libsaas/services/mixrank/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mixrank/keywords.py -------------------------------------------------------------------------------- /libsaas/services/mixrank/publishers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mixrank/publishers.py -------------------------------------------------------------------------------- /libsaas/services/mixrank/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mixrank/service.py -------------------------------------------------------------------------------- /libsaas/services/mozscape/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Mozscape 2 | -------------------------------------------------------------------------------- /libsaas/services/mozscape/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mozscape/constants.py -------------------------------------------------------------------------------- /libsaas/services/mozscape/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mozscape/resources.py -------------------------------------------------------------------------------- /libsaas/services/mozscape/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/mozscape/service.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/__init__.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/alert_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/alert_policies.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/application_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/application_hosts.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/application_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/application_instances.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/applications.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/components.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/key_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/key_transactions.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/notification_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/notification_channels.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/plugins.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/resource.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/servers.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/service.py -------------------------------------------------------------------------------- /libsaas/services/newrelic/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/newrelic/users.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Pingdom 2 | -------------------------------------------------------------------------------- /libsaas/services/pingdom/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/actions.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/analysis.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/checks.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/contacts.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/credit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/credit.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/probes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/probes.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/reference.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/reports.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/resource.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/results.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/servertime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/servertime.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/service.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/settings.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/single.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/summary.py -------------------------------------------------------------------------------- /libsaas/services/pingdom/traceroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pingdom/traceroute.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Pipedrive 2 | -------------------------------------------------------------------------------- /libsaas/services/pipedrive/activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/activities.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/currencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/currencies.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/deals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/deals.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/files.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/filters.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/goals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/goals.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/notes.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/organizations.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/persons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/persons.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/pipelines.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/products.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/service.py -------------------------------------------------------------------------------- /libsaas/services/pipedrive/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/pipedrive/users.py -------------------------------------------------------------------------------- /libsaas/services/recurly/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Recurly 2 | -------------------------------------------------------------------------------- /libsaas/services/recurly/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/accounts.py -------------------------------------------------------------------------------- /libsaas/services/recurly/adjustments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/adjustments.py -------------------------------------------------------------------------------- /libsaas/services/recurly/coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/coupons.py -------------------------------------------------------------------------------- /libsaas/services/recurly/invoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/invoices.py -------------------------------------------------------------------------------- /libsaas/services/recurly/plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/plans.py -------------------------------------------------------------------------------- /libsaas/services/recurly/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/resource.py -------------------------------------------------------------------------------- /libsaas/services/recurly/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/service.py -------------------------------------------------------------------------------- /libsaas/services/recurly/subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/subscriptions.py -------------------------------------------------------------------------------- /libsaas/services/recurly/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/recurly/transactions.py -------------------------------------------------------------------------------- /libsaas/services/segmentio/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import SegmentIO 2 | 3 | -------------------------------------------------------------------------------- /libsaas/services/segmentio/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/segmentio/resources.py -------------------------------------------------------------------------------- /libsaas/services/segmentio/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/segmentio/service.py -------------------------------------------------------------------------------- /libsaas/services/spotify/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Spotify 2 | -------------------------------------------------------------------------------- /libsaas/services/spotify/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/spotify/resources.py -------------------------------------------------------------------------------- /libsaas/services/spotify/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/spotify/service.py -------------------------------------------------------------------------------- /libsaas/services/stripe/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Stripe 2 | -------------------------------------------------------------------------------- /libsaas/services/stripe/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/accounts.py -------------------------------------------------------------------------------- /libsaas/services/stripe/balance_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/balance_history.py -------------------------------------------------------------------------------- /libsaas/services/stripe/charges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/charges.py -------------------------------------------------------------------------------- /libsaas/services/stripe/coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/coupons.py -------------------------------------------------------------------------------- /libsaas/services/stripe/customers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/customers.py -------------------------------------------------------------------------------- /libsaas/services/stripe/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/events.py -------------------------------------------------------------------------------- /libsaas/services/stripe/invoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/invoices.py -------------------------------------------------------------------------------- /libsaas/services/stripe/plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/plans.py -------------------------------------------------------------------------------- /libsaas/services/stripe/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/resource.py -------------------------------------------------------------------------------- /libsaas/services/stripe/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/service.py -------------------------------------------------------------------------------- /libsaas/services/stripe/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/stripe/tokens.py -------------------------------------------------------------------------------- /libsaas/services/trello/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Trello 2 | -------------------------------------------------------------------------------- /libsaas/services/trello/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/actions.py -------------------------------------------------------------------------------- /libsaas/services/trello/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/boards.py -------------------------------------------------------------------------------- /libsaas/services/trello/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/cards.py -------------------------------------------------------------------------------- /libsaas/services/trello/checklists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/checklists.py -------------------------------------------------------------------------------- /libsaas/services/trello/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/lists.py -------------------------------------------------------------------------------- /libsaas/services/trello/members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/members.py -------------------------------------------------------------------------------- /libsaas/services/trello/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/notifications.py -------------------------------------------------------------------------------- /libsaas/services/trello/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/organizations.py -------------------------------------------------------------------------------- /libsaas/services/trello/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/resource.py -------------------------------------------------------------------------------- /libsaas/services/trello/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/trello/service.py -------------------------------------------------------------------------------- /libsaas/services/twilio/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Twilio 2 | -------------------------------------------------------------------------------- /libsaas/services/twilio/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/accounts.py -------------------------------------------------------------------------------- /libsaas/services/twilio/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/applications.py -------------------------------------------------------------------------------- /libsaas/services/twilio/calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/calls.py -------------------------------------------------------------------------------- /libsaas/services/twilio/conferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/conferences.py -------------------------------------------------------------------------------- /libsaas/services/twilio/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/notifications.py -------------------------------------------------------------------------------- /libsaas/services/twilio/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/numbers.py -------------------------------------------------------------------------------- /libsaas/services/twilio/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/queues.py -------------------------------------------------------------------------------- /libsaas/services/twilio/recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/recordings.py -------------------------------------------------------------------------------- /libsaas/services/twilio/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/resource.py -------------------------------------------------------------------------------- /libsaas/services/twilio/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/service.py -------------------------------------------------------------------------------- /libsaas/services/twilio/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/sms.py -------------------------------------------------------------------------------- /libsaas/services/twilio/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/twilio/usage.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/__init__.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/articles.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/categories.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/comments.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/custom_fields.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/faqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/faqs.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/flags.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/forums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/forums.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/gadgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/gadgets.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/notes.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/resource.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/service.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/streams.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/subdomains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/subdomains.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/suggestions.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/support_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/support_queues.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/tickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/tickets.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/topics.py -------------------------------------------------------------------------------- /libsaas/services/uservoice/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/uservoice/users.py -------------------------------------------------------------------------------- /libsaas/services/youtube/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import YouTube, Analytics 2 | -------------------------------------------------------------------------------- /libsaas/services/youtube/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/youtube/analytics.py -------------------------------------------------------------------------------- /libsaas/services/youtube/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/youtube/base.py -------------------------------------------------------------------------------- /libsaas/services/youtube/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/youtube/service.py -------------------------------------------------------------------------------- /libsaas/services/youtube/v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/youtube/v3.py -------------------------------------------------------------------------------- /libsaas/services/zendesk/__init__.py: -------------------------------------------------------------------------------- 1 | from .service import Zendesk 2 | -------------------------------------------------------------------------------- /libsaas/services/zendesk/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/zendesk/resources.py -------------------------------------------------------------------------------- /libsaas/services/zendesk/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/services/zendesk/service.py -------------------------------------------------------------------------------- /libsaas/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/libsaas/xml.py -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- 1 | decorator 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_basecamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_basecamp.py -------------------------------------------------------------------------------- /test/test_basic_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_basic_auth.py -------------------------------------------------------------------------------- /test/test_bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_bitbucket.py -------------------------------------------------------------------------------- /test/test_bitly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_bitly.py -------------------------------------------------------------------------------- /test/test_cartodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_cartodb.py -------------------------------------------------------------------------------- /test/test_compete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_compete.py -------------------------------------------------------------------------------- /test/test_desk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_desk.py -------------------------------------------------------------------------------- /test/test_ducksboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_ducksboard.py -------------------------------------------------------------------------------- /test/test_flurry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_flurry.py -------------------------------------------------------------------------------- /test/test_fullcontact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_fullcontact.py -------------------------------------------------------------------------------- /test/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_github.py -------------------------------------------------------------------------------- /test/test_googleanalytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_googleanalytics.py -------------------------------------------------------------------------------- /test/test_googlecalendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_googlecalendar.py -------------------------------------------------------------------------------- /test/test_googleoauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_googleoauth2.py -------------------------------------------------------------------------------- /test/test_googlespreadsheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_googlespreadsheets.py -------------------------------------------------------------------------------- /test/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_http.py -------------------------------------------------------------------------------- /test/test_instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_instagram.py -------------------------------------------------------------------------------- /test/test_intercom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_intercom.py -------------------------------------------------------------------------------- /test/test_libsaas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_libsaas.py -------------------------------------------------------------------------------- /test/test_mailchimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_mailchimp.py -------------------------------------------------------------------------------- /test/test_mixpanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_mixpanel.py -------------------------------------------------------------------------------- /test/test_mixrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_mixrank.py -------------------------------------------------------------------------------- /test/test_mozscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_mozscape.py -------------------------------------------------------------------------------- /test/test_newrelic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_newrelic.py -------------------------------------------------------------------------------- /test/test_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_oauth.py -------------------------------------------------------------------------------- /test/test_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_parsers.py -------------------------------------------------------------------------------- /test/test_pingdom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_pingdom.py -------------------------------------------------------------------------------- /test/test_pipedrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_pipedrive.py -------------------------------------------------------------------------------- /test/test_recurly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_recurly.py -------------------------------------------------------------------------------- /test/test_segmentio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_segmentio.py -------------------------------------------------------------------------------- /test/test_spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_spotify.py -------------------------------------------------------------------------------- /test/test_stripe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_stripe.py -------------------------------------------------------------------------------- /test/test_trello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_trello.py -------------------------------------------------------------------------------- /test/test_twilio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_twilio.py -------------------------------------------------------------------------------- /test/test_uservoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_uservoice.py -------------------------------------------------------------------------------- /test/test_youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_youtube.py -------------------------------------------------------------------------------- /test/test_zendesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducksboard/libsaas/HEAD/test/test_zendesk.py --------------------------------------------------------------------------------