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.
Files changed (69) hide show
  1. apm_component-1.0.0/PKG-INFO +33 -0
  2. apm_component-1.0.0/README.md +757 -0
  3. apm_component-1.0.0/apm_component/__init__.py +0 -0
  4. apm_component-1.0.0/apm_component/broker_rabbitmq_aio_pika_async.py +697 -0
  5. apm_component-1.0.0/apm_component/broker_rabbitmq_pika.py +625 -0
  6. apm_component-1.0.0/apm_component/cache_memcache_pymemcache.py +433 -0
  7. apm_component-1.0.0/apm_component/cache_memcache_python_memcached.py +391 -0
  8. apm_component-1.0.0/apm_component/cache_redis_aioredis_async.py +577 -0
  9. apm_component-1.0.0/apm_component/cache_redis_aredis_async.py +545 -0
  10. apm_component-1.0.0/apm_component/cache_redis_redis.py +654 -0
  11. apm_component-1.0.0/apm_component/config.py +137 -0
  12. apm_component-1.0.0/apm_component/db_mssql_pymssql.py +523 -0
  13. apm_component-1.0.0/apm_component/db_mssql_pyodbc.py +601 -0
  14. apm_component-1.0.0/apm_component/db_mysql_aiomysql_async.py +635 -0
  15. apm_component-1.0.0/apm_component/db_mysql_mysql_connector_python.py +520 -0
  16. apm_component-1.0.0/apm_component/db_mysql_mysqlclient.py +542 -0
  17. apm_component-1.0.0/apm_component/db_mysql_pymysql.py +535 -0
  18. apm_component-1.0.0/apm_component/db_mysql_sqlalchemy.py +681 -0
  19. apm_component-1.0.0/apm_component/db_sqlite_sqlite3.py +525 -0
  20. apm_component-1.0.0/apm_component/ds_cassandra_cassandra_driver.py +634 -0
  21. apm_component-1.0.0/apm_component/ds_elasticsearch_elasticsearch.py +571 -0
  22. apm_component-1.0.0/apm_component/ds_mongodb_pymongo.py +713 -0
  23. apm_component-1.0.0/apm_component/ds_oracle_oracledb.py +847 -0
  24. apm_component-1.0.0/apm_component/ds_postgresql_asyncpg_async.py +647 -0
  25. apm_component-1.0.0/apm_component/ds_postgresql_psycopg2.py +790 -0
  26. apm_component-1.0.0/apm_component/http_aiohttp_async.py +442 -0
  27. apm_component-1.0.0/apm_component/http_httpclient.py +516 -0
  28. apm_component-1.0.0/apm_component/http_httplib2.py +303 -0
  29. apm_component-1.0.0/apm_component/http_httpx.py +318 -0
  30. apm_component-1.0.0/apm_component/http_requests.py +325 -0
  31. apm_component-1.0.0/apm_component/http_urllib.py +334 -0
  32. apm_component-1.0.0/apm_component/http_urllib3.py +292 -0
  33. apm_component-1.0.0/apm_component/http_urls.py +83 -0
  34. apm_component-1.0.0/apm_component/routes.py +47 -0
  35. apm_component-1.0.0/apm_component.egg-info/PKG-INFO +33 -0
  36. apm_component-1.0.0/apm_component.egg-info/SOURCES.txt +67 -0
  37. apm_component-1.0.0/apm_component.egg-info/dependency_links.txt +1 -0
  38. apm_component-1.0.0/apm_component.egg-info/requires.txt +29 -0
  39. apm_component-1.0.0/apm_component.egg-info/top_level.txt +1 -0
  40. apm_component-1.0.0/pyproject.toml +48 -0
  41. apm_component-1.0.0/setup.cfg +4 -0
  42. apm_component-1.0.0/tests/test_broker_rabbitmq_aio_pika_async.py +146 -0
  43. apm_component-1.0.0/tests/test_broker_rabbitmq_pika.py +146 -0
  44. apm_component-1.0.0/tests/test_cache_memcache_pymemcache.py +155 -0
  45. apm_component-1.0.0/tests/test_cache_memcache_python_memcached.py +151 -0
  46. apm_component-1.0.0/tests/test_cache_redis_aioredis_async.py +171 -0
  47. apm_component-1.0.0/tests/test_cache_redis_aredis_async.py +159 -0
  48. apm_component-1.0.0/tests/test_cache_redis_redis.py +222 -0
  49. apm_component-1.0.0/tests/test_db_mssql_pymssql.py +158 -0
  50. apm_component-1.0.0/tests/test_db_mssql_pyodbc.py +175 -0
  51. apm_component-1.0.0/tests/test_db_mysql_aiomysql_async.py +173 -0
  52. apm_component-1.0.0/tests/test_db_mysql_mysql_connector_python.py +183 -0
  53. apm_component-1.0.0/tests/test_db_mysql_mysqlclient.py +177 -0
  54. apm_component-1.0.0/tests/test_db_mysql_pymysql.py +178 -0
  55. apm_component-1.0.0/tests/test_db_mysql_sqlalchemy.py +240 -0
  56. apm_component-1.0.0/tests/test_db_sqlite_sqlite3.py +185 -0
  57. apm_component-1.0.0/tests/test_ds_cassandra_cassandra_driver.py +189 -0
  58. apm_component-1.0.0/tests/test_ds_elasticsearch_elasticsearch.py +178 -0
  59. apm_component-1.0.0/tests/test_ds_mongodb_pymongo.py +224 -0
  60. apm_component-1.0.0/tests/test_ds_oracle_oracledb.py +226 -0
  61. apm_component-1.0.0/tests/test_ds_postgresql_asyncpg_async.py +164 -0
  62. apm_component-1.0.0/tests/test_ds_postgresql_psycopg2.py +229 -0
  63. apm_component-1.0.0/tests/test_http_aiohttp_async.py +144 -0
  64. apm_component-1.0.0/tests/test_http_httpclient.py +138 -0
  65. apm_component-1.0.0/tests/test_http_httplib2.py +131 -0
  66. apm_component-1.0.0/tests/test_http_httpx.py +149 -0
  67. apm_component-1.0.0/tests/test_http_requests.py +149 -0
  68. apm_component-1.0.0/tests/test_http_urllib.py +133 -0
  69. 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"