8000 Add package info · realpython/materials@7f22ab0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7f22ab0

Browse files
committed
Add package info
1 parent bf5326a commit 7f22ab0

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

python-selenium/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ Type one of the available commands to interact with Bandcamp's Discover section
3636

3737
## Troubleshooting
3838

39-
If the music player seems to hang when you run the script, confirm whether you've correctly set up your webdriver based on the following points.
39+
If the music player seems to hang when you run the script, confirm whether you've correctly set up your WebDriver based on the following points.
4040

4141
### Version Compatibility
4242

43-
Confirm that your browser and corresponding webdriver are in sync. If you followed the previous suggestion, then you should be using Firefox and geckodriver. If that doesn't work for any reason, you may need to switch browser _and_ webdriver.
43+
Confirm that your browser and corresponding WebDriver are in sync. If you followed the previous suggestion, then you should be using Firefox and geckodriver. If that doesn't work for any reason, you may need to switch browser _and_ WebDriver.
4444

4545
For example, if you're using Chrome, then you need to install ChromeDriver and it must match your Chrome version. Otherwise, you may run into errors like `SessionNotCreatedException`.
4646
For more details, refer to the official [ChromeDriver documentation](https://sites.google.com/chromium.org/driver/) or [geckodriver releases](https://github.com/mozilla/geckodriver/releases).
4747

4848
### Driver Installation and Path Issues
4949

50-
Once you've confirmed that your browser and driver match, make sure that the webdriver executable is properly installed:
50+
Once you've confirmed that your browser and driver match, make sure that the WebDriver executable is properly installed:
5151

5252
- **Path Configuration:** The driver must be in your system's PATH, or you need to specify its full path in your code.
5353
- **Permissions:** Ensure the driver file has the necessary execution permissions.
@@ -61,4 +61,4 @@ Bartosz Zaczyński - Email: bartosz@realpython.com
6161

6262
## License
6363

64-
Distributed under the MIT license. See `LICENSE` for more information.
64+
Distributed under the MIT license.

python-selenium/pyproject.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@ requires = ["setuptools", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "bandcamp_player"
7-
version = "0.1.0"
6+
name = "pycamp"
7+
version = "0.1.1"
88
requires-python = ">=3.10"
9-
description = "A web player for Bandcamp using Selenium"
9+
description = "A CLI music player for Bandcamp's Discover page using Python and Selenium"
10+
license = "MIT"
11+
classifiers = [
12+
"Programming Language :: Python :: 3",
13+
"Operating System :: OS Independent"
14+
]
1015
authors = [
1116
{ name = "Martin Breuss", email = "martin@realpython.com" },
1217
{ name = "Bartosz Zaczyński", email = "bartosz@realpython.com" },
@@ -16,3 +21,4 @@ dependencies = [
1621
]
1722
[project.scripts]
1823
discover = "bandcamp.__main__:main"
24+
pycamp = "bandcamp.__main__:main"

0 commit comments

Comments
 (0)
0