Metadata-Version: 2.1
Name: videobox
Version: 0.7.2
Summary: Easy TV series download
Author: Andrea Peltrin
Project-URL: Homepage, https://github.com/passiomatic/videobox
Project-URL: Bug Tracker, https://github.com/passiomatic/videobox/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: peewee<4,>=3.15.4
Requires-Dist: urllib3<2
Requires-Dist: requests<3,>=2.31.0
Requires-Dist: flask<3,>=2.3.3
Requires-Dist: waitress<3,>=2.1.2
Requires-Dist: tomli<3,>=2.0.1
Requires-Dist: tomli-w<2,>=1.0.0
Requires-Dist: chardet==5.2.0

# Videobox

Videobox is a Python web app that lets you discover and download the latest TV series without annoying ads, tracking scripts, and crypto mining stuff.

![The Videobox home page](screenshot.jpg)

## Prerequisites

Videobox requires the Python 3 programming language to be installed on your machine. If you are not familiar with it please refer to the official Python's [download page][d] for more information. 

To check if you have Python installed type the following after in your terminal prompt (`$`):

```
$ python --version 
Python 3.9.6
```

Any Python version starting from 3.9 should run Videobox just fine. 

**Note**: currently Videobox requires an external BitTorrent client ([uTorrent](https://www.utorrent.com), [Transmission](https://transmissionbt.com), etc.) to download video files.

## Installation

You can install Videobox along with the main Python installation of your machine or in so-called "virtual environment", which is the recommended approach, since its dependencies may clash with packages you have already installed. [Learn more about virtual environments][venv]. 

Install or update Videobox from [PyPI][2] via the Python `pip` utility. Again, type the following command in your terminal:

```
$ python -m pip install -U videobox
```

## Quick start

You use Videobox via its web interface. To access it, start the `videobox` command on the terminal and point the web browser to the given URL:

```
$ videobox
Videobox has started. Point your browser to http://localhost:8080 to use the web interface.
```

At startup Videobox updates its library and will attempt to do it again periodically.

Add `--help` to list all the available options:

```
$ videobox --help 
Usage: videobox [OPTIONS]

Options:
  --host TEXT     Hostname or IP address on which to listen. Default is
                  0.0.0.0, which means "all IP addresses on this host".
  --port INTEGER  TCP port on which to listen, default is 8080
  --help          Show this message and exit.
```

If your are interested in hacking the source code or contribute to the project see the [contributing document][contrib].

## Building the macOS app 

If you are on a Mac you can compile Videobox into a menu bar app. 

First, install the necessary dependencies with:

```
$ make install-package && make install-build-deps
```

Then build the app with:

```
$ make build-app
```

If everything went fine you will find the compiled app into the `dist` folder. The first time you run the app you will need to manually authorise it, please [follow these instructions][1].

The build app process has been tested macOS Mojave (Intel), Ventura (arm64), and Sonoma (arm64). 

**Note**: Cross-compiling app from Intel to arm64 (or the other way around) can ben tricky, [like explained in detail here][cross], so generally it is better to stick on a single CPU architecture.

## Roadmap

This is a rough plan of what I would like to implement in the upcoming releases:

* **0.8**: Support for "complete season" torrents.
* **0.9**: [libtorrent][l] integration.

## Credits 

[Phosphor Icons][i] created by Helena Zhang and Tobias Fried.


[1]: https://www.funkyspacemonkey.com/how-to-open-applications-from-anywhere-in-macos-sonoma
[2]: https://pypi.org/project/videobox/
[3]: https://brew.sh/
[4]: https://flask.palletsprojects.com/en/2.2.x/cli/
[i]: https://phosphoricons.com
[d]: https://www.python.org/downloads/
[l]: https://github.com/arvidn/libtorrent
[venv]: https://docs.python.org/3/library/venv.html
[contrib]: CONTRIBUTING.md
[cross]: https://github.com/ronaldoussoren/py2app/issues/523#issuecomment-2140630179
