Skip to content

Commit

Permalink
Add __version__ to __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Anorov committed Jan 27, 2018
1 parent 9eae3e5 commit c06237e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cfscrape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@

import execjs


try:
from urlparse import urlparse
except ImportError:
from urllib.parse import urlparse

__version__ = "1.9.2"

DEFAULT_USER_AGENTS = [
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name = 'cfscrape',
packages = ['cfscrape'],
version = '1.9.1',
version = '1.9.2',
description = 'A simple Python module to bypass Cloudflare\'s anti-bot page. See https://github.com/Anorov/cloudflare-scrape for more information.',
author = 'Anorov',
author_email = '[email protected]',
Expand Down

0 comments on commit c06237e

Please sign in to comment.