summaryrefslogtreecommitdiff
path: root/tmdbv3api/README.md
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-02-20 21:56:10 -0500
committerB. Stack <bgstack15@gmail.com>2024-02-20 21:56:49 -0500
commit556c3d13787071c91bc0a9514eee90f2f69eff1d (patch)
tree54373734befa3bb3c531b805ad64178d8ab6a528 /tmdbv3api/README.md
parentffs 13.4 (diff)
downloadstackrpms-556c3d13787071c91bc0a9514eee90f2f69eff1d.tar.gz
stackrpms-556c3d13787071c91bc0a9514eee90f2f69eff1d.tar.bz2
stackrpms-556c3d13787071c91bc0a9514eee90f2f69eff1d.zip
tmdbv3api: add this package
Diffstat (limited to 'tmdbv3api/README.md')
-rw-r--r--tmdbv3api/README.md33
1 files changed, 33 insertions, 0 deletions
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 <https://github.com/AnthonyBloomer/tmdbv3api>. The stackrpms build recipe is at <https://bgstack15.ddns.net/cgit/stackrpms/tree/tmdbv3api>.
+
+## 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
bgstack15