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 /README.md | |
parent | 36a4d3f2c6b7ddb967d885ba36f850a668029d9e (diff) |
Changed HTTP URLs to HTTPS.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 6 insertions, 9 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 -``` |