Skip to content

Python library to interact with OpenProject API.

License

Notifications You must be signed in to change notification settings

bandle/pyopenproject

 
 

Repository files navigation

PyOpenProject

Codacy Badge Codacy Badge Run Test Cases

Python library to interact with OpenProject API.

from pyopenproject.openproject import OpenProject

op = OpenProject(url="http:https://localhost:8080", api_key="6289058256894568479567886794")
user = op.get_user_service().create(
    login="h.wurst",
    email="[email protected]",
    first_name="Hans",
    last_name="Wurst",
    admin=False,
    language="de",
    status="active",
    # Password minimum is 10 characters)
    password="h.wurst1234567890"
)

This library could be understood as a compendium of OpenProject endpoints services to use in a client project with the purpose of interact with OpenProject instance through its API.

Installing pyopenproject

PyOpenProject is available on PyPI:

python -m pip install pyopenproject

Documentation

Contributing

If you want to contribute, please:

  1. Fork it (https://github.com/Flying-Free/pyopenproject/fork)
  2. Create your feature branch (git checkout -b feature/newEndpoint)
  3. Commit your changes (git commit -am 'Add some new Endpoint')
  4. Push to the branch (git push origin feature/newEndpoint)
  5. Create a new Pull Request

Authors

Contributors

About

Python library to interact with OpenProject API.

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.6%
  • Other 0.4%