Skip to main content

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.

Supported File Formats

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

Platform Independence

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:

  1. Open existing project.
  2. 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:

  1. Create an object of the Project class.
  2. Create ImageSaveOptions object with needed settings.
  3. 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:

  1. Instantiate a Project object.
  2. Add task to the project.
  3. Setup task attributes (start, duration etc.).
  4. 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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aspose_tasks-26.8.0-py3-none-win_amd64.whl (51.4 MB view details)

Uploaded Python 3Windows x86-64

aspose_tasks-26.8.0-py3-none-win32.whl (44.0 MB view details)

Uploaded Python 3Windows x86

aspose_tasks-26.8.0-py3-none-manylinux1_x86_64.whl (71.7 MB view details)

Uploaded Python 3

aspose_tasks-26.8.0-py3-none-macosx_10_14_x86_64.whl (61.3 MB view details)

Uploaded Python 3macOS 10.14+ x86-64

File details

Details for the file aspose_tasks-26.8.0-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for aspose_tasks-26.8.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 bd39b0a1300e9920b5d0a7057894e7faaa6f8690dd545f4ad3092e2e10ff0444
MD5 b7f9b6337feec53eec706e029fbc5c01
BLAKE2b-256 e2b600244de0547572e3791bbb776191932deca8ccf11f2a784c509cf6bf4be4

See more details on using hashes here.

File details

Details for the file aspose_tasks-26.8.0-py3-none-win32.whl.

File metadata

  • Download URL: aspose_tasks-26.8.0-py3-none-win32.whl
  • Upload date:
  • Size: 44.0 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.13

File hashes

Hashes for aspose_tasks-26.8.0-py3-none-win32.whl
Algorithm Hash digest
SHA256 bf8c0d416da164cc468f3cc3f47fd571dae2ed154a8e07cd234568cad1217d7b
MD5 b376d07a1b6f1b977abc5acee11d5976
BLAKE2b-256 d2b3173ea8b84ba7c07fadfb01c971d4bd185f16ae699657cf80e47635d4712b

See more details on using hashes here.

File details

Details for the file aspose_tasks-26.8.0-py3-none-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for aspose_tasks-26.8.0-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5445c5e3782a7509efd7a2b27b3b7103928f0d2e23f4a4d92c50aa1ed7268e20
MD5 668a125a4ead130e214142da10a54619
BLAKE2b-256 5945357cae2dc049279e54367f5186067e34c6950ce6c483973319e681746756

See more details on using hashes here.

File details

Details for the file aspose_tasks-26.8.0-py3-none-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for aspose_tasks-26.8.0-py3-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 54f3b9188e2eabf539ef6067771e7a5c6ab4eb74d2ab88ec9fb0f02dcd839a32
MD5 c7b140741b47dfba2182644837df22f1
BLAKE2b-256 395425ce046d1e2890890728eb9ef8dfa5a2c75a0fcfafa89b5715900654e6e3

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

26.8.0 This release

4 files

26.7.0

4 files

26.6.0

4 files

26.5.0

4 files

26.4.0

4 files

26.3.0

4 files

26.2.0

4 files

26.1.0

4 files

25.12.0

4 files

25.11.0

4 files

25.9.0

4 files

25.8.0

4 files

25.7.0

4 files

25.6.0

4 files

25.5.0

4 files

25.4.0

4 files

25.3.0

4 files

25.2.0

4 files

25.1.0

4 files

24.12.0

4 files

24.11.0

4 files

24.10.0

4 files

24.9.0

4 files

24.8.0

4 files

24.7.0

4 files

24.6.0

4 files

24.5.0

4 files

24.4.0

4 files

24.3.0

4 files

24.2.0

4 files

24.1.0

4 files

23.12.0

4 files

23.11.0

4 files

23.10.0

4 files

23.9.0

4 files

23.8.0

4 files

23.7.0

4 files

23.6.0

4 files

23.5.0

4 files

23.4.0

4 files

23.3.0

4 files

23.2.0

4 files

23.1.0

3 files

22.12.0

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page