If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Download Aspose.Tasks for Python via .NET from PIP
You can easily use aspose-tasks for Python from
pip with the following command.
Product Page | Documentation | Demos | Blog | API Reference | Search | Free Support | Temporary License
Try our Free Online Apps demonstrating some of the most popular MS-Project-related functionality.
Aspose.Tasks for Python via .NET is a native library that enables the developers to add MS-Project files processing capabilities to their applications. It can be used to create, read, convert and manipulate MS-Project files without the use of Microsoft Project itself. Aspose.Tasks for Python via .NET allows to perform a range of document processing tasks such as calculations, get and set tasks/recources/calendars information, views manipulation, management of attachments, custom font handling and much more.
Check out the Landing Pages of Aspose.Tasks for Python via .NET for a more detailed description of the features and possibilities of the library.
General Features
- Ability to create, read, edit and write to MPP/MPX/MPT/XER
- Supported export to multiple image formats including BMP, GIF, JPEG & PNG.
- Supported output to many other formats as XLSX, HTML, CSV, text etc.
- Export to PDF
- Oracle Primavera and Project Server (Project online) support.
Supported MS-Project versions
Aspose.Tasks for Python via .NET supports Microsoft Project versions 2003/2007/2010/2013/2016/2019/2021.
Conversion Features
Aspose.Tasks for Python via .NET library allows you to successfully, quickly and easily convert your project documents to the most popular formats and vice versa.
- Convert MPP to Images formats (TIFF, PNG, JPEG, SVG, etc.).
- Convert MPP to Excel.
- Convert MPP to HTML format and vice versa.
- Convert MPP to CSV and plain text.
- Convert MPP to PDF.
Package Features
- Manage tasks, resources, assignments, task links and calendars.
- Manage custom fields, outline codes.
- Working with different project views, custom timecaling and custom text styles.
- Customize styles of Gantt Chart view.
The following table indicates the file formats that Aspose.Tasks for Python via .NET can load and save.
Format | Description | Load | Save |
---|
MPP | Microsoft Project/Microsoft Project Online format | Yes | Yes |
MPT | Microsoft Project template | Yes | No |
XML | Microsoft Project XML Format | Yes | Yes |
XER | Primavera XER Format | Yes | Yes |
P6XML | Primavera P6XML Format | Yes | Yes |
MPX | Primavera MPX | Yes | Yes |
XLSX | Microsoft Excel | No | Yes |
HTML | Simplified HTM and HTML Formats | No | Yes |
Text | Text Format | No | Yes |
TIFF | Single or Multi-Page TIFF Image | No | Yes |
SVG | Scalable Vector Graphics | No | Yes |
PNG | PNG Format | No | Yes |
JPEG | JPEG Format | No | Yes |
PDF | Saving Project data to PDF Format | No | Yes |
Aspose.Tasks for Python via .NET can be used to develop 32-bit and 64-bit Python applications for different operating systems (such as Windows and Linux) where Python 3.5 or later is installed.
Get Started
Run pip install aspose-tasks
to fetch the package. If you already have Aspose.Tasks for Python via .NET and want to get the latest version, please run pip install --upgrade aspose-tasks
.
To learn more about Aspose.Tasks for Python via .NET and explore the basic requirements and features of the library, check out the following Aspose.Tasks for Python via .NET Documentation pages for other use cases.
Example of converting MPP project to PDF
Aspose.Tasks for Python via .NET is a Project manipulation API that lets you convert any existing project to PDF document. The process of converting to PDF can be flexibly customized.
Below code snippet follows these steps:
- Open existing project.
- Save to PDF.
import aspose.tasks as tsk
# Open existing project
prj = tsk.Project("HelloProject.mpp")
# Save to PDF
prj.save("output.pdf", tsk.saving.SaveFileFormat.PDF)
Example of converting project to images
Aspose.Tasks for Python via .NET supports the feature to convert projects to different image formats. To accomplish this, the ImageSaveOptions class has been introduced. Instantiate an object of ImageSaveOptions and pass it as a second argument to the Project.save(..) method.
Below code snippet follows these steps:
- Create an object of the Project class.
- Create ImageSaveOptions object with needed settings.
- Call the Project.save() method and pass options instance to it to convert to JPEG.
import aspose.tasks as tsk
# load file
prj = tsk.Project("HelloProject.mpp")
# create ImageSaveOptions with desired format
options = tsk.saving.ImageSaveOptions(tsk.saving.SaveFileFormat.JPEG)
# configure output options
options.horizontal_resolution = 96.0
options.vertical_resolution = 96.0
options.jpeg_quality = 70
# render data to image format
prj.save("output.jpg", options)
Create Project file from scratch in Python
In the next code snippet, we are creating a Project document from scratch containing few tasks. After installing Aspose.Tasks for Python via .NET in your environment, you can execute below code sample to see how Aspose.Tasks API works.
Below code snippet follows these steps:
- Instantiate a Project object.
- Add task to the project.
- Setup task attributes (start, duration etc.).
- Save created project.
The following code snippet is a kind of simple program to exhibit how Aspose.Tasks for Python via .NET API works with Project items:
import aspose.tasks as tsk
from datetime import *
# Instantiate a Project object
prj = tsk.Project()
# Add task to the project
task1 = prj.root_task.children.add("Task 1")
# Setup task attributes
task1.start = datetime(2023, 1, 15)
task1.duration = prj.get_duration(1.0, tsk.TimeUnitType.DAY)
# Add another task
task2 = prj.root_task.children.add("Task 2")
task2.start = datetime(2023, 1, 16)
task2.duration = prj.get_duration(2.0, tsk.TimeUnitType.DAY)
# Save created project
prj.save("HelloProject.mpp")
Product Page | Documentation | Demos | Blog | API Reference | Search | Free Support | Temporary License
It contains Aspose.Tasks for Python via .NET 25.4 for Win64
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.4 for Win32
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.4 for Linux
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.4 for MacOS
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.3 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.3 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.3 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.3 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.2 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.2 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.2 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.2 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.1.0 Win64 only binaries.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.1.0 Win32 only binaries.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.1.0 MacOS only binaries.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 25.1.0 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.12 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.12 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.12 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.12 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.11 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.11 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.11 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.11 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.10 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.10 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.10 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.10 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.9 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.9 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.9 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.9 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.8 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.8 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.8 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.8 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.7 release for Win64
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.7 release for Win32
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.7 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.7 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.6 release for Win64
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.6 release for Win32
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.6 release for Linux
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.6 release for MacOS
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.5 release for Win64
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.5 release for Win32
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.5 release for MacOS
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.4 release for Win64
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.4 release for Win32
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.4 release for Linux
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.4 release for MacOS
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.3 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.3 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.3 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.3 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.2 win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.2 win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.2 linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.2 macos only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.1 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.1 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.1 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 24.1 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.12 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.12 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.12 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.12 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python 23.11 win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python 23.11 win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python 23.11 linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python 23.11 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Zip for Python via .NET 23.10 Win64 only binaries
Added:
Downloads: 
It contains Aspose.Zip for Python via .NET 23.10 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.10 linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.10 macos only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.9 Win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.9 Linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.9 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.9 MacOS only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.8 win64 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.8 win32 only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.8 linux only binaries
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.8 release for MacOS
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.6.0, Windows x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.6.0, Linux x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.6.0, Windows x32 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.6.0, macOS x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.5.0, Windows x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.5.0, Windows x32 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.5.0, Linux x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.5.0, macOS x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.4.0, Windows x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.4.0, Windows x32 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.4.0, Linux x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.4.0, macOS x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.3.0, Windows x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.3.0, Windows x32 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.3.0, Linux x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.3.0, macOS x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.2.0, Windows x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.2.0, Windows x32 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.2.0, Linux x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.2.0, macOS x86, x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.1.0, Windows x64 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.1.0, Windows x32 release.
Added:
Downloads: 
It contains Aspose.Tasks for Python via .NET 23.1.0, Linux x86, x64 release.
Added:
Downloads: 