-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove setup.py * fix * fix * minor fix * fix doc * fix * fix * fix * fix
- Loading branch information
Showing
16 changed files
with
152 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,7 +140,6 @@ cython_debug/ | |
# vscode | ||
.vscode/ | ||
|
||
setup.cfg | ||
nemcache.sqlite | ||
|
||
#Jetbrains | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 omi <[email protected]> | ||
Copyright (c) 2020 omi <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,28 @@ | ||
from .const import Constant | ||
from .utils import create_dir | ||
from .utils import create_file | ||
|
||
create_dir(Constant.conf_dir) | ||
create_dir(Constant.download_dir) | ||
create_file(Constant.storage_path) | ||
create_file(Constant.log_path, default="") | ||
create_file(Constant.cookie_path, default="#LWP-Cookies-2.0\n") | ||
r""" | ||
__ ___________________________________________ | ||
| \ ||______ | |______|_____||______|______ | ||
| \_||______ | |______| |______||______ | ||
________ __________________________ _____ _ _ | ||
| | || ||______ | | |_____]| | \___/ | ||
| | ||_____|______|__|__|_____ |_____]|_____|_/ \_ | ||
+ ------------------------------------------ + | ||
| NetEase-MusicBox 320kbps | | ||
+ ------------------------------------------ + | ||
| | | ||
| ++++++++++++++++++++++++++++++++++++++ | | ||
| ++++++++++++++++++++++++++++++++++++++ | | ||
| ++++++++++++++++++++++++++++++++++++++ | | ||
| ++++++++++++++++++++++++++++++++++++++ | | ||
| ++++++++++++++++++++++++++++++++++++++ | | ||
| | | ||
| A sexy cli musicbox based on Python | | ||
| Music resource from music.163.com | | ||
| | | ||
| Built with love to music by omi | | ||
| | | ||
+ ------------------------------------------ + | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.