Skip to content

Commit 4fd728d

Browse files
committed
v7.0.2.6
1. Fixed license trove classifier error. 2. Added version 7 ascii stylised text. Signed-off-by: Raja Tomar <rajatomar788@gmail.com>
1 parent 3b6bc32 commit 4fd728d

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
```
2-
____ _ __ __ ______
3-
/ __ \__ _| | / /__ / /_ / ____/___ ____ __ __
4-
/ /_/ / / / / | /| / / _ \/ __ \/ / / __ \/ __ \/ / / /
5-
/ ____/ /_/ /| |/ |/ / __/ /_/ / /___/ /_/ / /_/ / /_/ /
6-
/_/ \__, / |__/|__/\___/_.___/\____/\____/ .___/\__, /
7-
/____/ /_/ /____/
2+
____ _ __ __ ______ _____
3+
/ __ \__ _| | / /__ / /_ / ____/___ ____ __ __ /__ /
4+
/ /_/ / / / / | /| / / _ \/ __ \/ / / __ \/ __ \/ / / / / /
5+
/ ____/ /_/ /| |/ |/ / __/ /_/ / /___/ /_/ / /_/ / /_/ / / /
6+
/_/ \__, / |__/|__/\___/_.___/\____/\____/ .___/\__, / /_/
7+
/____/ /_/ /____/
88
```
99

1010
`Created By : Raja Tomar`
1111
`License : Apache License 2.0`
1212
`Email: rajatomar788@gmail.com`
13+
[![Downloads](https://pepy.tech/badge/pywebcopy)](https://pepy.tech/project/pywebcopy)
1314

1415

1516
PyWebCopy is a free tool for copying full or partial websites locally

pywebcopy/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
2-
____ _ __ __ ______
3-
/ __ \__ _| | / /__ / /_ / ____/___ ____ __ __
4-
/ /_/ / / / / | /| / / _ \/ __ \/ / / __ \/ __ \/ / / /
5-
/ ____/ /_/ /| |/ |/ / __/ /_/ / /___/ /_/ / /_/ / /_/ /
6-
/_/ \__, / |__/|__/\___/_.___/\____/\____/ .___/\__, /
2+
____ _ __ __ ______ _____
3+
/ __ \__ _| | / /__ / /_ / ____/___ ____ __ __ /__ /
4+
/ /_/ / / / / | /| / / _ \/ __ \/ / / __ \/ __ \/ / / / / /
5+
/ ____/ /_/ /| |/ |/ / __/ /_/ / /___/ /_/ / /_/ / /_/ / / /
6+
/_/ \__, / |__/|__/\___/_.___/\____/\____/ .___/\__, / /_/
77
/____/ /_/ /____/
88
99
PyWebCopy is a free tool for copying full or partial websites locally

pywebcopy/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
__url__ = 'https://github.com/rajatomar788/pywebcopy/'
55
__author__ = 'Raja Tomar'
66
__email__ = 'rajatomar788@gmail.com'
7-
__license__ = 'Apache License 2.0'
7+
__license__ = 'Apache Software License'
88
__version__ = '7.0.2'
99
__description__ = 'Python library to clone/archive pages or sites from the Internet.'

pywebcopy/tests/test_urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ def test_secure_filename(self):
140140
self.assertEqual(secure_filename('..//..\\..path'), 'path')
141141
for i in ["NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8",
142142
"COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9"]:
143+
143144
if os.name == 'nt':
144145
self.assertEqual(secure_filename(i), '_' + i)
145146
else:

0 commit comments

Comments
 (0)