Skip to main content
Archived

Jupyter Notebook integration

Related products:FME Form
  • October 17, 2017
  • 1 reply
  • 88 views

geosander
Forum|alt.badge.img+7

Wouldn't it be nice to introduce a Jupyter Notebook <-> FME Server Python API? This could be a parallel development next to the existing Python FMEObjects API (and it could also leverage it), like Esri did for instance with their well-known ArcPy library and their newer ArcGIS API for Python.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

  • October 19, 2021

The FMEObjects python module already works within Jupyter Notebooks. Just use this code in your first cell to get access:

 

import sys

sys.path.append(r"C:\\Program Files\\FME\\fmeobjects\\python37")

import fmeobjects