Skip to content

Commit ba89843

Browse files
authored
Merge pull request #67 from resurfaceio/v3.0.x
Stable changes for V3.0
2 parents d06ece1 + 60de876 commit ba89843

26 files changed

+279
-146
lines changed

.env

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
USAGE_LOGGERS_DISABLE=False
2+
USAGE_LOGGERS_URL="http://localhost:7701/message"

.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
USAGE_LOGGERS_DISABLE=False
2-
USAGE_LOGGERS_URL="http://localhost:4001/message"
2+
USAGE_LOGGERS_URL="http://localhost:7701/message"
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Crossplatform Tests
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
test:
9+
runs-on: ${{ matrix.os }}
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest, windows-latest]
13+
python-version: ["3.6", "3.7", "3.8", "3.9"]
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install tox tox-gh-actions
25+
- name: Test with tox
26+
run: tox

.github/workflows/pytest.yml

-27
This file was deleted.

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ pip3 install --upgrade usagelogger
4040

4141
```python
4242
from aiohttp import web
43-
from usagelogger.aiohttp import HttpLoggerForAIOHTTP
43+
from usagelogger.middleware.aiohttp import HttpLoggerForAIOHTTP
4444

4545
async def test(request):
4646
return web.Response(text="Hello")
4747

4848
app = web.Application(
4949
middlewares=[
5050
HttpLoggerForAIOHTTP(
51-
url="http://localhost:4001/message", rules="include debug"
51+
url="http://localhost:7701/message", rules="include debug"
5252
)
5353
]
5454
)
@@ -66,7 +66,7 @@ First edit `settings.py` to register middleware, like this:
6666

6767
```python
6868
MIDDLEWARE = [
69-
"usagelogger.django.HttpLoggerForDjango", # Always on the top
69+
"usagelogger.middleware.django.HttpLoggerForDjango", # Always on the top
7070
"django.middleware...",
7171
]
7272
```
@@ -75,7 +75,7 @@ Then add a new section to `settings.py` for logging configuration, like this:
7575

7676
```python
7777
USAGELOGGER = {
78-
'url': 'http://localhost:4001/message',
78+
'url': 'http://localhost:7701/message',
7979
'rules': 'include debug'
8080
}
8181
```
@@ -86,12 +86,12 @@ USAGELOGGER = {
8686

8787
```python
8888
from flask import Flask
89-
from usagelogger.flask import HttpLoggerForFlask
89+
from usagelogger.middleware.flask import HttpLoggerForFlask
9090

9191
app = Flask(__name__)
9292

9393
app.wsgi_app = HttpLoggerForFlask( # type: ignore
94-
app=app.wsgi_app, url="http://localhost:4001/message", rules="include debug"
94+
app=app.wsgi_app, url="http://localhost:7701/message", rules="include debug"
9595
)
9696

9797
@app.route("/")
@@ -108,7 +108,7 @@ app.run(debug=True)
108108
```python
109109
from usagelogger import resurface
110110

111-
s = resurface.Session(url="http://localhost:4001/message", rules="include debug")
111+
s = resurface.Session(url="http://localhost:7701/message", rules="include debug")
112112
s.get(...)
113113
```
114114

pyproject.toml

+8
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ exclude = '''
1717
'''
1818

1919
[tool.pytest.ini_options]
20+
testpaths = [
21+
"tests",
22+
]
2023
log_cli = true
2124
log_cli_level = "CRITICAL"
2225
log_cli_format = "%(message)s"
@@ -25,3 +28,8 @@ log_file = "test_debug.log"
2528
log_file_level = "DEBUG"
2629
log_file_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
2730
log_file_date_format = "%Y-%m-%d %H:%M:%S"
31+
32+
[build-system]
33+
requires = ["setuptools>=42.0", "wheel"]
34+
build-backend = "setuptools.build_meta"
35+

requirements_dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ pytest==6.2.2
1111
Werkzeug==1.0.1
1212
django==3.1.12
1313
aiohttp==3.7.4
14+
tox==3.24.3

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

setup.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
from setuptools import find_packages, setup
1+
from distutils import util
2+
3+
from setuptools import setup
24

35

46
def read_file(name):
57
with open(name) as fd:
68
return fd.read()
79

810

11+
middleware = util.convert_path("usagelogger/middleware")
12+
utils = util.convert_path("usagelogger/utils")
13+
914
setup(
1015
name="usagelogger",
11-
version="2.2.6",
16+
version="3.0.0",
1217
description="Logging usage of Python-based services, with user privacy by design.",
1318
long_description=read_file("DESCRIPTIONS.md"),
1419
long_description_content_type="text/markdown",
@@ -27,9 +32,15 @@ def read_file(name):
2732
"Programming Language :: Python :: 3.9",
2833
],
2934
keywords="logging resurface",
30-
packages=find_packages(exclude=["tests"]),
35+
package_dir={
36+
"usagelogger": "usagelogger",
37+
"usagelogger.middleware": middleware,
38+
"usagelogger.utils": utils,
39+
},
40+
packages=["usagelogger", "usagelogger.middleware", "usagelogger.utils"],
41+
# packages=find_packages(exclude=["tests"]),
3142
python_requires=">=3.7, <4",
32-
install_requires=read_file("requirements.txt").splitlines(),
43+
install_requires=["requests>=2"],
3344
include_package_data=True,
3445
tests_require=["pytest"],
3546
project_urls={

tests/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import os
2+
import sys
3+
4+
sys.path.append("/usagelogger")
5+
os.environ.setdefault("DEBUG", "True")

tox.ini

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[tox]
2+
minversion = 3.8.0
3+
envlist = py37, py38, py39, flake8, mypy
4+
isolated_build = true
5+
6+
[gh-actions]
7+
python =
8+
3.7: py37
9+
3.8: py38, mypy, flake8
10+
3.9: py39
11+
12+
[testenv]
13+
setenv =
14+
PYTHONPATH = {toxinidir}
15+
deps =
16+
-r{toxinidir}/requirements_dev.txt
17+
commands =
18+
pytest --basetemp={envtmpdir}
19+
20+
; [testenv:flake8]
21+
; basepython = python3.8
22+
; deps = flake8
23+
; commands = flake8 usagelogger
24+
25+
; [testenv:mypy]
26+
; basepython = python3.8
27+
; deps =
28+
; -r{toxinidir}/requirements_dev.txt
29+
; commands = mypy usagelogger

usagelogger/__init__.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from . import middleware # noqa
12
from .base_logger import BaseLogger # noqa
23
from .http_logger import HttpLogger # noqa
34
from .http_message import HttpMessage # noqa
@@ -16,4 +17,10 @@
1617
"BaseLogger",
1718
"HttpLogger",
1819
"HttpMessage",
20+
"resurface",
21+
"middleware",
22+
# Depricating soon
23+
"flask",
24+
"django",
25+
"aiohttp",
1926
]

0 commit comments

Comments
 (0)