yeref 0.25.4__py3-none-any.whl → 0.25.5__py3-none-any.whl

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.
yeref/yeref.py CHANGED
@@ -16309,14 +16309,14 @@ async def return_unit_metrics(bot, data_users, EXTRA_D):
16309
16309
  results.append({
16310
16310
  "MO": mo,
16311
16311
  "N": str(N),
16312
- "MRR": str(mrr_fmt).replace('.', ','),
16313
- "ARPU": str(fmt(ARPU)).replace('.', ','),
16314
- "ARR": str(fmt(ARR)).replace('.', ','),
16315
- "ChurnR": str(fmt(ChurnR)).replace('.', ','),
16316
- "LTV1": str(fmt(LTV1)).replace('.', ','),
16317
- "LTV2": str(fmt(LTV2)).replace('.', ','),
16318
- "CMGR": str(fmt(CMGR)).replace('.', ','),
16319
- "CAC": str("").replace('.', ',')
16312
+ "MRR": mrr_fmt,
16313
+ "ARPU": fmt(ARPU),
16314
+ "ARR": fmt(ARR),
16315
+ "ChurnR": fmt(ChurnR),
16316
+ "LTV1": fmt(LTV1),
16317
+ "LTV2": fmt(LTV2),
16318
+ "CMGR": fmt(CMGR),
16319
+ "CAC": ""
16320
16320
  })
16321
16321
 
16322
16322
  f_name = os.path.join(EXTRA_D, "2_unit_metrics.csv")
@@ -16325,8 +16325,16 @@ async def return_unit_metrics(bot, data_users, EXTRA_D):
16325
16325
  writer.writerow(["MO", "N", "MRR", "ARPU", "ARR", "ChurnR", "LTV1", "LTV2", "CMGR", "CAC"])
16326
16326
  for row in results:
16327
16327
  writer.writerow([
16328
- row["MO"], row["N"], row["MRR"], row["ARPU"], row["ARR"],
16329
- row["ChurnR"], row["LTV1"], row["LTV2"], row["CMGR"], row["CAC"]
16328
+ row["MO"],
16329
+ str(row["N"]).replace('.', ','),
16330
+ str(row["MRR"]).replace('.', ','),
16331
+ str(row["ARPU"]).replace('.', ','),
16332
+ str(row["ARR"]).replace('.', ','),
16333
+ str(row["ChurnR"]).replace('.', ','),
16334
+ str(row["LTV1"]).replace('.', ','),
16335
+ str(row["LTV2"]).replace('.', ','),
16336
+ str(row["CMGR"]).replace('.', ','),
16337
+ str(row["CAC"]).replace('.', ',')
16330
16338
  ])
16331
16339
 
16332
16340
  cmgr_vals = [float(r["CMGR"]) for r in results if r["CMGR"] != ""]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: yeref
3
- Version: 0.25.4
3
+ Version: 0.25.5
4
4
  Summary: desc-f
5
5
  Author: john smith
6
6
  Dynamic: author
@@ -0,0 +1,8 @@
1
+ yeref/__init__.py,sha256=Qpv3o6Xa78VdLcsSRmctGtpnYE9btpAkCekgGhgJyXM,49
2
+ yeref/l_.py,sha256=LMX_olmJwq-tgoALJCnhV_fGrL_i_43yBLkLIcEVqGo,1176743
3
+ yeref/tonweb.js,sha256=Jf6aFOQ1OIY4q7fINYz-m5LsI3seMus124M5SYYZmtE,443659
4
+ yeref/yeref.py,sha256=ljsCvG1omKMY2PpVKfFunM1eTcMNd7w_aW_GFX3b8Ps,1055985
5
+ yeref-0.25.5.dist-info/METADATA,sha256=L3eS_VIOpEfv271siW57nYb5571PNCcE-XqbHoAID-k,118
6
+ yeref-0.25.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
7
+ yeref-0.25.5.dist-info/top_level.txt,sha256=yCQKchWHbfV-3OuQPYRdi2loypD-nmbDJbtt3OuKKkY,6
8
+ yeref-0.25.5.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- yeref/__init__.py,sha256=Qpv3o6Xa78VdLcsSRmctGtpnYE9btpAkCekgGhgJyXM,49
2
- yeref/l_.py,sha256=LMX_olmJwq-tgoALJCnhV_fGrL_i_43yBLkLIcEVqGo,1176743
3
- yeref/tonweb.js,sha256=Jf6aFOQ1OIY4q7fINYz-m5LsI3seMus124M5SYYZmtE,443659
4
- yeref/yeref.py,sha256=TB7u0uxv8RGRRLfQ6iaeFS-Ng2YuhOx0JDo1n7om6gs,1055802
5
- yeref-0.25.4.dist-info/METADATA,sha256=ecy4S3CjeJWmItaFH2Zc2IC7hgTSPR3TSVFtZqsUi_4,118
6
- yeref-0.25.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
7
- yeref-0.25.4.dist-info/top_level.txt,sha256=yCQKchWHbfV-3OuQPYRdi2loypD-nmbDJbtt3OuKKkY,6
8
- yeref-0.25.4.dist-info/RECORD,,
File without changes