aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-09-05 18:54:39 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-09-05 18:54:39 -0700
commita65dfc914517376b5ededb82e594236c5d61c721 (patch)
tree381a5d346dfad7f020c344d2c4740eefb71be61d /python
parent28d2d94a9100c1a809955cde93fdbb7a36263057 (diff)
downloadfatcat-a65dfc914517376b5ededb82e594236c5d61c721.tar.gz
fatcat-a65dfc914517376b5ededb82e594236c5d61c721.zip
update all other mentions of python client lib
Diffstat (limited to 'python')
-rw-r--r--python/.coveragerc2
-rw-r--r--python/Pipfile4
-rw-r--r--python/Pipfile.lock6
-rw-r--r--python/README.md4
4 files changed, 8 insertions, 8 deletions
diff --git a/python/.coveragerc b/python/.coveragerc
index becac586..78764694 100644
--- a/python/.coveragerc
+++ b/python/.coveragerc
@@ -2,4 +2,4 @@
source =
fatcat_tools
fatcat_web
- ../python_client/fatcat_client
+ ../python_openapi_client/fatcat_openapi_client
diff --git a/python/Pipfile b/python/Pipfile
index 0de97b25..b488f210 100644
--- a/python/Pipfile
+++ b/python/Pipfile
@@ -1,5 +1,5 @@
# This file is *not* used as part of bundling or distributing the python client
-# library (fatcat_client). It *is* shared by the web interface (flask app),
+# library (fatcat-openapi-client). It *is* shared by the web interface (flask app),
# workers, and import scripts.
[[source]]
@@ -18,7 +18,7 @@ pylint = "*"
pg-view = "*"
[packages]
-fatcat_client = {path = "./../python_client"}
+fatcat-openapi-client = {path = "./../python_openapi_client"}
python-dotenv = "*"
Flask = ">=1"
flask-uuid = "*"
diff --git a/python/Pipfile.lock b/python/Pipfile.lock
index e1e9a8a6..d82121c4 100644
--- a/python/Pipfile.lock
+++ b/python/Pipfile.lock
@@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
- "sha256": "dd219787aa7a52cc030aab7b256663b538e61c7420fe06fb73c7d0b3173eae6e"
+ "sha256": "ea087a8b88fbbcb81a0b97279273fcdf0d6e759a2971d4e576cca4593594eb97"
},
"pipfile-spec": 6,
"requires": {
@@ -107,8 +107,8 @@
],
"version": "==7.0"
},
- "fatcat-client": {
- "path": "./../python_client"
+ "fatcat-openapi-client": {
+ "path": "./../python_openapi_client"
},
"flask": {
"hashes": [
diff --git a/python/README.md b/python/README.md
index 783ed966..dc6ca415 100644
--- a/python/README.md
+++ b/python/README.md
@@ -3,7 +3,7 @@
This directory contains python code for the fatcat project: a web interface
(`fatcat_web`) and a series of utilities and worker processes (`fatcat_tools`).
-These depend on the API client library (`fatcat_client`, see below).
+These depend on the API client library (`fatcat_openapi_client`, see below).
Most of this code is an "application" which is tightly interwoven and intended
to be run from this directory, but the client library is distributed on
@@ -23,7 +23,7 @@ versions had a bug which caused problems with our local path dependency.
## API Client Library
The auto-generated python client library for the fatcat API lives under
-`../fatcat_client`. It includes entity model objects and functions to call all
+`../fatcat_openapi_client`. It includes entity model objects and functions to call all
API endpoints; see the `README.md` for details.
To re-generate swagger-codegen python client library (requires docker installed