Strip your java source code to make it naked.
Project description
amanda is a tool to strip your java source code to make it naked. This tool is useful to hide solutions in programming exercises.
A file with input:
public int computeSum(int a, int b) {
// STUDENT return 0; // TODO
// BEGIN STRIP
return a + b; // the solution to hide
// END STRIP
}
Gives as output:
public int computeSum(int a, int b) {
return 0; // TODO
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
amanda-0.2-py3-none-any.whl
(2.9 kB
view details)
File details
Details for the file amanda-0.2-py3-none-any.whl
.
File metadata
- Download URL: amanda-0.2-py3-none-any.whl
- Upload date:
- Size: 2.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b97a4a047973df32c501cda8f7c3c862f3d7294215f229c63b54348e9dfebfd |
|
MD5 | 7c7ca255289c13a4b5cfef23c3556874 |
|
BLAKE2b-256 | a1e7d443469de83b680a30140b50e38fd5182b4e7ebe28454261575faede7531 |