Backup PMP450 config using python

Im unable to find any proper documentation or procedure to work with Cambium devices to pull their config as backup using ssh or snmp. Im thinking to try this with python or ansible.
Any help or example appreciated from the community.

wich model?

epmp:
create backup file:
CAMBIUM-PMP80211-MIB::cambiumJSONCfgExport
get URL to download it:
CAMBIUM-PMP80211-MIB::cambiumJSONCfgExportLink

450 family:
export to URL config file:
WHISP-BOX-MIBV2-MIB::exportConfigFile.0

Yes we have Canopy 15.2AP 450 devices.
Sorry i didnt understand your answer. Can you draft me an example backup script to work with. Thanks for the help in advance.

Hi,

you need a webserver accepting DAV PUT request.
Example you have a webserver receving PUT request at http://10.10.10.10/upload/ and your AP is 10.12.12.12

snmpset -v2c -c your_snmp_community 10.12.12.12 WHISP-BOX-MIBV2-MIB::exportConfigFile.0 s "http://10.10.10.10/upload/save_config.cfg"

I can see you used the snmp v2. I have configured snmpv3 for my device. Can you please help with the snmp v3 command too along with the python script if possible. Thanks.