From 556c3d13787071c91bc0a9514eee90f2f69eff1d Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 20 Feb 2024 21:56:10 -0500 Subject: tmdbv3api: add this package --- tmdbv3api/README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tmdbv3api/README.md (limited to 'tmdbv3api/README.md') diff --git a/tmdbv3api/README.md b/tmdbv3api/README.md new file mode 100644 index 0000000..2ecde40 --- /dev/null +++ b/tmdbv3api/README.md @@ -0,0 +1,33 @@ +# README for tmdbv3api +Project [tmdbv3api](https://github.com/AnthonyBloomer/tmdbv3api) brings The Movie Database (TMDb) API to python3. + +## Upstream +This project's upstream is at . The stackrpms build recipe is at . + +## Alternatives +Use a python venv and the [pip](https://pypi.org/project/tmdbv3api/) package. + +Set up a venv: + + python3 -m venv ~/venv1 + source ~/venv1/bin/activate + pip3 install tmdbv3api + +Use the venv: + + source ~/venv1/bin/activate + python3 + +## Reason for existence +This library is not packaged by anybody else in dpkg format. I got tired of using a venv that only exists where I have prepared it ahead of time. I want a general solution. + +## Using +Install it. + +## Dependencies +See original package dependencies, but it was just `python3`. Obviously when using the library you will need a tmdb account. + +## Building +I use the Open Build Service to build this [package](https://build.opensuse.org/package/show/home:bgstack15/tmdbv3api). + +## References -- cgit