├── .gitignore ├── LICENSE ├── README.md ├── indi.yaml ├── listing.yaml ├── parse_gen.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadnan/ScrapeGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadnan/ScrapeGen/HEAD/README.md -------------------------------------------------------------------------------- /indi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadnan/ScrapeGen/HEAD/indi.yaml -------------------------------------------------------------------------------- /listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadnan/ScrapeGen/HEAD/listing.yaml -------------------------------------------------------------------------------- /parse_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadnan/ScrapeGen/HEAD/parse_gen.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadnan/ScrapeGen/HEAD/requirements.txt --------------------------------------------------------------------------------