dart-tools 0.6.12__py3-none-any.whl → 0.6.13__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.12.dist-info → dart_tools-0.6.13.dist-info}/METADATA +11 -3
- {dart_tools-0.6.12.dist-info → dart_tools-0.6.13.dist-info}/RECORD +7 -7
- {dart_tools-0.6.12.dist-info → dart_tools-0.6.13.dist-info}/LICENSE +0 -0
- {dart_tools-0.6.12.dist-info → dart_tools-0.6.13.dist-info}/WHEEL +0 -0
- {dart_tools-0.6.12.dist-info → dart_tools-0.6.13.dist-info}/dist/dart-tools-0.3.3.tar.gz +0 -0
- {dart_tools-0.6.12.dist-info → dart_tools-0.6.13.dist-info}/entry_points.txt +0 -0
- {dart_tools-0.6.12.dist-info → dart_tools-0.6.13.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.13
|
|
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,13 +78,14 @@ 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
|
+
- [In AWS Lambda Functions](#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>
|
|
88
89
|
## Installation
|
|
89
90
|
|
|
90
91
|
In the terminal, install by running
|
|
@@ -93,6 +94,7 @@ pip install dart-tools
|
|
|
93
94
|
```
|
|
94
95
|
|
|
95
96
|
|
|
97
|
+
<a name="using-the-cli"></a>
|
|
96
98
|
## Using the CLI
|
|
97
99
|
|
|
98
100
|
Start off by setting up authentication with
|
|
@@ -115,6 +117,7 @@ dart updatetask [DUID] -s Done
|
|
|
115
117
|
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'.
|
|
116
118
|
|
|
117
119
|
|
|
120
|
+
<a name="using-the-python-library"></a>
|
|
118
121
|
## Using the Python Library
|
|
119
122
|
|
|
120
123
|
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.
|
|
@@ -137,7 +140,8 @@ update_task(new_task.duid, status_title="Done")
|
|
|
137
140
|
```
|
|
138
141
|
|
|
139
142
|
|
|
140
|
-
|
|
143
|
+
<a name="in-aws-lambda-functions"></a>
|
|
144
|
+
### In AWS Lambda Functions
|
|
141
145
|
|
|
142
146
|
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:
|
|
143
147
|
|
|
@@ -175,6 +179,7 @@ To use the `dart-tools` Python library in an AWS Lambda function, you need to pa
|
|
|
175
179
|
By following these steps, you can use the `dart-tools` Python library within your AWS Lambda functions.
|
|
176
180
|
|
|
177
181
|
|
|
182
|
+
<a name="advanced-usage"></a>
|
|
178
183
|
## Advanced Usage
|
|
179
184
|
|
|
180
185
|
Almost anything that can be done in Dart can be done with the Python library, but there are not convenient wrapper functions for everything.
|
|
@@ -213,6 +218,7 @@ response = dart.transact([task_update_op], TransactionKind.TASK_UPDATE)
|
|
|
213
218
|
```
|
|
214
219
|
|
|
215
220
|
|
|
221
|
+
<a name="help-and-resources"></a>
|
|
216
222
|
## Help and Resources
|
|
217
223
|
|
|
218
224
|
- [Homepage](https://www.itsdart.com/?nr=1)
|
|
@@ -224,11 +230,13 @@ response = dart.transact([task_update_op], TransactionKind.TASK_UPDATE)
|
|
|
224
230
|
- Email us at [support@itsdart.com](mailto:support@itsdart.com)
|
|
225
231
|
|
|
226
232
|
|
|
233
|
+
<a name="contributing"></a>
|
|
227
234
|
## Contributing
|
|
228
235
|
|
|
229
236
|
Contributions are welcome! Please open an issue or submit a pull request.
|
|
230
237
|
|
|
231
238
|
|
|
239
|
+
<a name="license"></a>
|
|
232
240
|
## License
|
|
233
241
|
|
|
234
242
|
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.13.dist-info/dist/dart-tools-0.3.3.tar.gz,sha256=JHf6kKcFBOXsnB62lpeV3xcv-GVusi5CysY2tAxgxvk,8788
|
|
252
|
+
dart_tools-0.6.13.dist-info/LICENSE,sha256=4ZrQkL_PyaBC3paDrqLnD3knKAXS2i8HwJGyUgRUxls,1061
|
|
253
|
+
dart_tools-0.6.13.dist-info/METADATA,sha256=QWgpjR9T2gMbHuvB71SffA3AvQ-wS_q_TwnfzK7qrco,9308
|
|
254
|
+
dart_tools-0.6.13.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
255
|
+
dart_tools-0.6.13.dist-info/entry_points.txt,sha256=KOVAnDWJbSKn9HoXWQ7x6NfACYzSMGHBBaBxonHEv6w,34
|
|
256
|
+
dart_tools-0.6.13.dist-info/top_level.txt,sha256=ZwUQ6QjCyi1i32BJOAkbOA7UfgitLmIwToJGJwZXPrg,5
|
|
257
|
+
dart_tools-0.6.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|