t.me/xtekky commited on
poe.com api (gpt-4) [added license for api.py
Browse files- quora/api.py +20 -0
quora/api.py
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import requests
|
| 2 |
import re
|
| 3 |
import json
|
|
|
|
| 1 |
+
# This file was taken from the repository poe-api https://github.com/ading2210/poe-api and is unmodified
|
| 2 |
+
# This file is licensed under the GNU GPL v3 and written by @ading2210
|
| 3 |
+
|
| 4 |
+
# license:
|
| 5 |
+
# ading2210/poe-api: a reverse engineered Python API wrapepr for Quora's Poe
|
| 6 |
+
# Copyright (C) 2023 ading2210
|
| 7 |
+
|
| 8 |
+
# This program is free software: you can redistribute it and/or modify
|
| 9 |
+
# it under the terms of the GNU General Public License as published by
|
| 10 |
+
# the Free Software Foundation, either version 3 of the License, or
|
| 11 |
+
# (at your option) any later version.
|
| 12 |
+
|
| 13 |
+
# This program is distributed in the hope that it will be useful,
|
| 14 |
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 15 |
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 16 |
+
# GNU General Public License for more details.
|
| 17 |
+
|
| 18 |
+
# You should have received a copy of the GNU General Public License
|
| 19 |
+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
| 20 |
+
|
| 21 |
import requests
|
| 22 |
import re
|
| 23 |
import json
|