python-fmrest
python-fmrest copied to clipboard
Python wrapper around the FileMaker Data API

Hi, been this all day. How do you resolve this bug on your end related to portal looping in the template?
I like `python-fmrest`, but it doesn't support asyncio. I would like to make API calls like this. ``` async def f(): await fms.login() record = await fms.get_record(1) return record ```
Server().__init__ appears to have no call to super(), which breaks MRO when creating a class user Server() as one of several baseclasses (multiple inheritance). This can break other class's code...
Added calls in object __init__() methods to super() to support python's MRO. Addresses Issue #22.
Current examples only show FMSv17 style of executing scripts. TODO: Update examples.
Currently if FileMaker server returns an error an exception of type `FileMakerError` is raised. The same exception is used for all error types. The problem that I am finding is...
There was an error connecting to the server, the request timed out#012#012Request error: HTTPSConnectionPool(host='est-dev.chicodc.com', port=443): Max retries exceeded with url: /fmi/data/vLatest/databases/HRYCG%20SOLUTION%20LIVE%202020/sessions/ (Caused by ConnectTimeoutError(, 'Connection to est-dev.chicodc.com timed out. (connect...
Is there a way to access the messages array (which contains "code" and "message") that's returned by the FileMaker Data API when a record is created please? Thanks in advance.
Hi David, Your examples shows FileMaker Server Data API. Can I also use python-fmrest to directly access a local Filemaker database(.fmp12) without Server Connection? I want to extract some fields...