Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waldekmastykarz/graph-connector-python-md
https://github.com/waldekmastykarz/graph-connector-python-md
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/waldekmastykarz/graph-connector-python-md
- Owner: waldekmastykarz
- Created: 2023-10-03T18:10:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-06T17:08:30.000Z (about 1 year ago)
- Last Synced: 2024-04-23T14:10:27.341Z (7 months ago)
- Language: Python
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
## Prerequisites
- [Microsoft Graph CLI](https://devblogs.microsoft.com/microsoft365dev/microsoft-graph-cli-v1-0-0-release-candidate-now-with-beta-support/)
- [jq](https://jqlang.github.io/jq/)
- [pyenv](https://github.com/pyenv/pyenv)## Minimal Path to Awesome
```sh
# make the setup script executable
chmod +x ./setup.sh
# create Entra app
./setup.sh
# ensure you've got Python 3.11 installed
pyenv install 3.11
# use Python 3.11 in the project
pyenv local 3.11
# create virtual environment
python3 -m venv venv
# activate virtual environment
source venv/bin/activate
# restore dependencies
pip install -r requirements.txt
# create connection
python3 main.py create-connection
# load content
python3 main.py load-content
# deactivate virtual environment
deactivate
```