fixed contributing.md (#955)

This commit is contained in:
Beza Amare Amsalu 2023-03-30 13:12:41 -04:00 committed by GitHub
parent fe438c0432
commit b7baaabf74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -395,6 +395,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix typos in doc - Fix typos in doc
- Start following [SemVer](https://semver.org) properly - Start following [SemVer](https://semver.org) properly
### Changed
- Made instructions in the CONTRIBUTING.md file more clear such that it is easier to onboard and there are no conflicts with TUTORIAL.md
## [2.5.0] - 2020-01-11 ## [2.5.0] - 2020-01-11
Added follow and player endpoints Added follow and player endpoints

View File

@ -8,7 +8,7 @@ If you would like to contribute to spotipy follow these steps:
# Linux or Mac # Linux or Mac
export SPOTIPY_CLIENT_ID=client_id_here export SPOTIPY_CLIENT_ID=client_id_here
export SPOTIPY_CLIENT_SECRET=client_secret_here export SPOTIPY_CLIENT_SECRET=client_secret_here
export SPOTIPY_CLIENT_USERNAME=client_username_here # This is actually an id not spotify display name export SPOTIPY_CLIENT_USERNAME=client_username_here # This is actually an id not spotify display name and can be found [here](https://www.spotify.com/us/account/overview/)
export SPOTIPY_REDIRECT_URI=http://localhost:8080 # Make url is set in app you created to get your ID and SECRET export SPOTIPY_REDIRECT_URI=http://localhost:8080 # Make url is set in app you created to get your ID and SECRET
# Windows # Windows
@ -21,9 +21,9 @@ $env:SPOTIPY_REDIRECT_URI="http://localhost:8080"
### Create virtual environment, install dependencies, run tests: ### Create virtual environment, install dependencies, run tests:
```bash ```bash
$ virtualenv --python=python3.7 env $ virtualenv --python=python3 env
$ source env/bin/activate $ source env/bin/activate
(env) $ pip install --user -e . (env) $ pip install -e .
(env) $ python -m unittest discover -v tests (env) $ python -m unittest discover -v tests
``` ```