Skip to content

Commit d7be6bf

Browse files
committed
Recoded Setup File
1 parent ae126cc commit d7be6bf

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

PyFileDownloader.egg-info/PKG-INFO

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Metadata-Version: 2.1
22
Name: PyFileDownloader
3-
Version: 1.0
3+
Version: 1.1.0
44
Summary: A Python module to download any file-type from the internet.
5-
Home-page: https://github.com/NotCookey/FileDownloader
5+
Home-page: https://github.com/NotCookey/PyFileDownloader
66
Author: NotCookey
77
Author-email: [email protected]
88
License: UNKNOWN
@@ -13,7 +13,7 @@ Description:
1313
## How To Download
1414
- **Downloading a File**
1515
```py
16-
from FileDownloader import Downloader
16+
from PyFileDownloader import Downloader
1717

1818
download=Downloader(url="DOWNLOAD LINK")
1919

@@ -31,7 +31,7 @@ Description:
3131
## Save A File With A Custom Name
3232
- **If you would like to download and save a file with a custom name, you can do so with the `.save()` method. It takes a `filename` parameter that is set to `None` by default.**
3333
```py
34-
from FileDownloader import Downloader
34+
from PyFileDownloader import Downloader
3535

3636
download=Downloader(url="DOWNLOAD LINK")
3737
download.save(filename="custom_name.extension")

PyFileDownloader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from PyFileDownloader.PFileDownloader import Downloader
1+
from PyFileDownloader.PyFileDownloader import Downloader
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from PyFileDownloader.PFileDownloader import Downloader
1+
from PyFileDownloader.PyFileDownloader import Downloader
-3.51 KB
Binary file not shown.

dist/PyFileDownloader-1.0.tar.gz

-2.34 KB
Binary file not shown.
3.53 KB
Binary file not shown.

dist/PyFileDownloader-1.1.0.tar.gz

2.35 KB
Binary file not shown.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
88
long_description = "\n" + fh.read()
99

10-
VERSION = '1.0'
10+
VERSION = '1.1.0'
1111
DESCRIPTION = 'A Python module to download any file-type from the internet.'
1212
LONG_DESCRIPTION = 'A Python module to download any file-type from the internet.'
1313

1414
setup(
1515
name="PyFileDownloader",
1616
version=VERSION,
1717
author="NotCookey",
18-
url='https://github.com/NotCookey/FileDownloader',
18+
url='https://github.com/NotCookey/PyFileDownloader',
1919
author_email="[email protected]",
2020
description=DESCRIPTION,
2121
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)