Source code for kingfisher_scrapy.spiders.india_assam_civic_data_lab
import scrapy
from kingfisher_scrapy.base_spiders import CompressedFileSpider
[docs]
class IndiaAssamCivicDataLab(CompressedFileSpider):
"""
Domain
Assam State Government Finance Department
Caveats
The archived file contains a __MACOSX directory with a temporary ._package.json file that is omitted.
Bulk download documentation
https://github.com/CivicDataLab/assam-tenders-data/tree/main/data
"""
name = "india_assam_civic_data_lab"
# SimpleSpider
data_type = "release_package"
async def start(self):
yield scrapy.Request(
"https://github.com/CivicDataLab/assam-tenders-data/raw/main/data/ProcessedData/ocds-mapped-data/current/ocds_mapped_data.json.zip",
meta={"file_name": "all.zip"},
)