File: constants.py

package info (click to toggle)
python-tld 0.13-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,008 kB
  • sloc: python: 12,972; sh: 119; makefile: 19
file content (22 lines) | stat: -rw-r--r-- 468 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
__all__ = (
    "TEST_CYCLES",
    "URLS",
    "URLS_COUNT",
)

URLS_COUNT = 10000

URLS = [
    "http://www.google.co.uk",
    "http://www.v2.google.co.uk",
    "http://www.google.co.uk:8001/lorem-ipsum/",
    "http://www.me.cloudfront.net",
    "http://www.v2.forum.tech.google.co.uk:8001/lorem-ipsum/",
    "https://pantheon.io/",
    "delusionalinsanity.com",
    "www.baidu.com.cn",
    "i.dont.exist",
    "http://delusionalinsanity.com",
]

TEST_CYCLES = 10000