The official Felt API client library
Project description
The official Python client for the Felt API
felt-python is a Python client for the Felt API. It provides convenient wrappers for common operations like creating, deleting and updating maps and data layers.
This client is especially useful at simplifying certain operations like uploading and refreshing files and (Geo)DataFrames or updating layer styles and element properties.
Installation
pip install felt-python
Basic Usage
Authentication
To authenticate with the Felt API, you need to provide your API token. You can either
pass it explicitly to function calls or set it in the FELT_API_TOKEN environment variable.
Use the Felt dashboard to create a new token.
import os
os.environ["FELT_API_TOKEN"] = "YOUR_API_TOKEN"
Create a map
from felt_python import create_map
response = create_map(
title="My new map",
lat=40,
lon=-3,
public_access="private",
)
map_id = response["id"]
Upload anything
from felt_python import upload_file
upload = upload_file(
map_id=map_id,
file_name="path/to/file.csv",
layer_name="My new layer",
)
layer_id = upload["layer_id"]
Uploading a Pandas DataFrame
import pandas as pd
from felt_python import upload_dataframe
df = pd.read_csv("path/to/file.csv")
upload_dataframe(
map_id=map_id,
dataframe=df,
layer_name="Felt <3 Pandas",
)
Uploading a GeoPandas GeoDataFrame
import geopandas as gpd
from felt_python import upload_geodataframe
gdf = gpd.read_file("path/to/file.shp")
upload_geodataframe(
map_id=map_id,
geodataframe=gdf,
layer_name="Felt <3 GeoPandas",
)
Refreshing a layer
from felt_python import refresh_file_layer
refresh_file_layer(
map_id=map_id,
layer_id=layer_id,
file_path="path/to/new_file.csv",
)
Styling a layer
from felt_python import get_layer, update_layer_style
current_style = get_layer(
map_id=map_id,
layer_id=layer_id,
)["style"]
new_style = current_style.copy()
new_style["color"] = "#FF0000"
new_style["size"] = 20
update_layer_style(
map_id=map_id,
layer_id=layer_id,
style=new_style,
)
Notebooks
Check out our Juypter notebooks for a complete set of examples.
Documentation
Visit the API Reference section of our Developer docs for complete documentation of all endpoints in the REST API.
Support
We are always eager to hear from you. Reach out to support@felt.com for all your Felt support needs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file felt_python-0.1.3.tar.gz.
File metadata
- Download URL: felt_python-0.1.3.tar.gz
- Upload date:
- Size: 32.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ce3d5f292aa923de4be15d8782acf0d118cc537761d8e1e104d527fca596001
|
|
| MD5 |
6400f0aa00a59f7f375a151cbc9f2c33
|
|
| BLAKE2b-256 |
4e1b48ccb604fb0bd386023e73438d019a057ef4cb303bd9fe762a1f01ea50d4
|
File details
Details for the file felt_python-0.1.3-py3-none-any.whl.
File metadata
- Download URL: felt_python-0.1.3-py3-none-any.whl
- Upload date:
- Size: 16.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28fdb56fea5e9ce25338f9cfa6d612f6707ca8dd9df0454a72b7b5bfb9bb651c
|
|
| MD5 |
e2f222bf42cdd9a7ca2457fa5a123fb9
|
|
| BLAKE2b-256 |
29d9855db6f1854c2cef6e24cfe0651bb0152ce6058985e91d6c13c5f13d4a23
|