bs4.BeautifulSoup.NO_PARSER_SPECIFIED_WARNING

BeautifulSoup.NO_PARSER_SPECIFIED_WARNING = 'No parser was explicitly specified, so I\'m using the best available %(markup_type)s parser for this system ("%(parser)s"). This usually isn\'t a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.\n\nTo get rid of this warning, change this:\n\n BeautifulSoup([your markup])\n\nto this:\n\n BeautifulSoup([your markup], "%(parser)s")\n'