Convert python script into python one-liner
Project description
One-Liner Generator for Python
A simple script that converts python scripts into one-liner.
Install
pip install OLG4P
Usage
python3 -m oneliner [input file] -o [output file]
Or use python3 -m oneliner -h for help.
Example
InputFile:
import random
y,h=0,2
msg='hello_world'
while y<h*2:
for x in range(len(msg)+2):
print(random.choice('/\\'),end='')
y+=1
if y==h:
print('\n %s '%msg)
else:
print('')
Generated:
[(itertools := __import__('itertools')), (random := __import__('random')), [(__ol_assign_tmp_nxazjlgisn := (0, 2)), (y := __ol_assign_tmp_nxazjlgisn[0]), (h := __ol_assign_tmp_nxazjlgisn[1])], (msg := 'hello_world'), [[[print(random.choice('/\\'), end='') for x in range(len(msg) + 2)], y.__iadd__(1) if hasattr(y, '__iadd__') else (y := (y + 1)), print('\n %s ' % msg) if y == h else print('')] for _ in itertools.takewhile(lambda _: y < h * 2, itertools.count())]]
Limitation
This script requires python3.9+. Many statements are not convertable.
Here are the statements that have already been implemented.
| statement | example |
|---|---|
| Expr | print((1+1)*2) |
| Assign | a=1a,b=b,a |
| AugAssign | a*=1 |
| If | if a==0: ...elif a>1: ...else: ... |
| For | for i in range(10): ...else: ... |
| While | while a<100: ...else: ... |
| Break | break |
| Continue | continue |
| Pass | while 1: pass |
| Import 1 | import mathimport os,sysimport numpy as np |
| FunctionDef | def func(a,*args): ... |
| Return | return None |
| Global | global a |
Remarks:
- 'from-import' is not implmented.
Dependencies
- CPython >= 3.9
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file OLG4P-0.2-py3-none-any.whl.
File metadata
- Download URL: OLG4P-0.2-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52086ddb239020bd6e5209fc63d6cc6e2c8a94059234c1ca6abd021fb7c40320
|
|
| MD5 |
2d40d908c19fbfcec224df01e44c9996
|
|
| BLAKE2b-256 |
423bde57171944cc2cdf892a61af39429fabaf5b6887f5efd3644529a7338f70
|