insider-python 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {insider_python-0.1.1 → insider_python-0.1.2}/PKG-INFO +3 -2
- {insider_python-0.1.1 → insider_python-0.1.2}/pyproject.toml +3 -2
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/_version.py +1 -1
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/PKG-INFO +3 -2
- {insider_python-0.1.1 → insider_python-0.1.2}/README.md +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/setup.cfg +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/__init__.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/_envelope.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/client.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/contrib/__init__.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/contrib/django/__init__.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/contrib/django/apps.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/contrib/django/middleware.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/dsn.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/py.typed +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/safety.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/scope.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/scrubbing.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/stacktrace.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/transport.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/SOURCES.txt +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/dependency_links.txt +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/requires.txt +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/top_level.txt +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_capture.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_django.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_dsn.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_envelope.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_never_crash.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_safety.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_scrubbing.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_stacktrace.py +0 -0
- {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_transport.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: insider-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Python SDK for Insider — ship Beacons to your Insider server.
|
|
5
5
|
Author: Insider
|
|
6
6
|
License-Expression: MIT
|
|
@@ -9,12 +9,13 @@ Keywords: insider,telemetry,errors,monitoring,sdk
|
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
17
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
-
Requires-Python: >=3.
|
|
18
|
+
Requires-Python: >=3.8
|
|
18
19
|
Description-Content-Type: text/markdown
|
|
19
20
|
Requires-Dist: urllib3>=1.26
|
|
20
21
|
Provides-Extra: django
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "insider-python"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Python SDK for Insider — ship Beacons to your Insider server."
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
11
|
license = "MIT"
|
|
12
12
|
authors = [{ name = "Insider" }]
|
|
13
13
|
keywords = ["insider", "telemetry", "errors", "monitoring", "sdk"]
|
|
@@ -15,6 +15,7 @@ classifiers = [
|
|
|
15
15
|
"Development Status :: 3 - Alpha",
|
|
16
16
|
"Intended Audience :: Developers",
|
|
17
17
|
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.8",
|
|
18
19
|
"Programming Language :: Python :: 3.9",
|
|
19
20
|
"Programming Language :: Python :: 3.10",
|
|
20
21
|
"Programming Language :: Python :: 3.11",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: insider-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Python SDK for Insider — ship Beacons to your Insider server.
|
|
5
5
|
Author: Insider
|
|
6
6
|
License-Expression: MIT
|
|
@@ -9,12 +9,13 @@ Keywords: insider,telemetry,errors,monitoring,sdk
|
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
17
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
-
Requires-Python: >=3.
|
|
18
|
+
Requires-Python: >=3.8
|
|
18
19
|
Description-Content-Type: text/markdown
|
|
19
20
|
Requires-Dist: urllib3>=1.26
|
|
20
21
|
Provides-Extra: django
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|