Testers and Contributors for updated Plankapy (v2) #1000
Replies: 2 comments 9 replies
-
Hi there, I dont know how to programm but If I can help , just tell me what to do. best regards |
Beta Was this translation helpful? Give feedback.
-
Hi, I've been working on a long time project of migrating boards from trello to planka. I'm writing in python. Implemented: json export of boards with more than 1000 actions. Export of all attachments. But at the moment I can't do anything about importing attachments into planka. Because there is no api for working with attachments yet? How can I join the development? My goal is to create a universal python tool for mass migration of boards from trello to planka with all attachments/structure. |
Beta Was this translation helpful? Give feedback.
-
I've been re-writing the plankapy python module over the past few months when I get the chance to make it more usable. The current re-write is living here under the
v2-working
main
branch.I think the new version is more usable and extensible than the original that I threw together in a weekend. However as I'm currently the only one working on this branch, I can't really get any good feedback or reports. If anyone here is interested in taking a look or playing around with it to let me know if it's useful or not that would be greatly appreciated.
Because there are currently several forks of the original code and the new code is incompatible with anything that uses
v1
, I'm not sure exactly what to do.I have an open issue here for discussion with the community on how I should handle these conflicting implementations of the API in Python.I've decided to move the old code to it's own branchv1
and move the new version intomain
.As of now it requires no dependencies (not even
requests
), but I've moved all request handling to ahandlers.py
submodule and created aBaseHandler
protocol so alternate handlers can be written foe edge cases (the current implementation can't render Javascript clientside, so a few of the endpoints that require that are dead).Here's a quick peek at how it's used:
Beta Was this translation helpful? Give feedback.
All reactions