Skip to content

Commit

Permalink
[docs] add sanic integration details
Browse files Browse the repository at this point in the history
  • Loading branch information
Gr1N committed May 15, 2019
1 parent cd89470 commit 525e712
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## 0.5.0 (2019-XX-XX)

- Added AIOHTTP integration helpers (cleanup context and middleware).
- Added [`AIOHTTP`](https://aiohttp.readthedocs.io/) framework integration helpers (cleanup context and middleware).
- Added [`Sanic`](https://sanicframework.org/) framework integration helpers (listeners and middlewares).

## 0.4.0 (2019-04-29)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Just type:
$ pip install aiodogstatsd
```

...or if you're interested in integration with [`AIOHTTP`](https://aiohttp.readthedocs.io/) framework specify corresponding extras:
...or if you're interested in integration with [`AIOHTTP`](https://aiohttp.readthedocs.io/) or [`Sanic`](https://sanicframework.org/) frameworks specify corresponding extras:

```sh
$ pip install aiodogstatsd[aiohttp]
$ pip install aiodogstatsd[aiohttp,sanic]
```

## Usage
Expand Down Expand Up @@ -60,7 +60,7 @@ loop = asyncio.get_event_loop()
loop.run_until_complete(main())
```

Look at `examples/` to find more examples of library usage, e.g. integration with [`AIOHTTP`](https://aiohttp.readthedocs.io/) framework.
Look at `examples/` to find more examples of library usage, e.g. integration with [`AIOHTTP`](https://aiohttp.readthedocs.io/) or [`Sanic`](https://sanicframework.org/) frameworks.

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ readme = "README.md"
homepage = "https://github.com/Gr1N/aiodogstatsd"
repository = "https://github.com/Gr1N/aiodogstatsd"

keywords = ["asyncio", "statsd", "statsd-client", "statsd-metrics", "dogstatsd", "aiohttp"]
keywords = ["asyncio", "statsd", "statsd-client", "statsd-metrics", "dogstatsd"]

classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
Expand Down

0 comments on commit 525e712

Please sign in to comment.