Skip to main content

A simple library for the SSAM Waste Schedule API written in Python 3.

Project description

SSAM Waste Schedule Library

A simple library for the SSAM Waste Schedule API written in Python 3.

SSAM (Södra Smålands Avfall & Miljö) is a Swedish Waste Management company. They empty their customers trash bins on a pre-defined schedule. This library will fetch the schedule from their API and present it to the user through a few simple classes and properties, wrapped inside a Python package.

Installation

Install the latest version with pip3:

$ pip3 install ssamwaste

Basics

Building ID

Every household has a building ID attached to it. This ID is what's used to query the API for the schedule associated with an address.

If it's the first time you are using this library and you don't know the building ID of your address you must start by finding out your building ID:

from ssam import ssam

ssam = ssam.WasteScheduler()

buildings = ssam.search_building('Storgatan 1')

# The search results are returned in a list
for building in buildings:
    print(building)

You can access the address, city and building ID as properties on a building object, like this:

>>> building.address
'Storgatan 1'
>>> building.city
'Storstaden'
>>> building.id
'71337'

Schedule

from ssam import ssam

ssam = ssam.WasteScheduler()

# The get_waste_bins() method require a Building ID. It returns a list of WasteBin objects.
for waste_bin in ssam.get_waste_bins(12345):
    print(waste_bin)

You can access the properties of the WasteBin object, like this:

>>> bin.next_waste_pickup
'2021-04-23'
>>> bin.waste_pickups_per_year
26
>>> bin.waste_type
'Hushållsavfall'
>>> bin.waste_pickup_frequency
'Tömning varannan vecka fredag jämn vecka helår'
>>> bin.bin_code
'K180'
>>> bin.bin_size
180.0
>>> bin.bin_unit
'l'
>>> bin.bin_container_type
'Kärl'
>>> bin.number_of_bins
1.0
>>> bin.is_active
True
>>> bin.id
123456
>>> bin.description
'Kärl 180 l 14-dagarstömning'
>>> bin.building_id
12345

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ssamwaste-1.0.1.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

ssamwaste-1.0.1-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file ssamwaste-1.0.1.tar.gz.

File metadata

  • Download URL: ssamwaste-1.0.1.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.6.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.4

File hashes

Hashes for ssamwaste-1.0.1.tar.gz
Algorithm Hash digest
SHA256 27e995d5b4f7c0af19da22d4b8d4e3c4bf4bde01887ae8ffe18fafcbc3f1d87e
MD5 18c3e49e331a60859eccd04eed28836d
BLAKE2b-256 51a3eb4884452d7dd19b1e79ba090498cec2d27879cce1d5ad70aa1a0ca511fc

See more details on using hashes here.

File details

Details for the file ssamwaste-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: ssamwaste-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.6.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.4

File hashes

Hashes for ssamwaste-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bca7c9fd0b2cb562226eda0e5bbe2ea0e367ede7c22a9ab22fda4da9a3852694
MD5 4fddffc229634624abe3c337f06570da
BLAKE2b-256 02c07e958a83767d2fe00501dab287b76d966fa393a2afc1debb5f48228cd939

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page