dart-tools 0.6.13__py3-none-any.whl → 0.6.14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dart-tools might be problematic. Click here for more details.
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.14.dist-info}/METADATA +3 -11
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.14.dist-info}/RECORD +7 -7
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.14.dist-info}/LICENSE +0 -0
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.14.dist-info}/WHEEL +0 -0
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.14.dist-info}/dist/dart-tools-0.3.3.tar.gz +0 -0
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.14.dist-info}/entry_points.txt +0 -0
- {dart_tools-0.6.13.dist-info → dart_tools-0.6.14.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: dart-tools
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.14
|
|
4
4
|
Summary: The Dart CLI and Python Library
|
|
5
5
|
Author-email: Dart Software Team <software@itsdart.com>
|
|
6
6
|
License: MIT License
|
|
@@ -78,14 +78,13 @@ Requires-Dist: requests
|
|
|
78
78
|
- [Installation](#installation)
|
|
79
79
|
- [Using the CLI](#using-the-cli)
|
|
80
80
|
- [Using the Python Library](#using-the-python-library)
|
|
81
|
-
|
|
81
|
+
- [Using the Python Library in AWS Lambda Functions](#using-the-python-library-in-aws-lambda-functions)
|
|
82
82
|
- [Advanced Usage](#advanced-usage)
|
|
83
83
|
- [Help and Resources](#help-and-resources)
|
|
84
84
|
- [Contributing](#contributing)
|
|
85
85
|
- [License](#license)
|
|
86
86
|
|
|
87
87
|
|
|
88
|
-
<a name="installation"></a>
|
|
89
88
|
## Installation
|
|
90
89
|
|
|
91
90
|
In the terminal, install by running
|
|
@@ -94,7 +93,6 @@ pip install dart-tools
|
|
|
94
93
|
```
|
|
95
94
|
|
|
96
95
|
|
|
97
|
-
<a name="using-the-cli"></a>
|
|
98
96
|
## Using the CLI
|
|
99
97
|
|
|
100
98
|
Start off by setting up authentication with
|
|
@@ -117,7 +115,6 @@ dart updatetask [DUID] -s Done
|
|
|
117
115
|
This command will mark the referenced task 'Done'. Here `[DUID]` is meant to be replaced (including the brackets) with the 'Dart ID' of an existing task. You can get a DUID from any existing task in a number of ways, such as by copying it from the end of a task's URL or by clicking the '...' button in a task page in Dart and then choosing 'Copy ID'.
|
|
118
116
|
|
|
119
117
|
|
|
120
|
-
<a name="using-the-python-library"></a>
|
|
121
118
|
## Using the Python Library
|
|
122
119
|
|
|
123
120
|
First, set up authentication. Run `dart login` in the terminal for an interactive process, or visit [your Dart profile](https://app.itsdart.com/?settings=account) and then run `dart.login(token)` or save the token into the `DART_TOKEN` environment variable.
|
|
@@ -140,8 +137,7 @@ update_task(new_task.duid, status_title="Done")
|
|
|
140
137
|
```
|
|
141
138
|
|
|
142
139
|
|
|
143
|
-
|
|
144
|
-
### In AWS Lambda Functions
|
|
140
|
+
## Using the Python Library in AWS Lambda Functions
|
|
145
141
|
|
|
146
142
|
To use the `dart-tools` Python library in an AWS Lambda function, you need to package the library with your Lambda deployment package (see more details at [Working with .zip file archives for Python Lambda functions](https://docs.aws.amazon.com/lambda/latest/dg/python-package.html)). Follow these steps:
|
|
147
143
|
|
|
@@ -179,7 +175,6 @@ To use the `dart-tools` Python library in an AWS Lambda function, you need to pa
|
|
|
179
175
|
By following these steps, you can use the `dart-tools` Python library within your AWS Lambda functions.
|
|
180
176
|
|
|
181
177
|
|
|
182
|
-
<a name="advanced-usage"></a>
|
|
183
178
|
## Advanced Usage
|
|
184
179
|
|
|
185
180
|
Almost anything that can be done in Dart can be done with the Python library, but there are not convenient wrapper functions for everything.
|
|
@@ -218,7 +213,6 @@ response = dart.transact([task_update_op], TransactionKind.TASK_UPDATE)
|
|
|
218
213
|
```
|
|
219
214
|
|
|
220
215
|
|
|
221
|
-
<a name="help-and-resources"></a>
|
|
222
216
|
## Help and Resources
|
|
223
217
|
|
|
224
218
|
- [Homepage](https://www.itsdart.com/?nr=1)
|
|
@@ -230,13 +224,11 @@ response = dart.transact([task_update_op], TransactionKind.TASK_UPDATE)
|
|
|
230
224
|
- Email us at [support@itsdart.com](mailto:support@itsdart.com)
|
|
231
225
|
|
|
232
226
|
|
|
233
|
-
<a name="contributing"></a>
|
|
234
227
|
## Contributing
|
|
235
228
|
|
|
236
229
|
Contributions are welcome! Please open an issue or submit a pull request.
|
|
237
230
|
|
|
238
231
|
|
|
239
|
-
<a name="license"></a>
|
|
240
232
|
## License
|
|
241
233
|
|
|
242
234
|
This project is licensed under [the MIT License](LICENSE).
|
|
@@ -248,10 +248,10 @@ dart/generated/models/webhook.py,sha256=90ZjBe-oh8hTQMb8CafWTZTUsaj9eHxu85uU-JxT
|
|
|
248
248
|
dart/generated/models/webhook_create.py,sha256=kyhv-pI8i4URwul5Ive3hh7TirpDB1YQmio8tn0lkJo,1834
|
|
249
249
|
dart/generated/models/webhook_update.py,sha256=iy9mx8yyKn9182td88pOnc2H7_4H8xl27m8tV3j8hEI,1916
|
|
250
250
|
dart/generated/models/zapier_integration.py,sha256=3cKzM0UHNte6Jg-hnroOvgMUHiD7iv1fodrWZoAIaag,1783
|
|
251
|
-
dart_tools-0.6.
|
|
252
|
-
dart_tools-0.6.
|
|
253
|
-
dart_tools-0.6.
|
|
254
|
-
dart_tools-0.6.
|
|
255
|
-
dart_tools-0.6.
|
|
256
|
-
dart_tools-0.6.
|
|
257
|
-
dart_tools-0.6.
|
|
251
|
+
dart_tools-0.6.14.dist-info/dist/dart-tools-0.3.3.tar.gz,sha256=JHf6kKcFBOXsnB62lpeV3xcv-GVusi5CysY2tAxgxvk,8788
|
|
252
|
+
dart_tools-0.6.14.dist-info/LICENSE,sha256=4ZrQkL_PyaBC3paDrqLnD3knKAXS2i8HwJGyUgRUxls,1061
|
|
253
|
+
dart_tools-0.6.14.dist-info/METADATA,sha256=QuLrixK1SFxvGI99rpRfvplq-sdyGtxR7CpzL2Ea_Hk,9129
|
|
254
|
+
dart_tools-0.6.14.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
255
|
+
dart_tools-0.6.14.dist-info/entry_points.txt,sha256=KOVAnDWJbSKn9HoXWQ7x6NfACYzSMGHBBaBxonHEv6w,34
|
|
256
|
+
dart_tools-0.6.14.dist-info/top_level.txt,sha256=ZwUQ6QjCyi1i32BJOAkbOA7UfgitLmIwToJGJwZXPrg,5
|
|
257
|
+
dart_tools-0.6.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|