tap-sharepointsites
is a Singer tap for Microsoft Graph Sharepoint lists.
Built with the Meltano Tap SDK for Singer Taps.
catalog
state
discover
about
stream-maps
schema-flattening
Setting | Required | Default | Description |
---|---|---|---|
api_url | True | None | The url for the API service |
lists | False | None | The name of the list to sync |
files | False | None | Files to sync |
pages | False | None | Whether or not to sync pages |
client_id | False | None | Managed Identity Client ID |
stream_maps | False | None | Config object for stream maps capability. For more information check out Stream Maps. |
stream_map_config | False | None | User-defined config values to be used within map expressions. |
flattening_enabled | False | None | 'True' to enable schema flattening and automatically expand nested properties. |
flattening_max_depth | False | None | The max depth to flatten schemas. |
batch_config | False | None |
A full list of supported settings and capabilities is available by running: tap-sharepointsites --about
The file configuration accepts an array of objects, with keys:
name
: Name given to the stream/tablefile_pattern
: regex-like pattern for filenames to loadfolder
: Subfolder where the files are locatedfile_type
: Type (format) of file to load, eithercsv
orexcel
.delimiter
: Field delimiter for CSV files. default,
clean_colnames
: Whether to convert column names to snake_case. defaultfalse
Example config:
...
config:
...
files:
- name: employees
file_pattern: employees_.*\.csv
folder: hr_data/raw
file_type: csv
clean_colnames: true
...
You can sync the content of sharepoint web pages, typically relevant for LLM/RAG type of use cases. The Microsoft Graph endpoint for pages is still in Beta, and does not work when logged in as a personal user. In order for it to work, you need to use a Managed Identity.
Example config:
...
config:
...
pages: true
...
A full list of supported settings and capabilities for this tap is available by running:
tap-sharepointsites --about
This Singer tap will automatically import any environment variables within the working directory's
.env
if the --config=ENV
is provided, such that config values will be considered if a matching
environment variable is set either in the terminal context or in the .env
file.
You can easily run tap-sharepointsites
by itself or in a pipeline using Meltano.
tap-sharepointsites --version
tap-sharepointsites --help
tap-sharepointsites --config CONFIG --discover > ./catalog.json
Follow these instructions to contribute to this project.
pipx install poetry
poetry install
Create tests within the tap_sharepointsites/tests
subfolder and
then run:
poetry run pytest
You can also test the tap-sharepointsites
CLI interface directly using poetry run
:
poetry run tap-sharepointsites --help
Testing with Meltano
Note: This tap will work in any Singer environment and does not require Meltano. Examples here are for convenience and to streamline end-to-end orchestration scenarios.
Next, install Meltano (if you haven't already) and any needed plugins:
# Install meltano
pipx install meltano
# Initialize meltano within this directory
cd tap-sharepointsites
meltano install
Now you can test and orchestrate using Meltano:
# Test invocation:
meltano invoke tap-sharepointsites --version
# OR run a test `elt` pipeline:
meltano elt tap-sharepointsites target-jsonl
See the dev guide for more instructions on how to use the SDK to develop your own taps and targets.