diff options
author | Leonard Richardson <leonardr@segfault.org> | 2021-10-09 08:06:11 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2021-10-09 08:06:11 -0400 |
commit | 88a49ae01506e33613a544e237b6430ba3c67319 (patch) | |
tree | ed9caa642fe4d63ab3ba4a4677ea249c788c026e | |
parent | 36a4d3f2c6b7ddb967d885ba36f850a668029d9e (diff) |
Changed HTTP URLs to HTTPS.
-rw-r--r-- | README.md | 15 | ||||
-rw-r--r-- | setup.py | 4 |
2 files changed, 8 insertions, 11 deletions
@@ -40,13 +40,13 @@ idioms for iterating, searching, and modifying the parse tree. </tag1> ``` -To go beyond the basics, [comprehensive documentation is available](http://www.crummy.com/software/BeautifulSoup/bs4/doc/). +To go beyond the basics, [comprehensive documentation is available](https://www.crummy.com/software/BeautifulSoup/bs4/doc/). # Links -* [Homepage](http://www.crummy.com/software/BeautifulSoup/bs4/) -* [Documentation](http://www.crummy.com/software/BeautifulSoup/bs4/doc/) -* [Discussion group](http://groups.google.com/group/beautifulsoup/) +* [Homepage](https://www.crummy.com/software/BeautifulSoup/bs4/) +* [Documentation](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) +* [Discussion group](https://groups.google.com/group/beautifulsoup/) * [Development](https://code.launchpad.net/beautifulsoup/) * [Bug tracker](https://bugs.launchpad.net/beautifulsoup/) * [Complete changelog](https://bazaar.launchpad.net/~leonardr/beautifulsoup/bs4/view/head:/CHANGELOG) @@ -80,12 +80,9 @@ documentation. # Running the unit tests -Beautiful Soup supports unit test discovery from the project root directory: +Beautiful Soup supports unit test discovery using Pytest: ``` -$ nosetests +$ pytest ``` -``` -$ python3 -m unittest discover -s bs4 -``` @@ -14,8 +14,8 @@ setup( version = __version__, author="Leonard Richardson", author_email='leonardr@segfault.org', - url="http://www.crummy.com/software/BeautifulSoup/bs4/", - download_url = "http://www.crummy.com/software/BeautifulSoup/bs4/download/", + url="https://www.crummy.com/software/BeautifulSoup/bs4/", + download_url = "https://www.crummy.com/software/BeautifulSoup/bs4/download/", description="Screen-scraping library", python_requires='>=3.6.0', install_requires=[ |