nielstron / pyboinc

A very basic package to connect to a BOINC client based on the BOINC GUI RPC Protocol
MIT License
8 stars 2 forks source link

pyboinc seems unable to parse some commands #5

Open makeasnek opened 1 year ago

makeasnek commented 1 year ago

Describe the bug pyBOINC produces incomplete or no output for the commands get_statistics and get_old_results which is odd because it seems to have no trouble parsing content from other commands which similar return data. See https://github.com/BOINC/boinc/issues/5349 for more details about this.

With the help of Vitalii @ BOINC, I can see that BOINC is actually returning the information correctly in the RPC reply, so this is an issue on the pyboinc side.

I may get around to investigating and fixing this myself, but if not I thought it would be a good idea to create an issue for it.

nielstron commented 1 year ago

Thanks for raising this issue. It is likely that there is no (proper) support for the given commands since

The Interface is primarily meant for controlling a BOINC Client and hence does not support all features of the protocol.

But I appreciate any efforts to extend/patch the package!