Skip to content

Commit d598192

Browse files
committed
More package name changes
1 parent e415fc8 commit d598192

17 files changed

+128
-128
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ignore = E402,F401,F403,F405,W503
33
exclude =
44
.git,
55
__pycache__,
6-
webexteamsdk/_version.py,
6+
webexteamssdk/_version.py,
77
docs/source/conf.py,
88
build,
99
dist,

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
webexteamsdk/_version.py export-subst
1+
webexteamssdk/_version.py export-subst

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Contribution
22
------------
33

4-
[webexteamsdk](https://github.com/CiscoDevNet/webexteamsdk) is a community
4+
[webexteamssdk](https://github.com/CiscoDevNet/webexteamssdk) is a community
55
development project. Feedback, thoughts, ideas and code contributions are
66
most welcome!
77

88
**How to contributed feedback, issues, thoughts and ideas...**
99

10-
Please use the [issues](https://github.com/CiscoDevNet/webexteamsdk/issues)
10+
Please use the [issues](https://github.com/CiscoDevNet/webexteamssdk/issues)
1111
log. to report issues or post ideas for enhancement or discussion.
1212

1313
**Interested in contributing code?**

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include LICENSE.txt
22
include README.rst
33
include versioneer.py
4-
include webexteamsdk/_version.py
4+
include webexteamssdk/_version.py

README.rst

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
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
1919
Spark 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 = ["[email protected]", "[email protected]"]
@@ -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
5151
pagination_ 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

5858
Features
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...
8989
Installation
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

116116
Examples
@@ -150,7 +150,7 @@ __ Community_
150150
Contribution
151151
------------
152152

153-
webexteamsdk_ and it's sister project ciscosparksdk_ are community
153+
webexteamssdk_ and it's sister project ciscosparksdk_ are community
154154
development projects. Feedback, thoughts, ideas and code contributions are
155155
most 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`_

docs/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ qthelp:
9191
@echo
9292
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
9393
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
94-
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/webexteamsdk.qhcp"
94+
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/webexteamssdk.qhcp"
9595
@echo "To view the help file:"
96-
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/webexteamsdk.qhc"
96+
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/webexteamssdk.qhc"
9797

9898
.PHONY: applehelp
9999
applehelp:
@@ -110,8 +110,8 @@ devhelp:
110110
@echo
111111
@echo "Build finished."
112112
@echo "To view the help file:"
113-
@echo "# mkdir -p $$HOME/.local/share/devhelp/webexteamsdk"
114-
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/webexteamsdk"
113+
@echo "# mkdir -p $$HOME/.local/share/devhelp/webexteamssdk"
114+
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/webexteamssdk"
115115
@echo "# devhelp"
116116

117117
.PHONY: epub

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
# html_search_scorer = 'scorer.js'
171171

172172
# Output file base name for HTML help builder.
173-
htmlhelp_basename = 'webexteamsdkdoc'
173+
htmlhelp_basename = 'webexteamssdkdoc'
174174

175175

176176

docs/index.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
.. currentmodule:: webexteamsdk
1+
.. currentmodule:: webexteamssdk
22

33
=============
4-
webexteamsdk
4+
webexteamssdk
55
=============
66

77
*Simple, lightweight, scalable Python API wrapper for the Webex Teams APIs*
88

99
-------------------------------------------------------------------------------
1010

11-
Welcome to the docs! webexteamsdk is a *community developed* Pythonic
11+
Welcome to the docs! webexteamssdk is a *community developed* Pythonic
1212
wrapping of the Webex Teams APIs. The package represents all of the Cisco
1313
Spark API interactions via native Python tools. Making working with the Cisco
1414
Spark APIs in Python a *native* and *natural* experience.
1515

16-
**webexteamsdk helps you get things done faster.** We take
16+
**webexteamssdk helps you get things done faster.** We take
1717
care of the API semantics, and you can focus on writing your code.
1818

19-
With webexteamsdk, you can easily:
19+
With webexteamssdk, you can easily:
2020

2121
* Interact with the Webex Teams APIs in an interactive Python session
2222

@@ -25,7 +25,7 @@ With webexteamsdk, you can easily:
2525
* Leverage the API wrapper to cleanly add Spark functionality to your project
2626
without having to write the boilerplate code for working with the Spark APIs
2727

28-
To *dive in* and see how webexteamsdk makes your life better, check out the
28+
To *dive in* and see how webexteamssdk makes your life better, check out the
2929
:ref:`Quickstart`!
3030

3131
The User Guide
@@ -44,7 +44,7 @@ The Community Guide
4444
===================
4545

4646
Community developer docs are *coming soon*. For now, please see the
47-
contribution_ instructions on the webexteamsdk_ GitHub page to get started.
47+
contribution_ instructions on the webexteamssdk_ GitHub page to get started.
4848

4949

5050
General Information about the Webex Teams Service
@@ -73,5 +73,5 @@ is easy. Signup for a `free account`_ and then head over to the
7373
.. _free account: `Webex Teams`
7474
.. _Webex Teams: https://www.ciscospark.com/
7575
.. _Spark for Developers: https://developer.ciscospark.com/
76-
.. _contribution: https://github.com/CiscoDevNet/webexteamsdk#contribution
77-
.. _webexteamsdk: https://github.com/CiscoDevNet/webexteamsdk
76+
.. _contribution: https://github.com/CiscoDevNet/webexteamssdk#contribution
77+
.. _webexteamssdk: https://github.com/CiscoDevNet/webexteamssdk

docs/installation.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Installation
1010
PIP Install
1111
-----------
1212

13-
webexteamsdk is available via PIP and the `Python Package Index (PyPI)`_. To
14-
install webexteamsdk, simply run this command from your terminal of choice:
13+
webexteamssdk is available via PIP and the `Python Package Index (PyPI)`_. To
14+
install webexteamssdk, simply run this command from your terminal of choice:
1515

1616
.. code-block:: bash
1717
18-
$ pip install webexteamsdk
18+
$ pip install webexteamssdk
1919
20-
The webexteamsdk package is distributed as a *source distribution* (no
20+
The webexteamssdk package is distributed as a *source distribution* (no
2121
binaries).
2222

2323

@@ -31,24 +31,24 @@ PIP:
3131

3232
.. code-block:: bash
3333
34-
$ pip install webexteamsdk --upgrade
34+
$ pip install webexteamssdk --upgrade
3535
3636
3737
.. _Source Code:
3838

3939
Get the Source Code
4040
-------------------
4141

42-
webexteamsdk is developed on GitHub. If you like and use this package,
42+
webexteamssdk is developed on GitHub. If you like and use this package,
4343
please take a few seconds to Star the package on
44-
the `CiscoDevNet/webexteamsdk`_ GitHub page. Your feedback and
44+
the `CiscoDevNet/webexteamssdk`_ GitHub page. Your feedback and
4545
contributions are always welcome.
4646

4747
Use the following command to download the source code (GIT repository):
4848

4949
.. code-block:: bash
5050
51-
$ git clone https://github.com/CiscoDevNet/webexteamsdk.git
51+
$ git clone https://github.com/CiscoDevNet/webexteamssdk.git
5252
5353
You can then install the package to your environment, with the following
5454
command:
@@ -61,5 +61,5 @@ command:
6161
*Copyright (c) 2016-2018 Cisco and/or its affiliates.*
6262

6363

64-
.. _Python Package Index (PyPI): https://pypi.python.org/pypi/webexteamsdk
65-
.. _CiscoDevNet/webexteamsdk: https://github.com/CiscoDevNet/webexteamsdk
64+
.. _Python Package Index (PyPI): https://pypi.python.org/pypi/webexteamssdk
65+
.. _CiscoDevNet/webexteamssdk: https://github.com/CiscoDevNet/webexteamssdk

docs/make.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ if "%1" == "qthelp" (
129129
echo.
130130
echo.Build finished; now you can run "qcollectiongenerator" with the ^
131131
.qhcp project file in %BUILDDIR%/qthelp, like this:
132-
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\webexteamsdk.qhcp
132+
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\webexteamssdk.qhcp
133133
echo.To view the help file:
134-
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\webexteamsdk.ghc
134+
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\webexteamssdk.ghc
135135
goto end
136136
)
137137

0 commit comments

Comments
 (0)