Is it the egg that you want?

This commit is contained in:
simonwt 2026-03-30 23:48:52 +01:00
parent 3a5db2bdba
commit d967cdeb7a
6 changed files with 53 additions and 1 deletions

2
.gitignore vendored
View file

@ -4,7 +4,7 @@ __pycache__/
build/
dist/
wheels/
*.egg-info
# *.egg-info
# Virtual environments
.venv

View file

@ -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
)
'''

View file

@ -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

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,4 @@
dotenv>=0.9.9
pydantic>=2.12.5
requests>=2.33.1
simplejson>=3.20.2

View file

@ -0,0 +1 @@
jobs