Code Monkey home page Code Monkey logo

webexteamssdk's Introduction

webexteamssdk

Work with the Webex Teams APIs in native Python!

https://travis-ci.org/CiscoDevNet/webexteamssdk.svg?branch=master https://readthedocs.org/projects/webexteamssdk/badge/?version=latest

Looking for ``ciscosparkapi``? You are in the right place. ciscosparkapi is now webexteamssdk! It still has all of the native and natural Webex Teams Python functionality that you love and now we have made room for even more functionality to be added in the future.

We will maintain the ciscosparkapi package (bug fixes, etc.) in the ciscosparkapi branch of this repository and continue to publish package updates with these fixes to PyPI (through the;nd of 2019). Maintaining the ciscosparkapi package should keep your code and projects up and running while giving you 12+ months to migrate your code to the new webexteamssdk library.

Migration Note: Migrating should be easy. The WebexTeamsAPI class and the Python objects returned by the API calls are nearly identical to their CiscoSparkAPI predecessors. Does the word "nearly" scare you? Here are some specifics:

  • The obvious top-level name change from CiscoSparkAPI to WebexTeamsAPI.
  • WebexTeamsAPI's API structure: method and attribute names are identical.
  • The returned Python objects (now derivatives of an ImmutableData base class) are now immutable; so you can use them in sets and as keys in dictionaries.
  • WebexTeamsAPI converts object attributes that contain data-time strings (like a room's creation date) to Python datetime's (actually a derived class that has been customized to model the Webex Teams data-time format)

There is also some new functionality under the hood that we will document, communicate, and generally make available in the future.


webexteamssdk is a community developed Python library for working with the Webex Teams APIs. Our goal is to make working with Webex Teams in Python a native and natural experience!

from webexteamssdk import WebexTeamsAPI

api = WebexTeamsAPI()

# Find all rooms that have 'webexteamssdk Demo' in their title
all_rooms = api.rooms.list()
demo_rooms = [room for room in all_rooms if 'webexteamssdk Demo' in room.title]

# Delete all of the demo rooms
for room in demo_rooms:
    api.rooms.delete(room.id)

# Create a new demo room
demo_room = api.rooms.create('webexteamssdk Demo')

# Add people to the new demo room
email_addresses = ["[email protected]", "[email protected]"]
for email in email_addresses:
    api.memberships.create(demo_room.id, personEmail=email)

# Post a message to the new room, and upload a file
api.messages.create(demo_room.id, text="Welcome to the room!",
                    files=["https://www.webex.com/content/dam/wbx/us/images/dg-integ/teams_icon.png"])

That's more than 6 Webex Teams API calls in less than 23 lines of code (with comments and whitespace), and likely more than that since webexteamssdk handles pagination for you automatically!

webexteamssdk makes your life better... Learn how!

Features

webexteamssdk does all of this for you:

  • Transparently sources your Webex Teams access token from your local environment
  • Provides and uses default arguments and settings everywhere possible, so you don't have to think about things like API endpoint URLs, HTTP headers and JSON formats
  • Represents all Webex Teams API interactions using native Python tools
    • Authentication and Connection to the Webex Teams Cloud ==> WebexTeamsAPI "connection object"
    • API Calls ==> Hierarchically organized methods underneath the WebexTeamsAPI 'Connection Object'
    • Returned Data Objects ==> Native Python objects
  • Automatic and transparent pagination!
  • Automatic rate-limit handling! (wait|retry)
  • Multipart encoding and uploading of local files
  • Auto-completion in your favorite IDE, descriptive exceptions, and so much more...

Installation

Installing and upgrading webexteamssdk is easy:

Install via PIP

$ pip install webexteamssdk

Upgrading to the latest Version

$ pip install webexteamssdk --upgrade

Documentation

Excellent documentation is now available at: http://webexteamssdk.readthedocs.io

Check out the Quickstart to dive in and begin using webexteamssdk.

Examples

Are you looking for some sample scripts? Check out the examples folder!

Have a good example script you would like to share? Please feel free to contribute!

Release Notes

Please see the releases page for release notes on the incremental functionality and bug fixes incorporated into the published releases.

Questions, Support & Discussion

webexteamssdk is a community developed and community supported project. If you experience any issues using this package, please report them using the issues page.

Please join the Python Webex Teams Devs Webex Teams space to ask questions, join the discussion, and share your projects and creations.

Contribution

webexteamssdk is a community development projects. Feedback, thoughts, ideas, and code contributions are welcome! Please see the Contributing guide for more information.

Copyright (c) 2016-2018 Cisco and/or its affiliates.

webexteamssdk's People

Contributors

cmlccie avatar jbogarin avatar brbester avatar universalsuperbox avatar deepar3292 avatar sardoodledom avatar hpreston avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.