Skip to content

kuhnemann/pyplunet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Forks Stargazers Issues MIT License LinkedIn

PyPlunet

Modern Python client for interacting with the Plunet SOAP 3.0 API.

About The Project

Modern Python client for interacting with the Plunet SOAP API, without having to deal with any of the soapiness.

Ready to use out of the box, you can jump directly into the business logic.

Pip install, import and start working. It really is as easy as that!

  • Implements all services and methods as per Plunet 9.11 (the latest version of ApiDocs available)
  • Fully typed for validation and code completion support
  • Fully documented methods with complete content of the Plunet JavaDocs.

(back to top)

New in 0.9.1

  • Updated readme
  • Fixed typo

New in 0.9.0

  • Added methods and fields up to Plunet 9.11
  • Added missing status and type enums

New in 0.8.0

  • Decided to remove the retrying client
  • Improved flexibility for enums, which now accept both integers and strings that are possible to cast as ints

Built With

(back to top)

Getting Started

Installation

Install via pip

pip install pyplunet

Or clone the repo

git clone https://github.com/kuhnemann/pyplunet.git

(back to top)

Usage

Install using pip like so:

pip install pyplunet

Initialize the client with the base URL of your Plunet instance, authenticate and start doing whatever you aim to do.

from pyplunet import PlunetClient


plunet_client = PlunetClient(base_url="YOUR_URL")

plunet_client.login(username=username, password=password)

order_result = plunet_client.order.get_order_object(order_id=1234)

Complex types and enums are included. Convenient when searching or creating entities:

from datetime import datetime, timedelta

from pyplunet import PlunetClient
from pyplunet.models import OrderIN, SearchFilter_Resource
from pyplunet.enums import ResourceType, ResourceStatus, WorkingStatus


plunet_client = PlunetClient(base_url="YOUR_URL")

plunet_client.login(username=username, password=password)

# prepare the searchfilter
sf_resource = SearchFilter_Resource(
    contact_resourceID=-1,
    languageCode="EN",
    resourceType=ResourceType.PROJECT_MANAGER,
    resourceStatus=ResourceStatus.ACTIVE,
    workingStatus=WorkingStatus.INTERNAL
)
# get the result
pms_result = plunet_client.resource.search(search_filter_resource=sf_resource)

# prepare the OrderIN object. Fields are typed and corresponds to definition from XSD.
order_in = OrderIN(
    currency="SEK",
    customerContactID=1,
    customerID=3,
    deliveryDeadline=datetime.now() + timedelta(days=7),
    orderDate=datetime.now(),
    orderID=-1,
    projectManagerID=11,
    projectManagerMemo="Some memo!",
    projectName="Project has a name",
    rate=-1,
    referenceNumber="This is the reference number",
    subject="This is the subject!"
)
order_integer_result = plunet_client.order.insert2(order_in=order_in)
order_id = order_integer_result.data

(back to top)

See the open issues for a full list of proposed features (and known issues).

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE for more information.

(back to top)

Contact

Henrik Kühnemann - @hkuhnemann - hello@yellownape.se

Project Link: https://github.com/kuhnemann/pyplunet

(back to top)

(back to top)

About

Client for interactions with the Plunet SOAP API v 3.0

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages