LUA sample file
lua_sample_file_500KB.lua
500.0 KB
application/octet-stream
SHA256 verified
File details
Filename
lua_sample_file_500KB.luaSize500.0 KB (512000 bytes)
MIME type
application/octet-streamExtension
.luaSHA256
1edcfc2b382d8bdb5d044c7f34d5f4b71a00b4137567b020e9cb1e75255beadaDownload commands
Use in scripts and tests
curl -L -o lua_sample_file_500KB.lua \
https://samplefile.com/samples/download/code/lua/lua_sample_file_500KB.lua/
wget -O lua_sample_file_500KB.lua \
https://samplefile.com/samples/download/code/lua/lua_sample_file_500KB.lua/
import requests
url = "https://samplefile.com/samples/download/code/lua/lua_sample_file_500KB.lua/"
resp = requests.get(url)
with open("lua_sample_file_500KB.lua", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/code/lua/lua_sample_file_500KB.lua/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("lua_sample_file_500KB.lua", buf);
# Download and verify SHA256
curl -L -o lua_sample_file_500KB.lua https://samplefile.com/samples/download/code/lua/lua_sample_file_500KB.lua/
echo "1edcfc2b382d8bdb5d044c7f34d5f4b71a00b4137567b020e9cb1e75255beada lua_sample_file_500KB.lua" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/code/lua/lua_sample_file_500KB.lua/").content
assert hashlib.sha256(data).hexdigest() == "1edcfc2b382d8bdb5d044c7f34d5f4b71a00b4137567b020e9cb1e75255beada"
More LUA files
Other LUA Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
lua_sample_file_1MB.lua |
1.0 MB | 90b9dc91d1dc2b1e… |
Download |
lua_sample_file_200KB.lua |
200.0 KB | da664e315d9a1510… |
Download |
lua_sample_file_50KB.lua |
50.0 KB | 80a8d85e45251e8c… |
Download |
Learn more