diff --git a/.gitignore b/.gitignore index fd06c94..2ceefd0 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ __pycache__/ build/ dist/ wheels/ -*.egg-info +# *.egg-info # Virtual environments .venv diff --git a/trustcafeapiwrapper.egg-info/PKG-INFO b/trustcafeapiwrapper.egg-info/PKG-INFO new file mode 100644 index 0000000..6c166b8 --- /dev/null +++ b/trustcafeapiwrapper.egg-info/PKG-INFO @@ -0,0 +1,33 @@ +Metadata-Version: 2.4 +Name: trustcafeapiwrapper +Version: 0.1.0.1 +Summary: Add your description here +Home-page: https://gitlab.com/trustcafe/trustcafe-api-wrapper/ +Author: Simon Little +Author-email: simon.little@wikitribune.com +Requires-Python: >=3.13 +Description-Content-Type: text/markdown +Requires-Dist: dotenv>=0.9.9 +Requires-Dist: pydantic>=2.12.5 +Requires-Dist: requests>=2.33.1 +Requires-Dist: simplejson>=3.20.2 +Dynamic: author +Dynamic: author-email +Dynamic: home-page + +# Trustcafe API Wrapper + +Intended use (not working yet but testing.py does) + +''' +import trustcafeapi +import os, simplejson as json + + +API = trustcafeapi.APIClient( + client_id=os.getenv("client_id"), + client_secret=os.getenv("client_secret"), + debug=True +) + +''' diff --git a/trustcafeapiwrapper.egg-info/SOURCES.txt b/trustcafeapiwrapper.egg-info/SOURCES.txt new file mode 100644 index 0000000..7ad83c2 --- /dev/null +++ b/trustcafeapiwrapper.egg-info/SOURCES.txt @@ -0,0 +1,13 @@ +README.md +pyproject.toml +setup.py +jobs/__init__.py +jobs/branch/__init__.py +jobs/branch/get.py +jobs/userprofile/__init__.py +jobs/userprofile/get.py +trustcafeapiwrapper.egg-info/PKG-INFO +trustcafeapiwrapper.egg-info/SOURCES.txt +trustcafeapiwrapper.egg-info/dependency_links.txt +trustcafeapiwrapper.egg-info/requires.txt +trustcafeapiwrapper.egg-info/top_level.txt \ No newline at end of file diff --git a/trustcafeapiwrapper.egg-info/dependency_links.txt b/trustcafeapiwrapper.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/trustcafeapiwrapper.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/trustcafeapiwrapper.egg-info/requires.txt b/trustcafeapiwrapper.egg-info/requires.txt new file mode 100644 index 0000000..4813e8f --- /dev/null +++ b/trustcafeapiwrapper.egg-info/requires.txt @@ -0,0 +1,4 @@ +dotenv>=0.9.9 +pydantic>=2.12.5 +requests>=2.33.1 +simplejson>=3.20.2 diff --git a/trustcafeapiwrapper.egg-info/top_level.txt b/trustcafeapiwrapper.egg-info/top_level.txt new file mode 100644 index 0000000..995321f --- /dev/null +++ b/trustcafeapiwrapper.egg-info/top_level.txt @@ -0,0 +1 @@ +jobs