Skip to main content

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=1
a,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 math
import os,sys
import numpy as np
FunctionDef def func(a,*args): ...
Return return None
Global global a

Remarks:

  1. 'from-import' is not implmented.

Dependencies

  • CPython >= 3.9

Project details


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

If you're not sure about the file name format, learn more about wheel file names.

OLG4P-0.2-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

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

Hashes for OLG4P-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 52086ddb239020bd6e5209fc63d6cc6e2c8a94059234c1ca6abd021fb7c40320
MD5 2d40d908c19fbfcec224df01e44c9996
BLAKE2b-256 423bde57171944cc2cdf892a61af39429fabaf5b6887f5efd3644529a7338f70

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page