https://github.com/classpythonaddike/unofficial-tester
Unofficial Tester for Weekly Challenges
https://github.com/classpythonaddike/unofficial-tester
api golang tester
Last synced: 7 months ago
JSON representation
Unofficial Tester for Weekly Challenges
- Host: GitHub
- URL: https://github.com/classpythonaddike/unofficial-tester
- Owner: classPythonAddike
- Created: 2021-09-12T14:22:33.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-21T03:39:24.000Z (about 4 years ago)
- Last Synced: 2025-01-24T16:32:57.405Z (9 months ago)
- Topics: api, golang, tester
- Language: Python
- Homepage: https://addike-tester.herokuapp.com/
- Size: 235 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unofficial Tester
A simple API to simplify unofficial testing (Idea by SKP627)
Use the following snippet to test your code -
```py
import requestsresp = requests.get(
"https://addike-tester.herokuapp.com/run-test",
files = {
"file": open("golfed_solution.py", "r") # Change this to your file name
}
)print(resp.text)
```Make sure you've installed the `requests` module first.