Skip to content

Commit

Permalink
chore: rename digiwhist spiders
Browse files Browse the repository at this point in the history
Signed-off-by: Yohanna Lisnichuk <yohanitalisnichuk@gmail.com>
  • Loading branch information
yolile committed Oct 25, 2021
1 parent 079d039 commit 2e75544
Show file tree
Hide file tree
Showing 34 changed files with 333 additions and 261 deletions.
470 changes: 271 additions & 199 deletions docs/spiders.rst

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistBulgaria(DigiwhistBase):
name = 'digiwhist_bulgaria'
class BulgariaDigiwhist(DigiwhistBase):
name = 'bulgaria_digiwhist'
start_urls = ['https://opentender.eu/data/files/BG_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistCroatia(DigiwhistBase):
name = 'digiwhist_croatia'
class CroatiaDigiwhist(DigiwhistBase):
name = 'croatia_digiwhist'
start_urls = ['https://opentender.eu/data/files/HR_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistCyprus(DigiwhistBase):
name = 'digiwhist_cyprus'
class CyprusDigiwhist(DigiwhistBase):
name = 'cyprus_digiwhist'
start_urls = ['https://opentender.eu/data/files/CY_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistCzechRepublic(DigiwhistBase):
name = 'digiwhist_czech_republic'
class CzechRepublicDigiwhist(DigiwhistBase):
name = 'czech_republic_digiwhist'
start_urls = ['https://opentender.eu/data/files/CZ_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistDenmark(DigiwhistBase):
name = 'digiwhist_denmark'
class DenmarkDigiwhist(DigiwhistBase):
name = 'denmark_digiwhist'
start_urls = ['https://opentender.eu/data/files/DK_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistEstonia(DigiwhistBase):
name = 'digiwhist_estonia'
class EstoniaDigiwhist(DigiwhistBase):
name = 'estonia_digiwhist'
start_urls = ['https://opentender.eu/data/files/EE_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistTED(DigiwhistBase):
name = 'digiwhist_ted'
class EuropeTEDDigiwhist(DigiwhistBase):
name = 'europe_ted_digiwhist'
start_urls = ['https://opentender.eu/data/files/TED_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistFinland(DigiwhistBase):
name = 'digiwhist_finland'
class FinlandDigiwhist(DigiwhistBase):
name = 'finland_digiwhist'
start_urls = ['https://opentender.eu/data/files/FI_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistFrance(DigiwhistBase):
name = 'digiwhist_france'
class FranceDigiwhist(DigiwhistBase):
name = 'france_digiwhist'
start_urls = ['https://opentender.eu/data/files/FR_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistGeorgia(DigiwhistBase):
name = 'digiwhist_georgia'
class GeorgiaDigiwhist(DigiwhistBase):
name = 'georgia_digiwhist'
start_urls = ['https://opentender.eu/data/files/GE_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistGermany(DigiwhistBase):
name = 'digiwhist_germany'
class GermanyDigiwhist(DigiwhistBase):
name = 'germany_digiwhist'
start_urls = ['https://opentender.eu/data/files/DE_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistGreece(DigiwhistBase):
name = 'digiwhist_greece'
class GreeceDigiwhist(DigiwhistBase):
name = 'greece_digiwhist'
start_urls = ['https://opentender.eu/data/files/GR_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistHungary(DigiwhistBase):
name = 'digiwhist_hungary'
class HungaryDigiwhist(DigiwhistBase):
name = 'hungary_digiwhist'
start_urls = ['https://opentender.eu/data/files/HU_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistIceland(DigiwhistBase):
name = 'digiwhist_iceland'
class IcelandDigiwhist(DigiwhistBase):
name = 'iceland_digiwhist'
start_urls = ['https://opentender.eu/data/files/IS_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistIreland(DigiwhistBase):
name = 'digiwhist_ireland'
class IrelandDigiwhist(DigiwhistBase):
name = 'ireland_digiwhist'
start_urls = ['https://opentender.eu/data/files/IE_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistItaly(DigiwhistBase):
name = 'digiwhist_italy'
class ItalyDigiwhist(DigiwhistBase):
name = 'italy_digiwhist'
start_urls = ['https://opentender.eu/data/files/IT_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistLatvia(DigiwhistBase):
name = 'digiwhist_latvia'
class LatviaDigiwhist(DigiwhistBase):
name = 'latvia_digiwhist'
start_urls = ['https://opentender.eu/data/files/LV_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistLithuania(DigiwhistBase):
name = 'digiwhist_lithuania'
class LithuaniaDigiwhist(DigiwhistBase):
name = 'lithuania_digiwhist'
start_urls = ['https://opentender.eu/data/files/LT_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistLuxembourg(DigiwhistBase):
name = 'digiwhist_luxembourg'
class LuxembourgDigiwhist(DigiwhistBase):
name = 'luxembourg_digiwhist'
start_urls = ['https://opentender.eu/data/files/LU_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistMalta(DigiwhistBase):
name = 'digiwhist_malta'
class MaltaDigiwhist(DigiwhistBase):
name = 'malta_digiwhist'
start_urls = ['https://opentender.eu/data/files/MT_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistNetherlands(DigiwhistBase):
name = 'digiwhist_netherlands'
class NetherlandsDigiwhist(DigiwhistBase):
name = 'netherlands_digiwhist'
start_urls = ['https://opentender.eu/data/files/NL_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistNorway(DigiwhistBase):
name = 'digiwhist_norway'
class NorwayDigiwhist(DigiwhistBase):
name = 'norway_digiwhist'
start_urls = ['https://opentender.eu/data/files/NO_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistPoland(DigiwhistBase):
name = 'digiwhist_poland'
class PolandDigiwhist(DigiwhistBase):
name = 'poland_digiwhist'
start_urls = ['https://opentender.eu/data/files/PL_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistPortugal(DigiwhistBase):
name = 'digiwhist_portugal'
class PortugalDigiwhist(DigiwhistBase):
name = 'portugal_digiwhist'
start_urls = ['https://opentender.eu/data/files/PT_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistRomania(DigiwhistBase):
name = 'digiwhist_romania'
class RomaniaDigiwhist(DigiwhistBase):
name = 'romania_digiwhist'
start_urls = ['https://opentender.eu/data/files/RO_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistSlovakia(DigiwhistBase):
name = 'digiwhist_slovakia'
class SlovakiaDigiwhist(DigiwhistBase):
name = 'slovakia_digiwhist'
start_urls = ['https://opentender.eu/data/files/SK_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistSlovenia(DigiwhistBase):
name = 'digiwhist_slovenia'
class SloveniaDigiwhist(DigiwhistBase):
name = 'slovenia_digiwhist'
start_urls = ['https://opentender.eu/data/files/SI_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistSpain(DigiwhistBase):
name = 'digiwhist_spain'
class SpainDigiwhist(DigiwhistBase):
name = 'spain_digiwhist'
start_urls = ['https://opentender.eu/data/files/ES_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistSweden(DigiwhistBase):
name = 'digiwhist_sweden'
class SwedenDigiwhist(DigiwhistBase):
name = 'sweden_digiwhist'
start_urls = ['https://opentender.eu/data/files/SE_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistSwitzerland(DigiwhistBase):
name = 'digiwhist_switzerland'
class SwitzerlandDigiwhist(DigiwhistBase):
name = 'switzerland_digiwhist'
start_urls = ['https://opentender.eu/data/files/CH_ocds_data.json.tar.gz']
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kingfisher_scrapy.spiders.digiwhist_base import DigiwhistBase


class DigiwhistUnitedKingdom(DigiwhistBase):
name = 'digiwhist_united_kingdom'
class UnitedKingdomDigiwhist(DigiwhistBase):
name = 'united_kingdom_digiwhist'
start_urls = ['https://opentender.eu/data/files/UK_ocds_data.json.tar.gz']

0 comments on commit 2e75544

Please sign in to comment.