Skip to content

Commit f6c3ce4

Browse files
committed
fix node and python package READMEs
1 parent 8bd1217 commit f6c3ce4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

ingestors/node/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ npm install metlo
2020
```
2121
Or from `yarn` by running:
2222
```bash
23-
yarn install metlo
23+
yarn add metlo
2424
```
2525

2626
## Configuration

ingestors/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metlo",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"license": "MIT",
55
"description": "The node agent for Metlo API Security.",
66
"main": "dist/index.js",

ingestors/python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ METLO_CONFIG = {
3939
}
4040
```
4141

42-
`METLO_CONFIG` can take an optional key-value pair representing the max number of workers for communicating with METLO.
42+
`METLO_CONFIG` can take an optional key-value pair representing the max number of workers for communicating with Metlo.
4343

4444
### Flask
4545

46-
Once installed, METLO middleware can be added simply like :
46+
Once installed, Metlo middleware can be added simply like:
4747

4848
```python
4949
from flask import Flask
@@ -55,8 +55,8 @@ app = Flask(__name__)
5555
MetloFlask(app, "<YOUR_METLO_COLLECTOR_URL>", "<YOUR_METLO_API_KEY>")
5656
```
5757

58-
The Flask Middleware takes the flask app, METLO collector url, and the METLO API Key as parameters. As an optional
59-
parameter, a named value can be passed for max number of workers for communicating with METLO.
58+
The Flask Middleware takes the flask app, Metlo collector url, and the Metlo API Key as parameters. As an optional
59+
parameter, a named value can be passed for max number of workers for communicating with Metlo.
6060

6161
```python
6262
MetloFlask(app, "<YOUR_METLO_COLLECTOR_URL>", "<YOUR_METLO_API_KEY>", workers="<WORKER-COUNT>")

ingestors/python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = metlo
3-
version = 0.0.14
3+
version = 0.0.15
44
description = The Python Agent for Metlo
55
long_description = file: README.md
66
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)