Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Xiangzhou/fix issue make post request #15

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
aed5a36
Merge pull request #4 from eclipse-iofog/fixes
Xaoc000 Sep 26, 2019
f0b5d75
python 1.3.0 Ready for RC status
Xaoc000 Sep 26, 2019
0508097
python 1.3.0 Ready for RC status
Xaoc000 Sep 26, 2019
bf24d60
python 1.3.0 Ready for RC status
Xaoc000 Sep 26, 2019
dfe7b32
python 1.3.0 Ready for RC status
Xaoc000 Sep 26, 2019
6449ad0
python 1.3.0 Ready for RC status
Xaoc000 Sep 26, 2019
7ceaa68
Changelog for 1.3.0
Xaoc000 Sep 26, 2019
4106097
Changelog for 1.3.0
Xaoc000 Sep 26, 2019
764cfef
Split client and deployment sections
Xaoc000 Oct 2, 2019
8a25147
Update README.md
Pixcell Oct 2, 2019
796f35c
Pipeline triggers
Nov 8, 2019
20e5ec6
Python2 docker image tag
Nov 8, 2019
d327a42
Test
Nov 8, 2019
a34d1ba
Test
Nov 8, 2019
809ac32
Artifacts
Nov 8, 2019
2c2e82d
Artifacts
Nov 8, 2019
8f880bb
Artifacts
Nov 8, 2019
2e9cb98
Artifacts
Nov 8, 2019
2c85072
Setup tools
Nov 8, 2019
e29cd4b
Description content type
Nov 8, 2019
f3058f8
Add rest pkg
Aug 14, 2020
fd349f7
Add upgrade_agent to rest client
Sep 10, 2020
11960e6
Fix upgrade version func
Sep 10, 2020
c7c4844
Add patch agent function
Sep 10, 2020
5110be6
Specify py 3.7 in pipeline
Sep 10, 2020
1403129
Remove python 2.7
Sep 16, 2020
3bbb813
Remove deploy module and rename client module to microservices
Sep 16, 2020
4a62879
Rename and update changelog
Sep 16, 2020
a4097d7
Update version to 2.0.0
Sep 17, 2020
ae74361
Fix packaging
Sep 17, 2020
e5ee081
2.0.1
Sep 17, 2020
297741d
fix issue in make_post_request and update tests to get it running
Apr 29, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## [v2.0.0] - unreleased

* Remove deploy module
* Add rest.controller module
* Rename client module to microservices

## [v1.3.0]

* Ability to deploy ioFog microservices, and connections through SDK are now available.
* This can be imported through iofog_python_sdk.deploy options.
* Previous standard iofog_python_sdk can be imported through iofog_python_sdk.microservices
* Added standards for rest calls made to ioFog under deploy.create_rest_call
* Fixed issue with python3 object handling
4 changes: 2 additions & 2 deletions Docker/Dockerfile.recieve
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ COPY test/recieve.py recieve.py

RUN pip install ws4py

RUN python -m pip install iofog-python-sdk
ADD iofog_python_sdk iofog_python_sdk

ENTRYPOINT ["python", "recieve.py"]
CMD export SELFNAME=iofog; python recieve.py
5 changes: 3 additions & 2 deletions Docker/Dockerfile.send
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ COPY test/send.py send.py

RUN pip install ws4py

RUN python -m pip install iofog-python-sdk
ADD iofog_python_sdk iofog_python_sdk

CMD export SELFNAME=iofog; python send.py

ENTRYPOINT ["python", "send.py"]
47 changes: 34 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# iofog-python-sdk

This SDK provides the following modules:
* microservices: Clients for Microservices to talk to ioFog (e.g. ioMessage and Web Socket clients)
* rest.controller: Client for Controller REST API

## Installation

Install python package:
```bash
sudo python3 -m pip install iofog-python-sdk
```

## Client

This module lets you easily build an ioElement. It gives you all the functionality to interact with ioFog via Local API. It contains all necessary methods for IoMessage transformation as well.

- send new message to ioFog (post_message)
Expand All @@ -10,19 +23,14 @@ This module lets you easily build an ioElement. It gives you all the functionali
- connect to ioFog Control Channel via WebSocket (establish_control_ws_connection)
- connect to ioFog Message Channel via WebSocket (establish_message_ws_connection) and publish new message via this channel (post_message_via_socket)

## Code snippets:

Install python package:
```bash
sudo python2 -m pip install iofog-python-sdk
```
### Code snippets:

Import iofog client and additional classes to your project:
```python
from iofog_python_sdk.client import IoFogClient
from iofog_python_sdk.exception import IoFogException
from iofog_python_sdk.iomessage import IoMessage
from iofog_python_sdk.listener import *
from iofog_python_sdk.microservices.client import IoFogClient
from iofog_python_sdk.microservices.exception import IoFogException
from iofog_python_sdk.microservices.iomessage import IoMessage
from iofog_python_sdk.microservices.listener import *
```

Create IoFog client with default settings:
Expand All @@ -41,7 +49,7 @@ except IoFogException as e:
# client creation failed, e contains description
```

#### REST calls
##### REST calls

Get list of next unread IoMessages:
```python
Expand Down Expand Up @@ -94,7 +102,7 @@ except IoFogException, ex:
```


#### WebSocket calls
##### WebSocket calls

To use websocket connections you should implement listeners as follows:
```python
Expand Down Expand Up @@ -126,7 +134,7 @@ client.post_message_via_socket(io_msg_instance)
```


#### Message utils
##### Message utils
Construct IoMessage from JSON(both json string and python dictionary are acceptable):
```python
msg = IoMessage.from_json(json_msg)
Expand All @@ -146,3 +154,16 @@ Pack IoMessage into bytearray:
```python
msg_bytes = io_msg_instance.to_bytearray()
```
## Deploy

This module lets you easily communicate with the [Controller REST API](https://iofog.org/docs/1.3.0/controllers/rest-api.html).

- Deploy flow, microservices, agents, etc.
- Edit microservice configuration
- Edit flow routing

#### Disclaimer

These modules are a Work In Progress. It was first written as a set of helper functions used by a python script to deploy a set of microservices configured using yaml files.

Our [golang SDK](https://github.com/eclipse-iofog/iofog-go-sdk) is highly recommended as Controller REST API client.
40 changes: 24 additions & 16 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
trigger:
tags:
include:
- v*
branches:
include:
- master
- develop
- release*
paths:
exclude:
- README.md
Expand All @@ -17,25 +20,30 @@ jobs:
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: UsePythonVersion-3.x
- task: UsePythonVersion@0
inputs:
versionSpec: '3.5'
versionSpec: '3.7'
addToPath: true
architecture: 'x64'
- script: |
bash ./build.sh 'python3'
displayName: 'Building-3.x'
displayName: 'Building 3.7'
- script: |
bash ./test.sh
displayName: 'Testing-3.x'
- task: UsePythonVersion-2.7
bash ./test.sh 'python3'
displayName: 'Testing 3.7'
- task: CopyFiles@2
inputs:
versionSpec: '2.7'
addToPath: true
architecture: 'x64'
- script: |
bash ./build.sh
displayName: 'Building-2.7'
- script: |
bash ./test.sh
displayName: 'Testing-2.7'
SourceFolder: $(System.DefaultWorkingDirectory)
TargetFolder: $(Build.ArtifactStagingDirectory)
Contents: |
setup.py
requirements.txt
README.md
iofog_python_sdk/**/*
OverWrite: true
displayName: 'Copy artifacts'
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'sdk'
displayName: 'Publish artefacts'
4 changes: 0 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,3 @@ fi
# Build Python Images
docker build --build-arg TAG_NAME=${PYTHON_TAG} -t iofog/test-python-sdk-send:${PYTHON_VERSION} -f ./Docker/Dockerfile.send .
docker build --build-arg TAG_NAME=${PYTHON_TAG} -t iofog/test-python-sdk-recieve:${PYTHON_VERSION} -f ./Docker/Dockerfile.recieve .

# Push Python Images
docker push iofog/test-python-sdk-send:${PYTHON_VERSION}
docker push iofog/test-python-sdk-recieve:${PYTHON_VERSION}
33 changes: 0 additions & 33 deletions iofog_python_sdk/agent_service.py

This file was deleted.

102 changes: 0 additions & 102 deletions iofog_python_sdk/catalog_service.py

This file was deleted.

47 changes: 0 additions & 47 deletions iofog_python_sdk/create_rest_call.py

This file was deleted.

Loading