python-fmrest icon indicating copy to clipboard operation
python-fmrest copied to clipboard

Python wrapper around the FileMaker Data API

Results 23 python-fmrest issues
Sort by recently updated
recently updated
newest added

Bumps [requests](https://github.com/psf/requests) from 2.22.0 to 2.32.0. Release notes Sourced from requests's releases. v2.32.0 2.32.0 (2024-05-20) 🐍 PYCON US 2024 EDITION 🐍 Security Fixed an issue where setting verify=False on the...

dependencies

Enable dateFormats in "create_record()" and "edit_record()". This would complement the way dateFormats can be specified in get_record() and get_records(). For reference see options here: https://help.claris.com/en/data-api-guide/content/edit-record.html https://help.claris.com/en/data-api-guide/content/create-record.html

I have created a wrapper around python-fmrest where I have: def __init__(self, fm_server_url, fm_user, fm_password, fm_db_name): self.fms.login() def __del__(self): self.fms.logout() I get this error: Exception ignored in: Traceback (most recent...