summaryrefslogtreecommitdiffstats
path: root/etc/tool/contributers.py
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-04-06 12:23:58 +0200
committerGitHub <noreply@github.com>2024-04-06 12:23:58 +0200
commit5db96406dd142b9a84d459ab45a10465bdb61740 (patch)
treeeb7d4844047d6bd8560aa4032a6f3cf9f5cb82ec /etc/tool/contributers.py
parentUpdate client.md (diff)
parentUpdate README.md (diff)
downloadgpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.gz
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.bz2
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.lz
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.xz
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.tar.zst
gpt4free-5db96406dd142b9a84d459ab45a10465bdb61740.zip
Diffstat (limited to '')
-rw-r--r--etc/tool/contributers.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/tool/contributers.py b/etc/tool/contributers.py
new file mode 100644
index 00000000..76fa461d
--- /dev/null
+++ b/etc/tool/contributers.py
@@ -0,0 +1,6 @@
+import requests
+
+url = "https://api.github.com/repos/xtekky/gpt4free/contributors"
+
+for user in requests.get(url).json():
+ print(f'<a href="https://github.com/{user["login"]}" target="_blank"><img src="{user["avatar_url"]}&s=45" width="45" title="{user["login"]}"></a>') \ No newline at end of file