This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Reason given by maintainers: Moved to supercontest-client
Supercontest Client
I have chosen to enable GraphiQL on southbaysupercontest because it is protected by auth and CSRF. It's a valuable tool for users. You may explore the data here.
There is a Python client to fetch your data programmatically, similar to gql. Simply
pip install supercontest and then run a query like the following example:
import supercontest
query = """
{
users (filters: {email_confirmed_at_lt: "2019-10-01T00:00:00"}) {
edges {
node {
email
first_name
}
}
}
}
"""
data = supercontest.query(email='myemail@domain.com',
password='mypassword', # your pw is encrypted over https
query=query)
Other heavy-handed solutions like Selenium also work. The endpoint simply requires auth and a CSRF token.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file supercontest-1.0.1.tar.gz.
File metadata
- Download URL: supercontest-1.0.1.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b70fee8255134229d4b1cb738adb95dfe1bb13ab9ab39b4d09e0f1b2ca007f71
|
|
| MD5 |
650c797d9d2a902d40c6757d34b4bb07
|
|
| BLAKE2b-256 |
dc15119f7c8990e8b96dd3467620b60061dc081ea1ac346ce4f38ea5d9e7a4f1
|