11=============
2- webexteamsdk
2+ webexteamssdk
33=============
44
55*Simple, lightweight, scalable Python API wrapper for the Webex Teams APIs *
66
77.. image :: https://img.shields.io/badge/license-MIT-blue.svg
8- :target: https://github.com/CiscoDevNet/webexteamsdk /blob/master/LICENSE
9- .. image :: https://img.shields.io/pypi/v/webexteamsdk .svg
10- :target: https://pypi.python.org/pypi/webexteamsdk
11- .. image :: https://travis-ci.org/CiscoDevNet/webexteamsdk .svg?branch=master
12- :target: https://travis-ci.org/CiscoDevNet/webexteamsdk
13- .. image :: https://readthedocs.org/projects/webexteamsdk /badge/?version=latest
14- :target: http://webexteamsdk .readthedocs.io/en/latest/?badge=latest
8+ :target: https://github.com/CiscoDevNet/webexteamssdk /blob/master/LICENSE
9+ .. image :: https://img.shields.io/pypi/v/webexteamssdk .svg
10+ :target: https://pypi.python.org/pypi/webexteamssdk
11+ .. image :: https://travis-ci.org/CiscoDevNet/webexteamssdk .svg?branch=master
12+ :target: https://travis-ci.org/CiscoDevNet/webexteamssdk
13+ .. image :: https://readthedocs.org/projects/webexteamssdk /badge/?version=latest
14+ :target: http://webexteamssdk .readthedocs.io/en/latest/?badge=latest
1515
1616-------------------------------------------------------------------------------
1717
18- **webexteamsdk ** is a *community developed * Pythonic wrapping of the Cisco
18+ **webexteamssdk ** is a *community developed * Pythonic wrapping of the Cisco
1919Spark APIs, which makes working with Webex Teams in Python a *native * and
2020*natural * experience!
2121
2222.. code-block :: python
2323
24- from webexteamsdk import CiscoSparkAPI
24+ from webexteamssdk import CiscoSparkAPI
2525
2626 api = CiscoSparkAPI()
2727
28- # Find all rooms that have 'webexteamsdk Demo' in their title
28+ # Find all rooms that have 'webexteamssdk Demo' in their title
2929 all_rooms = api.rooms.list()
30- demo_rooms = [room for room in all_rooms if ' webexteamsdk Demo' in room.title]
30+ demo_rooms = [room for room in all_rooms if ' webexteamssdk Demo' in room.title]
3131
3232 # Delete all of the demo rooms
3333 for room in demo_rooms:
3434 api.rooms.delete(room.id)
3535
3636 # Create a new demo room
37- demo_room = api.rooms.create(' webexteamsdk Demo' )
37+ demo_room = api.rooms.create(' webexteamssdk Demo' )
3838
3939 # Add people to the new demo room
4040 email_addresses = [" test01@cmlccie.com" , " test02@cmlccie.com" ]
@@ -47,18 +47,18 @@ Spark APIs, which makes working with Webex Teams in Python a *native* and
4747
4848
4949 That's more than 6 Spark API calls in less than 23 lines of code (with comments
50- and whitespace), and likely more than that since webexteamsdk handles
50+ and whitespace), and likely more than that since webexteamssdk handles
5151pagination _ for you automatically!
5252
53- webexteamsdk makes your life better... `Learn how! `__
53+ webexteamssdk makes your life better... `Learn how! `__
5454
5555__ Introduction _
5656
5757
5858Features
5959--------
6060
61- webexteamsdk does all of this for you...
61+ webexteamssdk does all of this for you...
6262
6363+ Transparently sources your Spark credentials from your local environment
6464
@@ -89,28 +89,28 @@ webexteamsdk does all of this for you...
8989Installation
9090------------
9191
92- Installing and upgrading webexteamsdk is easy:
92+ Installing and upgrading webexteamssdk is easy:
9393
9494**Install via PIP **
9595
9696.. code-block :: bash
9797
98- $ pip install webexteamsdk
98+ $ pip install webexteamssdk
9999
100100 **Upgrading to the latest Version **
101101
102102.. code-block :: bash
103103
104- $ pip install webexteamsdk --upgrade
104+ $ pip install webexteamssdk --upgrade
105105
106106
107107 Documentation
108108-------------
109109
110110**Excellent documentation is now available at: **
111- http://webexteamsdk .readthedocs.io
111+ http://webexteamssdk .readthedocs.io
112112
113- Check out the Quickstart _ to dive in and begin using webexteamsdk .
113+ Check out the Quickstart _ to dive in and begin using webexteamssdk .
114114
115115
116116Examples
@@ -150,7 +150,7 @@ __ Community_
150150Contribution
151151------------
152152
153- webexteamsdk _ and it's sister project ciscosparksdk _ are community
153+ webexteamssdk _ and it's sister project ciscosparksdk _ are community
154154development projects. Feedback, thoughts, ideas and code contributions are
155155most welcome!
156156
@@ -175,18 +175,18 @@ Please use the issues_ log.
175175*Copyright (c) 2016-2018 Cisco and/or its affiliates. *
176176
177177
178- .. _Introduction : http://webexteamsdk .readthedocs.io/en/latest/user/intro.html
178+ .. _Introduction : http://webexteamssdk .readthedocs.io/en/latest/user/intro.html
179179.. _pagination : https://developer.ciscospark.com/pagination.html
180- .. _ webexteamsdk .readthedocs.io : https://webexteamsdk .readthedocs.io
181- .. _Quickstart : http://webexteamsdk .readthedocs.io/en/latest/user/quickstart.html
182- .. _examples : https://github.com/CiscoDevNet/webexteamsdk /tree/master/examples
183- .. _ webexteamsdk : https://github.com/CiscoDevNet/webexteamsdk
180+ .. _ webexteamssdk .readthedocs.io : https://webexteamssdk .readthedocs.io
181+ .. _Quickstart : http://webexteamssdk .readthedocs.io/en/latest/user/quickstart.html
182+ .. _examples : https://github.com/CiscoDevNet/webexteamssdk /tree/master/examples
183+ .. _ webexteamssdk : https://github.com/CiscoDevNet/webexteamssdk
184184.. _ciscosparksdk : https://github.com/CiscoDevNet/ciscosparksdk
185- .. _issues : https://github.com/CiscoDevNet/webexteamsdk /issues
185+ .. _issues : https://github.com/CiscoDevNet/webexteamssdk /issues
186186.. _Community : https://eurl.io/#HkMxO-_9-
187- .. _projects : https://github.com/CiscoDevNet/webexteamsdk /projects
188- .. _pull requests : https://github.com/CiscoDevNet/webexteamsdk /pulls
189- .. _releases : https://github.com/CiscoDevNet/webexteamsdk /releases
187+ .. _projects : https://github.com/CiscoDevNet/webexteamssdk /projects
188+ .. _pull requests : https://github.com/CiscoDevNet/webexteamssdk /pulls
189+ .. _releases : https://github.com/CiscoDevNet/webexteamssdk /releases
190190.. _charter : https://github.com/CiscoDevNet/spark-python-packages-team/blob/master/Charter.md
191- .. _the repository : webexteamsdk _
191+ .. _the repository : webexteamssdk _
192192.. _pull request : `pull requests `_
0 commit comments