gitextract_cq7_c7ie/ ├── .gitignore ├── LICENSE ├── README.md ├── bin/ │ ├── downloader.py │ ├── extractor.py │ ├── processor.py │ └── scheduler.py ├── configs/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management/ │ │ ├── __init__.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── checkproxies.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160201_1627.py │ │ ├── 0003_proxy_url.py │ │ ├── 0004_auto_20160202_1712.py │ │ └── __init__.py │ ├── models.py │ ├── proxies.py │ └── util.py ├── cores/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── downloaders.py │ ├── extractors.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_detailrule_exclude.py │ │ ├── 0003_auto_20160131_2226.py │ │ ├── 0004_auto_20160201_1035.py │ │ ├── 0005_detailrule_multi.py │ │ ├── 0006_detailrule_fresh_time.py │ │ ├── 0007_detailrule_multi_unique.py │ │ ├── 0008_auto_20160407_1426.py │ │ └── __init__.py │ ├── models.py │ ├── processors.py │ └── util.py ├── crontab ├── manage.py ├── monitors/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management/ │ │ ├── __init__.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── monitor.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── requirements.txt ├── supervisord.conf └── unicrawler/ ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py