apm-component 1.0.0__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.
- apm_component-1.0.0/PKG-INFO +33 -0
- apm_component-1.0.0/README.md +757 -0
- apm_component-1.0.0/apm_component/__init__.py +0 -0
- apm_component-1.0.0/apm_component/broker_rabbitmq_aio_pika_async.py +697 -0
- apm_component-1.0.0/apm_component/broker_rabbitmq_pika.py +625 -0
- apm_component-1.0.0/apm_component/cache_memcache_pymemcache.py +433 -0
- apm_component-1.0.0/apm_component/cache_memcache_python_memcached.py +391 -0
- apm_component-1.0.0/apm_component/cache_redis_aioredis_async.py +577 -0
- apm_component-1.0.0/apm_component/cache_redis_aredis_async.py +545 -0
- apm_component-1.0.0/apm_component/cache_redis_redis.py +654 -0
- apm_component-1.0.0/apm_component/config.py +137 -0
- apm_component-1.0.0/apm_component/db_mssql_pymssql.py +523 -0
- apm_component-1.0.0/apm_component/db_mssql_pyodbc.py +601 -0
- apm_component-1.0.0/apm_component/db_mysql_aiomysql_async.py +635 -0
- apm_component-1.0.0/apm_component/db_mysql_mysql_connector_python.py +520 -0
- apm_component-1.0.0/apm_component/db_mysql_mysqlclient.py +542 -0
- apm_component-1.0.0/apm_component/db_mysql_pymysql.py +535 -0
- apm_component-1.0.0/apm_component/db_mysql_sqlalchemy.py +681 -0
- apm_component-1.0.0/apm_component/db_sqlite_sqlite3.py +525 -0
- apm_component-1.0.0/apm_component/ds_cassandra_cassandra_driver.py +634 -0
- apm_component-1.0.0/apm_component/ds_elasticsearch_elasticsearch.py +571 -0
- apm_component-1.0.0/apm_component/ds_mongodb_pymongo.py +713 -0
- apm_component-1.0.0/apm_component/ds_oracle_oracledb.py +847 -0
- apm_component-1.0.0/apm_component/ds_postgresql_asyncpg_async.py +647 -0
- apm_component-1.0.0/apm_component/ds_postgresql_psycopg2.py +790 -0
- apm_component-1.0.0/apm_component/http_aiohttp_async.py +442 -0
- apm_component-1.0.0/apm_component/http_httpclient.py +516 -0
- apm_component-1.0.0/apm_component/http_httplib2.py +303 -0
- apm_component-1.0.0/apm_component/http_httpx.py +318 -0
- apm_component-1.0.0/apm_component/http_requests.py +325 -0
- apm_component-1.0.0/apm_component/http_urllib.py +334 -0
- apm_component-1.0.0/apm_component/http_urllib3.py +292 -0
- apm_component-1.0.0/apm_component/http_urls.py +83 -0
- apm_component-1.0.0/apm_component/routes.py +47 -0
- apm_component-1.0.0/apm_component.egg-info/PKG-INFO +33 -0
- apm_component-1.0.0/apm_component.egg-info/SOURCES.txt +67 -0
- apm_component-1.0.0/apm_component.egg-info/dependency_links.txt +1 -0
- apm_component-1.0.0/apm_component.egg-info/requires.txt +29 -0
- apm_component-1.0.0/apm_component.egg-info/top_level.txt +1 -0
- apm_component-1.0.0/pyproject.toml +48 -0
- apm_component-1.0.0/setup.cfg +4 -0
- apm_component-1.0.0/tests/test_broker_rabbitmq_aio_pika_async.py +146 -0
- apm_component-1.0.0/tests/test_broker_rabbitmq_pika.py +146 -0
- apm_component-1.0.0/tests/test_cache_memcache_pymemcache.py +155 -0
- apm_component-1.0.0/tests/test_cache_memcache_python_memcached.py +151 -0
- apm_component-1.0.0/tests/test_cache_redis_aioredis_async.py +171 -0
- apm_component-1.0.0/tests/test_cache_redis_aredis_async.py +159 -0
- apm_component-1.0.0/tests/test_cache_redis_redis.py +222 -0
- apm_component-1.0.0/tests/test_db_mssql_pymssql.py +158 -0
- apm_component-1.0.0/tests/test_db_mssql_pyodbc.py +175 -0
- apm_component-1.0.0/tests/test_db_mysql_aiomysql_async.py +173 -0
- apm_component-1.0.0/tests/test_db_mysql_mysql_connector_python.py +183 -0
- apm_component-1.0.0/tests/test_db_mysql_mysqlclient.py +177 -0
- apm_component-1.0.0/tests/test_db_mysql_pymysql.py +178 -0
- apm_component-1.0.0/tests/test_db_mysql_sqlalchemy.py +240 -0
- apm_component-1.0.0/tests/test_db_sqlite_sqlite3.py +185 -0
- apm_component-1.0.0/tests/test_ds_cassandra_cassandra_driver.py +189 -0
- apm_component-1.0.0/tests/test_ds_elasticsearch_elasticsearch.py +178 -0
- apm_component-1.0.0/tests/test_ds_mongodb_pymongo.py +224 -0
- apm_component-1.0.0/tests/test_ds_oracle_oracledb.py +226 -0
- apm_component-1.0.0/tests/test_ds_postgresql_asyncpg_async.py +164 -0
- apm_component-1.0.0/tests/test_ds_postgresql_psycopg2.py +229 -0
- apm_component-1.0.0/tests/test_http_aiohttp_async.py +144 -0
- apm_component-1.0.0/tests/test_http_httpclient.py +138 -0
- apm_component-1.0.0/tests/test_http_httplib2.py +131 -0
- apm_component-1.0.0/tests/test_http_httpx.py +149 -0
- apm_component-1.0.0/tests/test_http_requests.py +149 -0
- apm_component-1.0.0/tests/test_http_urllib.py +133 -0
- apm_component-1.0.0/tests/test_http_urllib3.py +136 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apm-component
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Component testing application for external service integrations
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Requires-Dist: mysql-connector-python
|
|
7
|
+
Requires-Dist: PyMySQL
|
|
8
|
+
Requires-Dist: mysqlclient
|
|
9
|
+
Requires-Dist: SQLAlchemy
|
|
10
|
+
Requires-Dist: aiomysql
|
|
11
|
+
Requires-Dist: DBUtils
|
|
12
|
+
Requires-Dist: cryptography
|
|
13
|
+
Requires-Dist: pymssql
|
|
14
|
+
Requires-Dist: pyodbc
|
|
15
|
+
Requires-Dist: requests
|
|
16
|
+
Requires-Dist: httpx
|
|
17
|
+
Requires-Dist: aiohttp
|
|
18
|
+
Requires-Dist: urllib3
|
|
19
|
+
Requires-Dist: httplib2
|
|
20
|
+
Requires-Dist: redis
|
|
21
|
+
Requires-Dist: aredis
|
|
22
|
+
Requires-Dist: pymemcache
|
|
23
|
+
Requires-Dist: python-memcached
|
|
24
|
+
Requires-Dist: pika
|
|
25
|
+
Requires-Dist: aio-pika
|
|
26
|
+
Requires-Dist: cassandra-driver
|
|
27
|
+
Requires-Dist: elasticsearch<9.0.0,>=8.0.0
|
|
28
|
+
Requires-Dist: psycopg2-binary
|
|
29
|
+
Requires-Dist: asyncpg
|
|
30
|
+
Requires-Dist: pymongo
|
|
31
|
+
Requires-Dist: oracledb
|
|
32
|
+
Provides-Extra: test
|
|
33
|
+
Requires-Dist: pytest; extra == "test"
|