odoo-addon-stock-request 16.0.1.1.0.1__py3-none-any.whl → 16.0.1.1.1__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.
@@ -7,7 +7,7 @@ Stock Request
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:e90ad1565ab205eb6def13c09a5e4fe84c790849a54905abcb243bc5200d7121
10
+ !! source digest: sha256:4debc7ac713fab61310ff8c78411ee14b640b3fc1b8950ce4360388e03bb6f90
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -4,7 +4,7 @@
4
4
  {
5
5
  "name": "Stock Request",
6
6
  "summary": "Internal request for stock",
7
- "version": "16.0.1.1.0",
7
+ "version": "16.0.1.1.1",
8
8
  "license": "LGPL-3",
9
9
  "website": "https://github.com/OCA/stock-logistics-request",
10
10
  "author": "ForgeFlow, Odoo Community Association (OCA)",
@@ -9,7 +9,7 @@ msgstr ""
9
9
  "Project-Id-Version: Odoo Server 11.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2018-03-02 03:44+0000\n"
12
- "PO-Revision-Date: 2024-05-02 13:35+0000\n"
12
+ "PO-Revision-Date: 2024-05-27 15:39+0000\n"
13
13
  "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
14
14
  "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
15
15
  "Language: it\n"
@@ -1013,7 +1013,7 @@ msgstr "La politica di prelievo deve essere uguale a quella dell'ordine"
1013
1013
  #. module: stock_request
1014
1014
  #: model:ir.model.fields,help:stock_request.field_stock_request_order__route_id
1015
1015
  msgid "The route related to a stock request order"
1016
- msgstr ""
1016
+ msgstr "Il percorso relativo ad un ordine richiesta di magazzino"
1017
1017
 
1018
1018
  #. module: stock_request
1019
1019
  #. odoo-python
@@ -125,10 +125,21 @@ class StockRequest(models.Model):
125
125
  ("name_uniq", "unique(name, company_id)", "Stock Request name must be unique")
126
126
  ]
127
127
 
128
+ def _get_all_origin_moves(self, move):
129
+ all_moves = move
130
+ if move.move_orig_ids:
131
+ for orig_move in move.move_orig_ids:
132
+ all_moves |= self._get_all_origin_moves(orig_move)
133
+ return all_moves
134
+
128
135
  @api.depends("allocation_ids", "allocation_ids.stock_move_id")
129
136
  def _compute_move_ids(self):
130
137
  for request in self:
131
- request.move_ids = request.allocation_ids.mapped("stock_move_id")
138
+ move_ids = request.allocation_ids.mapped("stock_move_id")
139
+ all_moves = self.env["stock.move"]
140
+ for move in move_ids:
141
+ all_moves |= self._get_all_origin_moves(move)
142
+ request.move_ids = all_moves
132
143
 
133
144
  @api.depends(
134
145
  "allocation_ids",
@@ -8,10 +8,11 @@
8
8
 
9
9
  /*
10
10
  :Author: David Goodger (goodger@python.org)
11
- :Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
11
+ :Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
12
12
  :Copyright: This stylesheet has been placed in the public domain.
13
13
 
14
14
  Default cascading style sheet for the HTML output of Docutils.
15
+ Despite the name, some widely supported CSS2 features are used.
15
16
 
16
17
  See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
17
18
  customize this style sheet.
@@ -274,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
274
275
  margin-left: 2em ;
275
276
  margin-right: 2em }
276
277
 
277
- pre.code .ln { color: grey; } /* line numbers */
278
+ pre.code .ln { color: gray; } /* line numbers */
278
279
  pre.code, code { background-color: #eeeeee }
279
280
  pre.code .comment, code .comment { color: #5C6576 }
280
281
  pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -300,7 +301,7 @@ span.option {
300
301
  span.pre {
301
302
  white-space: pre }
302
303
 
303
- span.problematic {
304
+ span.problematic, pre.problematic {
304
305
  color: red }
305
306
 
306
307
  span.section-subtitle {
@@ -366,7 +367,7 @@ ul.auto-toc {
366
367
  !! This file is generated by oca-gen-addon-readme !!
367
368
  !! changes will be overwritten. !!
368
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
369
- !! source digest: sha256:e90ad1565ab205eb6def13c09a5e4fe84c790849a54905abcb243bc5200d7121
370
+ !! source digest: sha256:4debc7ac713fab61310ff8c78411ee14b640b3fc1b8950ce4360388e03bb6f90
370
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
371
372
  <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/stock-logistics-request/tree/16.0/stock_request"><img alt="OCA/stock-logistics-request" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--request-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/stock-logistics-request-16-0/stock-logistics-request-16-0-stock_request"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-request&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
372
373
  <p>This module was written to allow users to request products that are
@@ -467,7 +468,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
467
468
  <div class="section" id="maintainers">
468
469
  <h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
469
470
  <p>This module is maintained by the OCA.</p>
470
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
471
+ <a class="reference external image-reference" href="https://odoo-community.org">
472
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
473
+ </a>
471
474
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
472
475
  mission is to support the collaborative development of Odoo features and
473
476
  promote its widespread use.</p>
@@ -1543,3 +1543,143 @@ class TestStockRequestOrderState(TestStockRequest):
1543
1543
  self.route.id,
1544
1544
  "Route ID should update on all stock requests on onchange.",
1545
1545
  )
1546
+
1547
+
1548
+ class TestStockRequestOrderChainedTransfers(BaseCommon):
1549
+ def setUp(self):
1550
+ super().setUp()
1551
+ self.env = self.env(
1552
+ context=dict(
1553
+ self.env.context,
1554
+ mail_create_nolog=True,
1555
+ mail_create_nosubscribe=True,
1556
+ mail_notrack=True,
1557
+ no_reset_password=True,
1558
+ tracking_disable=True,
1559
+ )
1560
+ )
1561
+ self.request_order = self.env["stock.request.order"]
1562
+ self.stock_request = self.env["stock.request"]
1563
+ self.main_company = self.env.ref("base.main_company")
1564
+ self.warehouse = self.env.ref("stock.warehouse0")
1565
+ self.uom_unit = self.env.ref("uom.product_uom_unit")
1566
+ self.uom_dozen = self.env.ref("uom.product_uom_dozen")
1567
+ self.stock_request_user = new_test_user(
1568
+ self.env,
1569
+ login="stock_request_user",
1570
+ groups="stock_request.group_stock_request_user",
1571
+ company_ids=[(6, 0, [self.main_company.id])],
1572
+ )
1573
+ self.stock_request_manager = new_test_user(
1574
+ self.env,
1575
+ login="stock_request_manager",
1576
+ groups="stock_request.group_stock_request_manager",
1577
+ company_ids=[(6, 0, [self.main_company.id])],
1578
+ )
1579
+ self.product_test = self._create_product("PROD", "Product Test")
1580
+ self.stock_loc = self._create_location(
1581
+ name="Backstock",
1582
+ location_id=self.warehouse.view_location_id.id,
1583
+ company_id=self.main_company.id,
1584
+ )
1585
+ self.transit_loc = self._create_location(
1586
+ name="Transit",
1587
+ location_id=self.warehouse.view_location_id.id,
1588
+ company_id=self.main_company.id,
1589
+ )
1590
+ self.manufacturing_loc = self._create_location(
1591
+ name="Manufacturing",
1592
+ location_id=self.warehouse.view_location_id.id,
1593
+ company_id=self.main_company.id,
1594
+ )
1595
+ self.route = self.env["stock.route"].create(
1596
+ {
1597
+ "name": "Backstock to Manufacturing (2 steps)",
1598
+ "warehouse_selectable": True,
1599
+ "warehouse_ids": [(6, 0, [self.warehouse.id])],
1600
+ "rule_ids": [
1601
+ (
1602
+ 0,
1603
+ False,
1604
+ {
1605
+ "name": "Stock to Transit",
1606
+ "location_src_id": self.stock_loc.id,
1607
+ "location_dest_id": self.transit_loc.id,
1608
+ "action": "pull",
1609
+ "picking_type_id": self.warehouse.int_type_id.id,
1610
+ "procure_method": "make_to_stock",
1611
+ "warehouse_id": self.warehouse.id,
1612
+ "company_id": self.main_company.id,
1613
+ },
1614
+ ),
1615
+ (
1616
+ 0,
1617
+ False,
1618
+ {
1619
+ "name": "Transit to Manufacturing",
1620
+ "location_src_id": self.transit_loc.id,
1621
+ "location_dest_id": self.manufacturing_loc.id,
1622
+ "action": "pull_push",
1623
+ "picking_type_id": self.warehouse.int_type_id.id,
1624
+ "procure_method": "make_to_order",
1625
+ "warehouse_id": self.warehouse.id,
1626
+ "company_id": self.main_company.id,
1627
+ },
1628
+ ),
1629
+ ],
1630
+ }
1631
+ )
1632
+ self.product_test.route_ids = [(6, 0, [self.route.id])]
1633
+ self._create_stock_quant(self.stock_loc, self.product_test, 5)
1634
+
1635
+ def _create_product(self, default_code, name, **vals):
1636
+ return self.env["product.product"].create(
1637
+ dict(
1638
+ name=name,
1639
+ default_code=default_code,
1640
+ uom_id=self.uom_unit.id,
1641
+ uom_po_id=self.uom_dozen.id,
1642
+ type="product",
1643
+ **vals
1644
+ )
1645
+ )
1646
+
1647
+ def _create_location(self, **vals):
1648
+ return self.env["stock.location"].create(dict(usage="internal", **vals))
1649
+
1650
+ def _create_stock_quant(self, location_id, product_id, qty):
1651
+ self.env["stock.quant"].create(
1652
+ {
1653
+ "location_id": location_id.id,
1654
+ "product_id": product_id.id,
1655
+ "quantity": qty,
1656
+ }
1657
+ )
1658
+
1659
+ def test_two_pickings_related(self):
1660
+ """Test to check that order has two related pickings after confirmation"""
1661
+ expected_date = fields.Datetime.now()
1662
+ vals = {
1663
+ "company_id": self.main_company.id,
1664
+ "warehouse_id": self.warehouse.id,
1665
+ "location_id": self.manufacturing_loc.id,
1666
+ "expected_date": expected_date,
1667
+ "stock_request_ids": [
1668
+ (
1669
+ 0,
1670
+ 0,
1671
+ {
1672
+ "product_id": self.product_test.id,
1673
+ "product_uom_id": self.product_test.uom_id.id,
1674
+ "product_uom_qty": 5.0,
1675
+ "company_id": self.main_company.id,
1676
+ "warehouse_id": self.warehouse.id,
1677
+ "location_id": self.manufacturing_loc.id,
1678
+ "expected_date": expected_date,
1679
+ },
1680
+ )
1681
+ ],
1682
+ }
1683
+ order = self.request_order.with_user(self.stock_request_user).create(vals)
1684
+ order.with_user(self.stock_request_manager).action_confirm()
1685
+ self.assertEqual(len(order.mapped("picking_ids")), 2)
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.1
2
- Name: odoo-addon-stock-request
3
- Version: 16.0.1.1.0.1
2
+ Name: odoo-addon-stock_request
3
+ Version: 16.0.1.1.1
4
4
  Summary: Internal request for stock
5
5
  Home-page: https://github.com/OCA/stock-logistics-request
6
6
  Author: ForgeFlow, Odoo Community Association (OCA)
7
7
  Author-email: support@odoo-community.org
8
8
  License: LGPL-3
9
- Platform: UNKNOWN
10
9
  Classifier: Programming Language :: Python
11
10
  Classifier: Framework :: Odoo
12
11
  Classifier: Framework :: Odoo :: 16.0
@@ -23,7 +22,7 @@ Stock Request
23
22
  !! This file is generated by oca-gen-addon-readme !!
24
23
  !! changes will be overwritten. !!
25
24
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:e90ad1565ab205eb6def13c09a5e4fe84c790849a54905abcb243bc5200d7121
25
+ !! source digest: sha256:4debc7ac713fab61310ff8c78411ee14b640b3fc1b8950ce4360388e03bb6f90
27
26
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
27
 
29
28
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -155,5 +154,3 @@ promote its widespread use.
155
154
  This module is part of the `OCA/stock-logistics-request <https://github.com/OCA/stock-logistics-request/tree/16.0/stock_request>`_ project on GitHub.
156
155
 
157
156
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
158
-
159
-
@@ -1,6 +1,6 @@
1
- odoo/addons/stock_request/README.rst,sha256=8TSxsvFvOb1YnpWxk81WAoIOziGP3b6M8r_jEPY2zTk,4854
1
+ odoo/addons/stock_request/README.rst,sha256=t25w1ZXiw0-ZIUQa4AexUMY-U1k8IcIcSTmzcTIU7ok,4854
2
2
  odoo/addons/stock_request/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
- odoo/addons/stock_request/__manifest__.py,sha256=vqbv4971uhlTuFPZmRnpZBJQSV5xHZMoLupLXjCPhNY,949
3
+ odoo/addons/stock_request/__manifest__.py,sha256=RggoYHVr46AeL-eaAPfi2R11mi4kUvnlmHZCX4DYzqY,949
4
4
  odoo/addons/stock_request/data/stock_request_sequence_data.xml,sha256=MKvzK__cH1gecmyqWK6Vj7yJ0o1-oKbqy2ydNoTUhs0,683
5
5
  odoo/addons/stock_request/i18n/ca.po,sha256=i9BK-xndT2QgHC1JTssjLLzsWjUjUM2qOCN4EVvw89M,44832
6
6
  odoo/addons/stock_request/i18n/de.po,sha256=rPGmSY_eVqkA5FXZ83-gN3DNOOauO2pKwszZe5N0Pyw,49000
@@ -15,7 +15,7 @@ odoo/addons/stock_request/i18n/fr_FR.po,sha256=MRBE42GvqfiHymtsQ8NKfF2WXTEuxFfbH
15
15
  odoo/addons/stock_request/i18n/gl.po,sha256=DI6GAEI7mH-VcfagD-6LMs0BsICA5vx0WQZb0jpGIRc,44832
16
16
  odoo/addons/stock_request/i18n/hr.po,sha256=YJJUNbXaCD-2DISrfiOSCocPiDCWN3wZ8T-f2BsY85A,44908
17
17
  odoo/addons/stock_request/i18n/hr_HR.po,sha256=-zKTmpKeWfuPvnH_5QONyoBjDw4hwqrqNMmCk-Q3fjU,44927
18
- odoo/addons/stock_request/i18n/it.po,sha256=0KiPSUBa4YsCikWyIhXjINYsFCbOj51QKXR5mHHW_cU,51596
18
+ odoo/addons/stock_request/i18n/it.po,sha256=24o56QAwSOx1fA_zSAFZuVRi3P_l1oQ0YN8Pa1RY0QE,51652
19
19
  odoo/addons/stock_request/i18n/ja.po,sha256=7LP6PxbLf3MKvViASk6phl1dOBVoTOEpE4ool8jcgNk,44587
20
20
  odoo/addons/stock_request/i18n/ja_JP.po,sha256=ZFChiV7-Eha6_S82_MHj_te1NRqzkii_wfb8_U2UnIo,44590
21
21
  odoo/addons/stock_request/i18n/nl.po,sha256=-BmEpbmDGFOtIxvDXn_yHMYlfCIHLEGuX1LFVt9FnJU,44829
@@ -38,7 +38,7 @@ odoo/addons/stock_request/models/stock_location.py,sha256=ckie9pUiJ2r_pU_-ojYZie
38
38
  odoo/addons/stock_request/models/stock_move.py,sha256=hDQhoO9GHD_-64C0VEcR9csAbldXHI_UtbbEVqVEyfQ,2812
39
39
  odoo/addons/stock_request/models/stock_move_line.py,sha256=yG9lnTjfAdUBdcclnrsB5bzvpItmpV0wrCHIh7hdJDQ,2773
40
40
  odoo/addons/stock_request/models/stock_picking.py,sha256=XmdxMG-GNKJjF6RE8inj45TBy1eEhmRh4nzb-0bMQs0,1339
41
- odoo/addons/stock_request/models/stock_request.py,sha256=BSLv_kcAam4SLe5W7aATQjkRQTuDD4xsHj7JNtrr4DU,16337
41
+ odoo/addons/stock_request/models/stock_request.py,sha256=Xn5gyULXY6m3rMi8kiW5QW6-quLEBJ2_R9K8ut_pld0,16754
42
42
  odoo/addons/stock_request/models/stock_request_abstract.py,sha256=HiMezc9W7V1N59gPf7hTXepOvsDcaw7FDlKpbE7kVq0,9492
43
43
  odoo/addons/stock_request/models/stock_request_allocation.py,sha256=Kqq6VcZgYSbw2OSooeWgzVLBlWyiVJbR71dyKciPzUg,2927
44
44
  odoo/addons/stock_request/models/stock_request_order.py,sha256=ksl2Ab9NyGxO-I8UZwbxQd2y07nnYZfrhHOsHRD1KsE,15500
@@ -54,9 +54,9 @@ odoo/addons/stock_request/security/ir.model.access.csv,sha256=dsUwAR79-qQNVwCZhv
54
54
  odoo/addons/stock_request/security/stock_request_security.xml,sha256=4nM10OVzHSG11_H2WsQ5HeIcPyGzceGq93qtJue1r0M,5886
55
55
  odoo/addons/stock_request/static/description/icon.png,sha256=HZGM_z7Ta3zNQ2924BUiMfDuVSCWqrEwUQMWXBnK7yk,15218
56
56
  odoo/addons/stock_request/static/description/icon.svg,sha256=e3qo4KGYRy7Mfzhb_bCfVA-73Rk2Lx1z9_kz7tTjdO0,9771
57
- odoo/addons/stock_request/static/description/index.html,sha256=epCwM9pFcQFlNYxcpb0kjkZbcIY_BHMO5ME4ASGfPYM,15995
57
+ odoo/addons/stock_request/static/description/index.html,sha256=XPZFlJomGfHo1Um5kiSUgZGzE4w6X4jiw741CfdMKJI,16078
58
58
  odoo/addons/stock_request/tests/__init__.py,sha256=3NQ2fafGprBbsMjR2Y__yzyvFX5Vio1r0j6tT3FTbas,33
59
- odoo/addons/stock_request/tests/test_stock_request.py,sha256=j5o8BBgRjgic2o4iMQYUR9bDpysUP9M0vkVGF5ILu7Q,62313
59
+ odoo/addons/stock_request/tests/test_stock_request.py,sha256=qiUF5Vz17sX8vF4Aej81N6vMqdNSBPjAeEiXiwJct-M,67992
60
60
  odoo/addons/stock_request/views/product.xml,sha256=CJ6RE5uGQLlIMDCPKxw8nhodb_rR3jaj-mF5ozCFUKI,1517
61
61
  odoo/addons/stock_request/views/res_config_settings_views.xml,sha256=l2V6pRh1FEbFuNEAy5Sp6DB945HXNF1YMUzeAzg-jM0,8628
62
62
  odoo/addons/stock_request/views/stock_move_views.xml,sha256=Z5pNG0WfYz-CTlxgB-rma0BoT08VQDHnm3J_Ksu9BxA,1072
@@ -65,7 +65,7 @@ odoo/addons/stock_request/views/stock_request_allocation_views.xml,sha256=NhoVR2
65
65
  odoo/addons/stock_request/views/stock_request_menu.xml,sha256=S_3HPkmYcHC_xtPjusHiZX7RUW5CGrJW3w52ScnJFNw,1308
66
66
  odoo/addons/stock_request/views/stock_request_order_views.xml,sha256=TChohKvG0MFc7K5TBNXAkQUU6CbJKdYBQea5gO6IbNg,10843
67
67
  odoo/addons/stock_request/views/stock_request_views.xml,sha256=zs_4N_VAskigIJp9i-kkG40QEqkxeteK-qcJ6MQqeqU,11757
68
- odoo_addon_stock_request-16.0.1.1.0.1.dist-info/METADATA,sha256=20ijUbg7XX6DbEJ_-ldwL98MA2lfc8Lc5MO32Yjoq1c,5410
69
- odoo_addon_stock_request-16.0.1.1.0.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
70
- odoo_addon_stock_request-16.0.1.1.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
71
- odoo_addon_stock_request-16.0.1.1.0.1.dist-info/RECORD,,
68
+ odoo_addon_stock_request-16.0.1.1.1.dist-info/METADATA,sha256=c4yMXYC32_M0--bScYOtuYSvN67ZohGUNS0LyM4Hx4c,5388
69
+ odoo_addon_stock_request-16.0.1.1.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
70
+ odoo_addon_stock_request-16.0.1.1.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
71
+ odoo_addon_stock_request-16.0.1.1.1.dist-info/RECORD,,