Skip to content
This repository was archived by the owner on May 3, 2021. It is now read-only.

Commit 78cc435

Browse files
authored
Update README.md
1 parent 965f97a commit 78cc435

1 file changed

Lines changed: 181 additions & 3 deletions

File tree

README.md

Lines changed: 181 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ Objects such as the `Feature`, which can be thought of a micro service within yo
99

1010

1111
## Objects and wrappers for more effective and easier development
12-
1312
CommandIntegrator exists for one reason: To make development of language-driven apps easier. Decorator wrappers for automated logging, scheduling of function execution, caching objects and API DAO's are a few that are included in the package.
1413

1514
You can build the backend of your virtual assistant / chatbot with the tools and structures of CommandIntegrator and use it in your chatbot for whichever platform you want to use. CommandIntegrator is platform independent and can be used even with a simple command-line app as demonstrated below.
1615

1716

1817
## Example
19-
2018
Here's a short example of how to create a virtual assistant that tells you what time it is.
2119
For a more comprehensive example, please read the `demo_feature.py` file [here](https://github.com/dotchetter/CommandIntegrator/blob/master/examples/demo_feature.py)
2220

@@ -56,4 +54,184 @@ if __name__ == '__main__':
5654
print("\n-> Response received:\n")
5755
pprint(f"\t{response.__dict__}")
5856
print("\n-> Bot said: ", response.response(), "\n")
59-
```
57+
```
58+
### Open source noitce
59+
pytz - https://pypi.org/project/pytz/ - MIT license
60+
pathliv - https://pypi.org/project/pathlib2/ - MIT license
61+
requests - https://pypi.org/project/requests/ - Apache 2.0 license
62+
63+
64+
Apache License
65+
Version 2.0, January 2004
66+
http://www.apache.org/licenses/
67+
68+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
69+
70+
1. Definitions.
71+
72+
"License" shall mean the terms and conditions for use, reproduction,
73+
and distribution as defined by Sections 1 through 9 of this document.
74+
75+
"Licensor" shall mean the copyright owner or entity authorized by
76+
the copyright owner that is granting the License.
77+
78+
"Legal Entity" shall mean the union of the acting entity and all
79+
other entities that control, are controlled by, or are under common
80+
control with that entity. For the purposes of this definition,
81+
"control" means (i) the power, direct or indirect, to cause the
82+
direction or management of such entity, whether by contract or
83+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
84+
outstanding shares, or (iii) beneficial ownership of such entity.
85+
86+
"You" (or "Your") shall mean an individual or Legal Entity
87+
exercising permissions granted by this License.
88+
89+
"Source" form shall mean the preferred form for making modifications,
90+
including but not limited to software source code, documentation
91+
source, and configuration files.
92+
93+
"Object" form shall mean any form resulting from mechanical
94+
transformation or translation of a Source form, including but
95+
not limited to compiled object code, generated documentation,
96+
and conversions to other media types.
97+
98+
"Work" shall mean the work of authorship, whether in Source or
99+
Object form, made available under the License, as indicated by a
100+
copyright notice that is included in or attached to the work
101+
(an example is provided in the Appendix below).
102+
103+
"Derivative Works" shall mean any work, whether in Source or Object
104+
form, that is based on (or derived from) the Work and for which the
105+
editorial revisions, annotations, elaborations, or other modifications
106+
represent, as a whole, an original work of authorship. For the purposes
107+
of this License, Derivative Works shall not include works that remain
108+
separable from, or merely link (or bind by name) to the interfaces of,
109+
the Work and Derivative Works thereof.
110+
111+
"Contribution" shall mean any work of authorship, including
112+
the original version of the Work and any modifications or additions
113+
to that Work or Derivative Works thereof, that is intentionally
114+
submitted to Licensor for inclusion in the Work by the copyright owner
115+
or by an individual or Legal Entity authorized to submit on behalf of
116+
the copyright owner. For the purposes of this definition, "submitted"
117+
means any form of electronic, verbal, or written communication sent
118+
to the Licensor or its representatives, including but not limited to
119+
communication on electronic mailing lists, source code control systems,
120+
and issue tracking systems that are managed by, or on behalf of, the
121+
Licensor for the purpose of discussing and improving the Work, but
122+
excluding communication that is conspicuously marked or otherwise
123+
designated in writing by the copyright owner as "Not a Contribution."
124+
125+
"Contributor" shall mean Licensor and any individual or Legal Entity
126+
on behalf of whom a Contribution has been received by Licensor and
127+
subsequently incorporated within the Work.
128+
129+
2. Grant of Copyright License. Subject to the terms and conditions of
130+
this License, each Contributor hereby grants to You a perpetual,
131+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
132+
copyright license to reproduce, prepare Derivative Works of,
133+
publicly display, publicly perform, sublicense, and distribute the
134+
Work and such Derivative Works in Source or Object form.
135+
136+
3. Grant of Patent License. Subject to the terms and conditions of
137+
this License, each Contributor hereby grants to You a perpetual,
138+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
139+
(except as stated in this section) patent license to make, have made,
140+
use, offer to sell, sell, import, and otherwise transfer the Work,
141+
where such license applies only to those patent claims licensable
142+
by such Contributor that are necessarily infringed by their
143+
Contribution(s) alone or by combination of their Contribution(s)
144+
with the Work to which such Contribution(s) was submitted. If You
145+
institute patent litigation against any entity (including a
146+
cross-claim or counterclaim in a lawsuit) alleging that the Work
147+
or a Contribution incorporated within the Work constitutes direct
148+
or contributory patent infringement, then any patent licenses
149+
granted to You under this License for that Work shall terminate
150+
as of the date such litigation is filed.
151+
152+
4. Redistribution. You may reproduce and distribute copies of the
153+
Work or Derivative Works thereof in any medium, with or without
154+
modifications, and in Source or Object form, provided that You
155+
meet the following conditions:
156+
157+
(a) You must give any other recipients of the Work or
158+
Derivative Works a copy of this License; and
159+
160+
(b) You must cause any modified files to carry prominent notices
161+
stating that You changed the files; and
162+
163+
(c) You must retain, in the Source form of any Derivative Works
164+
that You distribute, all copyright, patent, trademark, and
165+
attribution notices from the Source form of the Work,
166+
excluding those notices that do not pertain to any part of
167+
the Derivative Works; and
168+
169+
(d) If the Work includes a "NOTICE" text file as part of its
170+
distribution, then any Derivative Works that You distribute must
171+
include a readable copy of the attribution notices contained
172+
within such NOTICE file, excluding those notices that do not
173+
pertain to any part of the Derivative Works, in at least one
174+
of the following places: within a NOTICE text file distributed
175+
as part of the Derivative Works; within the Source form or
176+
documentation, if provided along with the Derivative Works; or,
177+
within a display generated by the Derivative Works, if and
178+
wherever such third-party notices normally appear. The contents
179+
of the NOTICE file are for informational purposes only and
180+
do not modify the License. You may add Your own attribution
181+
notices within Derivative Works that You distribute, alongside
182+
or as an addendum to the NOTICE text from the Work, provided
183+
that such additional attribution notices cannot be construed
184+
as modifying the License.
185+
186+
You may add Your own copyright statement to Your modifications and
187+
may provide additional or different license terms and conditions
188+
for use, reproduction, or distribution of Your modifications, or
189+
for any such Derivative Works as a whole, provided Your use,
190+
reproduction, and distribution of the Work otherwise complies with
191+
the conditions stated in this License.
192+
193+
5. Submission of Contributions. Unless You explicitly state otherwise,
194+
any Contribution intentionally submitted for inclusion in the Work
195+
by You to the Licensor shall be under the terms and conditions of
196+
this License, without any additional terms or conditions.
197+
Notwithstanding the above, nothing herein shall supersede or modify
198+
the terms of any separate license agreement you may have executed
199+
with Licensor regarding such Contributions.
200+
201+
6. Trademarks. This License does not grant permission to use the trade
202+
names, trademarks, service marks, or product names of the Licensor,
203+
except as required for reasonable and customary use in describing the
204+
origin of the Work and reproducing the content of the NOTICE file.
205+
206+
7. Disclaimer of Warranty. Unless required by applicable law or
207+
agreed to in writing, Licensor provides the Work (and each
208+
Contributor provides its Contributions) on an "AS IS" BASIS,
209+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
210+
implied, including, without limitation, any warranties or conditions
211+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
212+
PARTICULAR PURPOSE. You are solely responsible for determining the
213+
appropriateness of using or redistributing the Work and assume any
214+
risks associated with Your exercise of permissions under this License.
215+
216+
8. Limitation of Liability. In no event and under no legal theory,
217+
whether in tort (including negligence), contract, or otherwise,
218+
unless required by applicable law (such as deliberate and grossly
219+
negligent acts) or agreed to in writing, shall any Contributor be
220+
liable to You for damages, including any direct, indirect, special,
221+
incidental, or consequential damages of any character arising as a
222+
result of this License or out of the use or inability to use the
223+
Work (including but not limited to damages for loss of goodwill,
224+
work stoppage, computer failure or malfunction, or any and all
225+
other commercial damages or losses), even if such Contributor
226+
has been advised of the possibility of such damages.
227+
228+
9. Accepting Warranty or Additional Liability. While redistributing
229+
the Work or Derivative Works thereof, You may choose to offer,
230+
and charge a fee for, acceptance of support, warranty, indemnity,
231+
or other liability obligations and/or rights consistent with this
232+
License. However, in accepting such obligations, You may act only
233+
on Your own behalf and on Your sole responsibility, not on behalf
234+
of any other Contributor, and only if You agree to indemnify,
235+
defend, and hold each Contributor harmless for any liability
236+
incurred by, or claims asserted against, such Contributor by reason
237+
of your accepting any such warranty or additional liability.

0 commit comments

Comments
 (0)