mirror of
https://gitlab.com/RemixDev/deezer-py.git
synced 2024-12-26 17:36:10 +00:00
Updated .gitignore and README.md
This commit is contained in:
parent
165b160dcd
commit
67c6ff4ca8
23
.gitignore
vendored
23
.gitignore
vendored
|
@ -2,6 +2,8 @@ __pycache__
|
|||
*/__pycache__
|
||||
|
||||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
|
||||
# local env files
|
||||
/env/
|
||||
|
@ -9,8 +11,25 @@ __pycache__
|
|||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
# Private configs
|
||||
/config.py
|
||||
/test.py
|
||||
|
||||
#build files
|
||||
/build
|
||||
/dist
|
||||
|
||||
/*egg-info
|
||||
updatePyPi.sh
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
# deezer-py
|
||||
A wrapper for all Deezer's APIs
|
||||
|
||||
## Installing and using the library
|
||||
You can install this library with `pip install deezer-py`
|
||||
|
||||
# License
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
|
Loading…
Reference in a new issue