Skip to main content

No project description provided

Project description

Flatfile Python Library

pypi fern shield

Documentation

API reference documentation is available here.

Installation

Add this dependency to your project's build file:

pip install flatfile
# or
poetry add flatfile

Usage

from flatfile.client import FlatFile
import flatfile

flatfile_client = FlatFile(
  token="API_KEY"
)

environment = flatfile_client.environments.create(
  name = 'dev',
  is_prod = False,
  new_spaces_inherit = False,
  guest_authentication = [flatfile.GuestAuthenticationEnum.SHARED_LINK],
);

print(f"Created environment with id {environment.id}");

Async Client

from flatfile.client import AsyncFlatFile
import flatfile

import asyncio

flatfile_client = AsyncFlatFile(
  token="API_KEY"
)

async def create_environment() -> None:
    environment = flatfile_client.environments.create(
      name = 'dev',
      is_prod = False,
      new_spaces_inherit = False,
      guest_authentication = [flatfile.GuestAuthenticationEnum.SHARED_LINK],
    );
    print(f"Created environment with id {environment.id}");

asyncio.run(create_environment())

Timeouts

By default, the client is configured to have a timeout of 60 seconds. You can customize this value at client instantiation.

from flatfile.client import FlatFile
import flatfile

flatfile_client = FlatFile(
  token="API_KEY",
  timeout=30
)

Handling Exceptions

All exceptions thrown by the SDK will sublcass flatfile.ApiError.

from flatfile.core import ApiError
import flatfile

try:
  flatfile_client.environments.get(id="environment-id")
except flatfile.BadRequestError as e: 
  # handle bad request error
except APIError as e:  
  # handle any api related error

Error codes are as followed:

Status Code Error Type
400 BadRequestError
404 NotFoundError

Beta status

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning the package version to a specific version in your pyproject.toml file. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flatfile-1.0.0.tar.gz (166.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flatfile-1.0.0-py3-none-any.whl (399.9 kB view details)

Uploaded Python 3

File details

Details for the file flatfile-1.0.0.tar.gz.

File metadata

  • Download URL: flatfile-1.0.0.tar.gz
  • Upload date:
  • Size: 166.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.8.18 Linux/5.15.0-1078-azure

File hashes

Hashes for flatfile-1.0.0.tar.gz
Algorithm Hash digest
SHA256 3cebf52032c84f16be18bd5e8ef835aff4681cb7f682e5bb704ceb4ec27ab681
MD5 232f49c91ca57b04f610a6fa4f682361
BLAKE2b-256 038d4ea54fc1c11124efaabfd3bff4ed844102bdfd2709709187363148073198

See more details on using hashes here.

File details

Details for the file flatfile-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: flatfile-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 399.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.8.18 Linux/5.15.0-1078-azure

File hashes

Hashes for flatfile-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 45d95aa42af0c1b2e43f939ebb629bc4306024a4a3dbb0519c8ecf959f54dd63
MD5 6cf99760f322fe859d3ae40b1fe75961
BLAKE2b-256 66c91376270a3b2589e27aef07f6bd05de198065982f94c3cc7a56240208d2b5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page