You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains Aspose.Tasks Cloud SDK for Python source code. This SDK allows you to work with Aspose.Tasks Cloud REST APIs in your Python applications quickly and easily, with zero initial cost.
* Conversion between various file formats, including MPP->PDF conversion
9
-
* Read, change and write Microsoft Project® documents
10
-
* Create, update and write projects in XML project format
11
-
* Manage extended attributes
12
-
* Define weekdays for calendars and calendar exceptions
13
-
* Manage task baseline scheduling and duration
14
-
* Create and manage links between tasks
15
-
* Manage resources costs and variances
16
-
* Access assignment costs and budget
5
+
Aspose.Tasks for Cloud offers the ability to manipulate and convert Microsoft Project MPT, MPP, MPX & Oracle Primavera XER, XML, and PrimaveraP6XML files in the Cloud. [Aspose.Tasks Cloud SDK for Python](https://products.aspose.cloud/tasks/python) wraps the REST API to make it easier for Python developers to integrate Task Management features in their own applications.
17
6
18
-
## How to use the SDK?
19
-
The complete source code is available in this repository folder. You can either directly use it in your project via source code or get [PyPi](https://pypi.org/project/aspose-tasks-cloud) (recommended). For more details, please visit our [documentation website](https://docs.aspose.cloud/tasks/available-sdks/).
7
+
## REST API for Task Management
20
8
21
-
### Prerequisites
9
+
*[Convert Microsoft Project & Oracle Primavera files](https://docs.aspose.cloud/tasks/convert-project-document-to-the-specified-format/) to other formats including MPP to PDF conversion.
10
+
* Read, change and write Microsoft Project documents.
11
+
* Create, update and write projects in XML project format.
12
+
* Manage extended attributes.
13
+
*[Define weekdays for calendars](https://docs.aspose.cloud/tasks/working-with-calendars/) and calendar exceptions.
14
+
*[Manage tasks](https://docs.aspose.cloud/tasks/working-with-tasks/), baseline scheduling and duration.
15
+
* Create and [manage task links](https://docs.aspose.cloud/tasks/working-with-task-links/).
16
+
* Manage resources costs and variances.
17
+
* Access assignment costs and budget.
22
18
23
-
To use Aspose Tasks for Cloud Python SDK you need to register an account with [Aspose Cloud](https://www.aspose.cloud/) and lookup/create App Key and SID at [Cloud Dashboard](https://dashboard.aspose.cloud/#/apps). There is free quota available. For more details, see [Aspose Cloud Pricing](https://purchase.aspose.cloud/pricing).
If the python package is hosted on Github, you can install directly from Github
23
+
## Save Project Data As
24
+
25
+
XER, XLSX, HTML, XML, TXT, TIF, SVG, PNG, JPEG
26
+
27
+
## Get Started with Aspose.Tasks Cloud SDK for Python
28
+
29
+
Register an account at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) to get you application information. Next, either directly use the source from this repository in your project or get the package from [PyPi](https://pypi.org/project/aspose-tasks-cloud).
30
+
31
+
### Install via PIP
29
32
30
33
```sh
31
34
pip install aspose-tasks-cloud
32
35
```
33
-
(you may need to run `pip` with root permission: `sudo pip install aspose-tasks-cloud`)
34
36
35
-
Then import the package:
37
+
You may need to run `pip` command with root permission as `sudo pip install aspose-tasks-cloud`.
38
+
39
+
Then import the package as follows.
40
+
36
41
```python
37
42
import asposetaskscloud
38
43
```
39
44
40
-
### Setuptools
41
-
42
-
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
45
+
### Install via Setuptools
43
46
44
47
```sh
45
48
python setup.py install --user
46
49
```
47
-
(or `sudo python setup.py install` to install the package for all users)
48
50
49
-
Then import the package:
51
+
Alternatively, execute `sudo python setup.py install` to install the package for all users.
52
+
53
+
Then import the package as follows.
54
+
50
55
```python
51
56
import asposetaskscloud
52
57
```
53
58
54
-
## Getting Started
55
-
56
-
Please follow the [installation procedure](#installation--usage) and then run the following:
59
+
## Extract MPP Document Properties via Python
57
60
58
61
```python
59
62
import asposetaskscloud
@@ -72,31 +75,13 @@ self.assertTrue(upload_result.code == 200, 'Error has occurred while uploading p
result = tasks_api.get_document_properties(request)
74
77
self.assertTrue(result.code ==200, 'Error has occurred while getting document properties')
75
-
76
78
```
77
79
78
-
[Test](test/) contain various examples of using the SDK.
79
-
80
-
## Dependencies
81
-
- Python 2.7(End of Life in 2020) and 3.7
82
-
- referenced packages (see [here](setup.py) for more details)
83
-
84
-
## Licensing
85
-
86
-
All Aspose.Tasks Cloud SDKs, helper scripts and templates are licensed under [MIT License](https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-python/blob/master/LICENSE).
87
-
88
-
## Contact Us
89
-
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.aspose.cloud/c/tasks).
We generate our SDKs in different languages so you may check if yours is available in our [list](https://github.com/aspose-tasks-cloud).
101
-
102
-
If you don't find your language in the list, feel free to request it from us, or use raw REST API requests as you can find it [here](https://products.aspose.cloud/tasks/curl).
0 commit comments