Skip to content

Commit

Permalink
Add mexico_nuevo_leon_cotai
Browse files Browse the repository at this point in the history
  • Loading branch information
aguilerapy committed Sep 30, 2021
1 parent 7b386e8 commit 5c169cd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions kingfisher_scrapy/spiders/mexico_nuevo_leon_cotai.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from kingfisher_scrapy.spiders.mexico_inai_base import MexicoINAIBase


class MexicoNuevoLeonCOTAI(MexicoINAIBase):
"""
Domain
Comisión de Transparencia y Acceso a la Información del Estado de Nuevo León (COTAI)
Spider arguments
from_date
Download only data from this year onward (YYYY format). Defaults to '2020'.
until_date
Download only data until this year (YYYY format). Defaults to '2020'.
API documentation
http://201.149.38.218:4000/contratacionesabiertas/datosabiertos
"""
name = 'mexico_nuevo_leon_cotai'

# BaseSpider
default_from_date = '2020'
default_until_date = '2020'

# PeriodicSpider
pattern = 'http://201.149.38.218:3000/edca/contractingprocess/{}'

0 comments on commit 5c169cd

Please sign in to comment.