Modify your own source code with this piece of Python black magic
Project description
Modify your own source code with this piece of Python black magic.
When a piece of code calls replace_me(value), that line will be replaced with the given value. If you want to insert a comment and keep the line that inserted it, use insert_comment(value).
ATTENTION: Calling these functions will modify your source code. Keep backups.
Example:
from replace_me import replace_me, insert_comment
# If you run this program, this source code will change.
# These two lines will become the same:
# Hello World
replace_me("Hello World", as_comment=True)
# Code generation. Creates a hard coded list of 100 numbers.
replace_me('numbers = ' + str(list(range(100))))
import random
# The next comment will be replaced with a random number.
insert_comment(random.randint(1, 10))
# ??
# Pseudo-quine, replaces the line with itself.
quine = 'replace_me(quine)'
replace_me(quine)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
replace_me-0.1.4.tar.gz
(2.5 kB
view details)
File details
Details for the file replace_me-0.1.4.tar.gz.
File metadata
- Download URL: replace_me-0.1.4.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99179545a9f554571a243d7ac5ba3d732e158a3f07a39e78dd7cba055d5673c9
|
|
| MD5 |
5d12777de5675b3da99ed075aed9ac6b
|
|
| BLAKE2b-256 |
e24794ea09325e1674db48dc3f9a66e2535e49840c69dbdd24eb1c831e308eee
|