Skip to content

Commit

Permalink
feat: Adding Falkirk Council
Browse files Browse the repository at this point in the history
fix: #761
  • Loading branch information
m26dvd committed Oct 10, 2024
1 parent e5a443d commit a61de4f
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
7 changes: 7 additions & 0 deletions uk_bin_collection/tests/input.json
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,13 @@
"url": "https://map.erewash.gov.uk/isharelive.web/myerewash.aspx",
"wiki_name": "Erewash Borough Council"
},
"FalkirkCouncil": {
"url": "https://www.falkirk.gov.uk",
"wiki_command_url_override": "https://www.falkirk.gov.uk",
"uprn": "136065818",
"wiki_name": "Falkirk Council",
"wiki_note": "You will need to use [FindMyAddress](https://www.findmyaddress.co.uk/search) to find the UPRN."
},
"FarehamBoroughCouncil": {
"postcode": "PO14 4NR",
"skip_get_url": true,
Expand Down
54 changes: 54 additions & 0 deletions uk_bin_collection/uk_bin_collection/councils/FalkirkCouncil.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import time

import requests

from uk_bin_collection.uk_bin_collection.common import *
from uk_bin_collection.uk_bin_collection.get_bin_data import AbstractGetBinDataClass


# import the wonderful Beautiful Soup and the URL grabber
class CouncilClass(AbstractGetBinDataClass):
"""
Concrete classes have to implement all abstract operations of the
base class. They can also override some operations with a default
implementation.
"""

def parse_data(self, page: str, **kwargs) -> dict:

user_uprn = kwargs.get("uprn")
check_uprn(user_uprn)
bindata = {"bins": []}

URI = f"https://recycling.falkirk.gov.uk/api/collections/{user_uprn}"

# Make the GET request
response = requests.get(URI)

# Parse the JSON response
bin_collection = response.json()

# Loop through each collection in bin_collection
for collection in bin_collection["collections"]:
bin_type = collection["type"]
collection_dates = collection["dates"]

# Loop through the dates for each collection type
for date in collection_dates:
print(f"Bin Type: {bin_type}")
print(f"Collection Date: {date}")

dict_data = {
"type": bin_type,
"collectionDate": datetime.strptime(
date,
"%Y-%m-%d",
).strftime("%d/%m/%Y"),
}
bindata["bins"].append(dict_data)

bindata["bins"].sort(
key=lambda x: datetime.strptime(x.get("collectionDate"), "%d/%m/%Y")
)

return bindata

0 comments on commit a61de4f

Please sign in to comment.