database.py 314 B

12345678910111213141516
  1. CRAWLERS_NAMES = {
  2. 'bing': 'Bingbot',
  3. 'google': 'Googlebot',
  4. 'yahoo': 'Yahoo! Slurp',
  5. 'yahooch': 'Yahoo! Slurp China',
  6. }
  7. CRAWLERS_AGENTS = {
  8. 'bingbot/': 'bing',
  9. 'Googlebot/': 'google',
  10. 'Yahoo! Slurp China': 'yahooch',
  11. 'Yahoo! Slurp': 'yahoo',
  12. }
  13. CRAWLERS_HOSTS = {
  14. }