uk_bin_collection 0.136.0__py3-none-any.whl → 0.137.0__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.
@@ -832,7 +832,13 @@
832
832
  "wiki_name": "Gloucester City Council",
833
833
  "wiki_note": "Pass the house number, postcode, and UPRN in their respective parameters. This parser requires a Selenium webdriver."
834
834
  },
835
- "GraveshamBoroughCouncil": {
835
+ "GooglePublicCalendarCouncil": {
836
+ "wiki_name": "Google Calendar (Public)",
837
+ "url": "https://calendar.google.com/calendar/ical/c_bca6c975545213622b3958bddab567e1e7398709c63e377b6fe9a9140bd1caf8%40group.calendar.google.com/public/basic.ics",
838
+ "skip_get_url": true,
839
+ "wiki_note": "The URL should be the public ics file URL for the public Google calendar. See https://support.google.com/calendar/answer/37083?sjid=7202815583021446882-EU. Councils that currently need this are Trafford."
840
+ },
841
+ "GraveshamBoroughCouncil": {
836
842
  "skip_get_url": true,
837
843
  "uprn": "100060927046",
838
844
  "url": "https://www.gravesham.gov.uk",
@@ -0,0 +1,38 @@
1
+ from datetime import datetime
2
+ from typing import Any
3
+ import requests
4
+ from ics import Calendar
5
+
6
+ from uk_bin_collection.uk_bin_collection.get_bin_data import AbstractGetBinDataClass
7
+ from uk_bin_collection.uk_bin_collection.common import date_format
8
+
9
+
10
+ class CouncilClass(AbstractGetBinDataClass):
11
+ def parse_data(self, page: str, **kwargs: Any) -> dict:
12
+ ics_url: str = kwargs.get("url")
13
+
14
+ if not ics_url:
15
+ raise ValueError("Missing required argument: google_calendar_ics_url")
16
+
17
+ response = requests.get(ics_url)
18
+ response.raise_for_status()
19
+
20
+ calendar = Calendar(response.text)
21
+ bindata = {"bins": []}
22
+
23
+ for event in calendar.events:
24
+ if not event.name or not event.begin:
25
+ continue
26
+
27
+ try:
28
+ # .begin is a datetime-like object (Arrow)
29
+ collection_date = event.begin.date().strftime(date_format)
30
+ except Exception:
31
+ continue
32
+
33
+ bindata["bins"].append({
34
+ "type": event.name,
35
+ "collectionDate": collection_date
36
+ })
37
+
38
+ return bindata
@@ -73,7 +73,7 @@ class CouncilClass(AbstractGetBinDataClass):
73
73
  find_ac_button.send_keys(Keys.RETURN)
74
74
  h4_element = wait.until(
75
75
  EC.presence_of_element_located(
76
- (By.XPATH, "//h4[contains(text(), 'Next Collections')]")
76
+ (By.XPATH, "//h4[contains(text(), 'Your upcoming collections')]")
77
77
  )
78
78
  )
79
79
 
@@ -81,7 +81,7 @@ class CouncilClass(AbstractGetBinDataClass):
81
81
  EC.presence_of_element_located(
82
82
  (
83
83
  By.XPATH,
84
- '//div[contains(@class, "fieldContent")]',
84
+ '//div[contains(@class, "repeatable-table-wrapper")]',
85
85
  )
86
86
  )
87
87
  )
@@ -90,16 +90,15 @@ class CouncilClass(AbstractGetBinDataClass):
90
90
 
91
91
  data = {"bins": []}
92
92
 
93
- collection_divs = soup.find_all("div", {"style": "text-align: center;"})
93
+ collection_divs = soup.find_all("tr", {"class": "repeatable-value"})
94
94
 
95
95
  for collection_div in collection_divs:
96
- h5_tag = collection_div.find("h5")
97
- p_tag = collection_div.find("p")
98
-
99
- if h5_tag and p_tag:
100
- bin_type = h5_tag.get_text(strip=True)
101
- collection_date_text = p_tag.find("b").get_text(strip=True)
96
+ td_list = collection_div.find_all("td")
97
+ bin_type = td_list[1].get_text(strip=True)
98
+ collection_date_text = td_list[2].get_text(strip=True)
102
99
 
100
+ # if collection_date_text is not 'NaN'
101
+ if collection_date_text != "NaN":
103
102
  # Extract and format the date
104
103
  date_match = re.search(r"(\d+ \w+)", collection_date_text)
105
104
  if date_match:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: uk_bin_collection
3
- Version: 0.136.0
3
+ Version: 0.137.0
4
4
  Summary: Python Lib to collect UK Bin Data
5
5
  Author: Robert Bradley
6
6
  Author-email: robbrad182@gmail.com
@@ -10,6 +10,7 @@ Classifier: Programming Language :: Python :: 3.12
10
10
  Classifier: Programming Language :: Python :: 3.13
11
11
  Requires-Dist: bs4
12
12
  Requires-Dist: holidays
13
+ Requires-Dist: ics (>=0.7.2,<0.8.0)
13
14
  Requires-Dist: lxml
14
15
  Requires-Dist: pandas
15
16
  Requires-Dist: python-dateutil
@@ -41,10 +42,10 @@ Description-Content-Type: text/markdown
41
42
  # UK Bin Collection Data (UKBCD)
42
43
  This project aims to provide a neat and standard way of providing bin collection data in JSON format from UK councils that have no API to do so.
43
44
 
44
- Why do this?
45
- You might want to use this in a Home Automation - for example say you had an LED bar that lit up on the day of bin collection to the colour of the bin you want to take out, then this repo provides the data for that.
45
+ Why would you want to do this?
46
+ You might want to use this in Home Automationfor example, say you had an LED bar that lit up on the day of bin collection to the colour of the bin you want to take out; then this repo provides the data for that.
46
47
 
47
- **PLEASE respect a councils infrastructure / usage policy and only collect data for your own personal use on a suitable frequency to your collection schedule.**
48
+ **PLEASE respect a councils' infrastructure / usage policy and only collect data for your own personal use on a suitable frequency to your collection schedule.**
48
49
 
49
50
  Most scripts make use of [Beautiful Soup 4](https://pypi.org/project/beautifulsoup4/) to scrape data, although others use different approaches, such as emulating web browser behaviour, or reading data from CSV files.
50
51
 
@@ -59,12 +60,12 @@ Most scripts make use of [Beautiful Soup 4](https://pypi.org/project/beautifulso
59
60
  If an issue already exists, please comment on that issue to express your interest. Please do not open a new issue, as it will be closed as a duplicate.
60
61
 
61
62
  If an issue does not already exist, please fill in a new [Council Request](https://github.com/robbrad/UKBinCollectionData/issues/new/choose) form, including as much information as possible, including:
62
- - Name of the council
63
- - URL to bin collections
64
- - An example postcode and/or UPRN (whichever is relevant)
65
- - Any further information
63
+ - Name of the council.
64
+ - URL to bin collections.
65
+ - An example postcode and/or [UPRN](https://uprn.uk/) (whichever is relevant).
66
+ - Any further information.
66
67
 
67
- Please be aware that this project is run by volunteer contributors and completion depends on numerous factors - even with a request, we cannot guarantee if/when your council will get added.
68
+ Please be aware that this project is run by volunteer contributors and completion depends on numerous factors - even with a request, we cannot guarantee if/when your council is added to this integration.
68
69
 
69
70
  ---
70
71
 
@@ -80,7 +81,7 @@ This integration can be installed directly via HACS. To install:
80
81
  * [Add the repository](https://my.home-assistant.io/redirect/hacs_repository/?owner=robbrad&repository=UKBinCollectionData&category=integration) to your HACS installation
81
82
  * Click `Download`
82
83
 
83
- For details how setup the custom component integration see the [this documentation](https://github.com/robbrad/UKBinCollectionData/tree/master/custom_components/uk_bin_collection).
84
+ For details on how to setup the custom component integration, see the [documentation](https://github.com/robbrad/UKBinCollectionData/tree/master/custom_components/uk_bin_collection).
84
85
 
85
86
  #### Manual
86
87
  1. Ensure you have [HACS](https://hacs.xyz/) installed
@@ -90,7 +91,7 @@ For details how setup the custom component integration see the [this documentati
90
91
  1. Click `+ Add Integration` and search for and select `UK Bin Collection Data` then click `Download`.
91
92
  1. Restart your Home Assistant.
92
93
  1. In the Home Assistant UI go to `Settings` > `Devices & Services` click `+ Add Integration` and search for `UK Bin Collection Data`.
93
- 1. If your see a "URL of the remote Selenium web driver to use" field when setting up your council, you'll need to provide the URL to a web driver you've set up seperately such as [standalone-chrome](https://hub.docker.com/r/selenium/standalone-chrome).
94
+ 1. If you see a "URL of the remote Selenium web driver to use" field when setting up your council, you'll need to provide the URL to a web driver you've set up separately such as [standalone-chrome](https://hub.docker.com/r/selenium/standalone-chrome).
94
95
 
95
96
  ### Install manually
96
97
 
@@ -101,15 +102,15 @@ For details how setup the custom component integration see the [this documentati
101
102
  1. In the Home Assistant UI go to `Settings` > `Devices & Services` click `+ Add Integration` and search for `UK Bin Collection Data`.
102
103
 
103
104
  ### Overriding the Bin Icon and Bin Colour
104
- We realise it is difficult to set a colour from the councils text for the Bin Type and to keep the integration generic we dont capture colour from a council(not all councils supply this as a field), only bin type and next collection date.
105
+ We realise it is difficult to set a colour from the councils text for the Bin Type and to keep the integration generic, we don't capture colour from a council (not all councils supply this as a field), only bin type and next collection date.
105
106
 
106
- When you configure the componenent on the first screen you can set a JSON string to map the bin type to the colour and icon
107
+ When you configure the component on the first screen, you can set a JSON string to map the bin type to the colour and icon
107
108
 
108
109
  Here is an example to set the colour and icon for the type `Empty Standard General Waste`. This type is the type returned from the council for the bin. You can do this for multiple bins.
109
110
 
110
- If you miss this on the first setup you can reconfigure it.
111
+ If you miss this on the first setup, you can reconfigure it.
111
112
 
112
- ```
113
+ ```json
113
114
  {
114
115
  "Empty Standard General Waste":
115
116
  {
@@ -147,7 +148,7 @@ where ```council_name``` is the name of the council's .py script (without the .p
147
148
  The help documentation refers to these as "module" and "URL", respectively. Supported council scripts can be found in the `uk_bin_collection/uk_bin_collection/councils` folder.
148
149
 
149
150
  Some scripts require additional parameters, for example, when a UPRN is not passed in a URL, or when the script is not scraping a web page.
150
- For example, the Leeds City Council script needs two additional parameters - a postcode, and a house number. This is done like so:
151
+ For example, the Leeds City Council script needs two additional parametersa postcode, and a house number. This is done like so:
151
152
 
152
153
  ```commandline
153
154
  python collect_data.py LeedsCityCouncil https://www.leeds.gov.uk/residents/bins-and-recycling/check-your-bin-day -p "LS1 2JG" -n 41
@@ -161,9 +162,8 @@ To check the parameters needed for your council's script, please check the [proj
161
162
 
162
163
 
163
164
  ### Project dependencies
164
- Some scripts rely on external packages to function. A list of required scripts for both development and execution can be found in the project's [PROJECT_TOML](https://github.com/robbrad/UKBinCollectionData/blob/feature/%2353_integration_tests/pyproject.toml)
165
- Install can be done via
166
- `poetry install` from within the root of the repo.
165
+ Some scripts rely on external packages to function. A list of required scripts for both development and execution can be found in the project's [PROJECT_TOML](https://github.com/robbrad/UKBinCollectionData/blob/feature/%2353_integration_tests/pyproject.toml).
166
+ Install can be done via `poetry install` from within the root of the repo.
167
167
 
168
168
  ---
169
169
 
@@ -172,7 +172,7 @@ Some councils make use of the UPRN (Unique property reference number) to identif
172
172
 
173
173
  ---
174
174
  ## Selenium
175
- Some councils need Selenium to run the scrape on behalf of Home Assistant. The easiest way to do this is run Selenium as in a Docker container. However you do this the Home Assistant server must be able to reach the Selenium server
175
+ Some councils need Selenium to run the scrape on behalf of Home Assistant. The easiest way to do this is run Selenium as in a Docker container. However that you do this, the Home Assistant server must be able to reach the Selenium server.
176
176
 
177
177
  ### Instructions for Windows, Linux, and Mac
178
178
 
@@ -182,7 +182,7 @@ Some councils need Selenium to run the scrape on behalf of Home Assistant. The e
182
182
 
183
183
  1. **Download Docker Desktop for Windows:**
184
184
 
185
- * Go to the Docker website: Docker Desktop for Windows
185
+ * Go to the Docker website: Docker Desktop for Windows.
186
186
  * Download and install Docker Desktop.
187
187
  2. **Run Docker Desktop:**
188
188
 
@@ -235,7 +235,7 @@ Some councils need Selenium to run the scrape on behalf of Home Assistant. The e
235
235
 
236
236
  1. **Download Docker Desktop for Mac:**
237
237
 
238
- * Go to the Docker website: Docker Desktop for Mac
238
+ * Go to the Docker website: Docker Desktop for Mac.
239
239
  * Download and install Docker Desktop.
240
240
  2. **Run Docker Desktop:**
241
241
 
@@ -253,7 +253,7 @@ Some councils need Selenium to run the scrape on behalf of Home Assistant. The e
253
253
  docker pull selenium/standalone-chrome
254
254
  ```
255
255
 
256
- 4. **Run the Selenium Standalone Chrome container:**
256
+ 3. **Run the Selenium Standalone Chrome container:**
257
257
 
258
258
  ```bash
259
259
  docker run -d -p 4444:4444 --name selenium-chrome selenium/standalone-chrome
@@ -262,17 +262,17 @@ Some councils need Selenium to run the scrape on behalf of Home Assistant. The e
262
262
  #### Step 3: Test the Selenium Server
263
263
 
264
264
  1. **Navigate to the Selenium server URL in your web browser:**
265
- * Open a web browser and go to `http://localhost:4444`
265
+ * Open a web browser and go to `http://localhost:4444`.
266
266
  * You should see the Selenium Grid console.
267
267
 
268
268
  #### Step 4: Supply the Selenium Server URL to UKBinCollectionData
269
269
 
270
270
  1. **Find the `UKBinCollectionData` project:**
271
271
 
272
- * Go to the GitHub repository: [UKBinCollectionData](https://github.com/robbrad/UKBinCollectionData)
272
+ * Go to the GitHub repository: [UKBinCollectionData](https://github.com/robbrad/UKBinCollectionData).
273
273
  2. **Supply the Selenium Server URL:**
274
274
 
275
- * Typically, the URL will be `http://localhost:4444/wd/hub`
275
+ * Typically, the URL will be `http://localhost:4444/wd/hub`.
276
276
  * You might need to update a configuration file or environment variable in the project to use this URL. Check the project's documentation for specific instructions.
277
277
 
278
278
  ### Summary of Commands
@@ -297,7 +297,7 @@ This guide is based on a Raspberry Pi 4. Instructions for other systems may vary
297
297
 
298
298
  #### Prerequisites
299
299
  1. Install **Portainer** from Alex Belgium's add-on repository:
300
- [github.com/alexbelgium/hassio-addons](https://github.com/alexbelgium/hassio-addons)
300
+ [alexbelgium/hassio-addons](https://github.com/alexbelgium/hassio-addons)
301
301
 
302
302
  ---
303
303
 
@@ -367,13 +367,13 @@ We have created an API for this located under [uk_bin_collection_api_server](htt
367
367
 
368
368
  ### Prerequisites
369
369
 
370
- - Docker installed on your machine
371
- - Python (if you plan to run the API locally without Docker)
370
+ - Docker installed on your machine.
371
+ - Python (if you plan to run the API locally without Docker).
372
372
 
373
373
  ### Running the API with Docker
374
374
 
375
375
  1. Clone this repository.
376
- 2. Navigate to the uk_bin_collection_api_server directory of the project.
376
+ 2. Navigate to the `uk_bin_collection_api_server` directory of the project.
377
377
 
378
378
  #### Build the Docker Container
379
379
 
@@ -401,7 +401,7 @@ The API documentation can be accessed via the Swagger UI. Use the Swagger UI to
401
401
  #### API Endpoints
402
402
  `GET /bin_collection/{council}`
403
403
 
404
- Description: Retrieves information about bin collection for the specified council.
404
+ Description: Retrieves information about bin collections for the specified council.
405
405
 
406
406
  Parameters:
407
407
 
@@ -415,9 +415,9 @@ curl -X GET "http://localhost:8080/api/bin_collection/{council}" -H "accept: app
415
415
  ```
416
416
 
417
417
  ## Docker Compose
418
- This includes the Selenium standalone-chrome for Selenium based councils
418
+ This includes the Selenium standalone-chrome for Selenium-based councils.
419
419
 
420
- ```
420
+ ```yaml
421
421
  version: '3'
422
422
 
423
423
  services:
@@ -447,8 +447,8 @@ docker-compose up
447
447
  ---
448
448
 
449
449
  ## FAQ
450
- #### I've got an issue/support question - what do I do?
451
- Please post in the [HomeAssistant thread](https://community.home-assistant.io/t/bin-waste-collection/55451) or raise a new (non council request) [issue](https://github.com/robbrad/UKBinCollectionData/issues/new).
450
+ #### I've got an issue/support questionwhat do I do?
451
+ Please post in the [HomeAssistant thread](https://community.home-assistant.io/t/bin-waste-collection/55451) or raise a new (non-council request) [issue](https://github.com/robbrad/UKBinCollectionData/issues/new).
452
452
 
453
453
  #### I'd like to contribute, where do I start?
454
454
  Contributions are always welcome! See ```CONTRIBUTING.md``` to get started. Please adhere to the project's [code of conduct](https://github.com/robbrad/UKBinCollectionData/blob/master/CODE_OF_CONDUCT.md).
@@ -461,4 +461,3 @@ Contributions are always welcome! See ```CONTRIBUTING.md``` to get started. Plea
461
461
  <img src="https://contrib.rocks/image?repo=robbrad/UKBinCollectionData" alt="Image of contributors"/>
462
462
  </a>
463
463
 
464
-
@@ -3,7 +3,7 @@ uk_bin_collection/tests/check_selenium_url_in_input.json.py,sha256=Iecdja0I3XIiY
3
3
  uk_bin_collection/tests/council_feature_input_parity.py,sha256=DO6Mk4ImYgM5ZCZ-cutwz5RoYYWZRLYx2tr6zIs_9Rc,3843
4
4
  uk_bin_collection/tests/features/environment.py,sha256=VQZjJdJI_kZn08M0j5cUgvKT4k3iTw8icJge1DGOkoA,127
5
5
  uk_bin_collection/tests/features/validate_council_outputs.feature,sha256=SJK-Vc737hrf03tssxxbeg_JIvAH-ddB8f6gU1LTbuQ,251
6
- uk_bin_collection/tests/input.json,sha256=69WL-6I_ph_YEnTj_EUbV5KYJI6S1x4_KwcGN3foYjQ,116985
6
+ uk_bin_collection/tests/input.json,sha256=z7WZPptXZTQ49n322hbxD5wa6lpCz4y0WC0cCCkGsHQ,117511
7
7
  uk_bin_collection/tests/output.schema,sha256=ZwKQBwYyTDEM4G2hJwfLUVM-5v1vKRvRK9W9SS1sd18,1086
8
8
  uk_bin_collection/tests/step_defs/step_helpers/file_handler.py,sha256=Ygzi4V0S1MIHqbdstUlIqtRIwnynvhu4UtpweJ6-5N8,1474
9
9
  uk_bin_collection/tests/step_defs/test_validate_council.py,sha256=VZ0a81sioJULD7syAYHjvK_-nT_Rd36tUyzPetSA0gk,3475
@@ -125,6 +125,7 @@ uk_bin_collection/uk_bin_collection/councils/GatesheadCouncil.py,sha256=SRCgYhYs
125
125
  uk_bin_collection/uk_bin_collection/councils/GedlingBoroughCouncil.py,sha256=XzfFMCwclh9zAJgsbaj4jywjdiH0wPaFicaVsLrN3ms,2297
126
126
  uk_bin_collection/uk_bin_collection/councils/GlasgowCityCouncil.py,sha256=9Rk9KfcglJvRhh4373OfRX-fwywE2xgwx5KejqzV5fE,3399
127
127
  uk_bin_collection/uk_bin_collection/councils/GloucesterCityCouncil.py,sha256=iMIlZMoBE4TG-ygw89zynvu-TlC4bWJ7g0vNH92JzHs,4890
128
+ uk_bin_collection/uk_bin_collection/councils/GooglePublicCalendarCouncil.py,sha256=DsheXk3sooWWKctIY3PbHI88HI7GfdgZ7qS-iSVCKYA,1140
128
129
  uk_bin_collection/uk_bin_collection/councils/GraveshamBoroughCouncil.py,sha256=ueQ9xFiTxMUBTGV9VjtySHA1EFWliTM0AeNePBIG9ho,4568
129
130
  uk_bin_collection/uk_bin_collection/councils/GuildfordCouncil.py,sha256=9pVrmQhZcK2AD8gX8mNvP--L4L9KaY6L3B822VX6fec,5695
130
131
  uk_bin_collection/uk_bin_collection/councils/GwyneddCouncil.py,sha256=eK2KkY1NbIxVtBruQYSNPA0J7fuzMik5it02dFbKYV0,1855
@@ -285,7 +286,7 @@ uk_bin_collection/uk_bin_collection/councils/ValeofGlamorganCouncil.py,sha256=dz
285
286
  uk_bin_collection/uk_bin_collection/councils/ValeofWhiteHorseCouncil.py,sha256=fyskrQ4-osGOeCZuB_8m2TpW8iwHr7lpl52nrR06Xpo,4441
286
287
  uk_bin_collection/uk_bin_collection/councils/WakefieldCityCouncil.py,sha256=mdAXKcoSSF-xnXS8boesFftS8RiKyuR76ITHQ9Q5DgM,4916
287
288
  uk_bin_collection/uk_bin_collection/councils/WalsallCouncil.py,sha256=wv-M3zZj0E6EIPoVB9AF_NCg_8XGM9uhqGa-F5yzoc4,2277
288
- uk_bin_collection/uk_bin_collection/councils/WalthamForest.py,sha256=_0ucZrZx-x49wxV7DGZsj4zcKv25HT-o2PkPabw8r68,4997
289
+ uk_bin_collection/uk_bin_collection/councils/WalthamForest.py,sha256=mN-USLAG5bKQcEDAhuVjA-kDLkFWlE8OAwDOUjHdc3g,5028
289
290
  uk_bin_collection/uk_bin_collection/councils/WandsworthCouncil.py,sha256=aQoJpC7YkhKewQyZlsv5m4__2IPoKRsOrPxjNH5xRNo,2594
290
291
  uk_bin_collection/uk_bin_collection/councils/WarringtonBoroughCouncil.py,sha256=AB9mrV1v4pKKhfsBS8MpjO8XXBifqojSk53J9Q74Guk,1583
291
292
  uk_bin_collection/uk_bin_collection/councils/WarwickDistrictCouncil.py,sha256=DAL_f0BcIxFj7Ngkms5Q80kgSGp9y5zB35wRPudayz8,1644
@@ -318,8 +319,8 @@ uk_bin_collection/uk_bin_collection/councils/YorkCouncil.py,sha256=I2kBYMlsD4bId
318
319
  uk_bin_collection/uk_bin_collection/councils/council_class_template/councilclasstemplate.py,sha256=EQWRhZ2pEejlvm0fPyOTsOHKvUZmPnxEYO_OWRGKTjs,1158
319
320
  uk_bin_collection/uk_bin_collection/create_new_council.py,sha256=m-IhmWmeWQlFsTZC4OxuFvtw5ZtB8EAJHxJTH4O59lQ,1536
320
321
  uk_bin_collection/uk_bin_collection/get_bin_data.py,sha256=YvmHfZqanwrJ8ToGch34x-L-7yPe31nB_x77_Mgl_vo,4545
321
- uk_bin_collection-0.136.0.dist-info/LICENSE,sha256=vABBUOzcrgfaTKpzeo-si9YVEun6juDkndqA8RKdKGs,1071
322
- uk_bin_collection-0.136.0.dist-info/METADATA,sha256=Wdp-bbINnFzO7xjPeuqCosmBRSOMFn_KaE5pYz-TOvc,19741
323
- uk_bin_collection-0.136.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
324
- uk_bin_collection-0.136.0.dist-info/entry_points.txt,sha256=36WCSGMWSc916S3Hi1ZkazzDKHaJ6CD-4fCEFm5MIao,90
325
- uk_bin_collection-0.136.0.dist-info/RECORD,,
322
+ uk_bin_collection-0.137.0.dist-info/LICENSE,sha256=vABBUOzcrgfaTKpzeo-si9YVEun6juDkndqA8RKdKGs,1071
323
+ uk_bin_collection-0.137.0.dist-info/METADATA,sha256=_mc1mfVauQD8RLPBsVM1F9aYNhddWsEzYC-KRiQhZkE,19851
324
+ uk_bin_collection-0.137.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
325
+ uk_bin_collection-0.137.0.dist-info/entry_points.txt,sha256=36WCSGMWSc916S3Hi1ZkazzDKHaJ6CD-4fCEFm5MIao,90
326
+ uk_bin_collection-0.137.0.dist-info/RECORD,,