Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/thirdparty/chardet/version.py
2992 views
1
"""
2
This module exists only to simplify retrieving the version number of chardet
3
from within setup.py and from chardet subpackages.
4
5
:author: Dan Blanchard ([email protected])
6
"""
7
8
__version__ = "3.0.4"
9
VERSION = __version__.split('.')
10
11