python with braces.
Project description
nestPython
"what if python, with braces, one line?"
SETUP
Install nestPython by executing:
$ pip install nestpython
After importing;
-
In order to compile a string from nestPython to python, use
nestpython.ncompile(string)
-
In order to execute a nestPython string, use
nestpython.nexec(string)
For both, optional argument
indent-level
determines the indentation increment in the resulting python file. It is set to 1 by default. -
To execute and compile files and folders, use the
nestpython.files
module:nestpython.files.ncompile(file)
compiles the given file to a stringnestpython.files.nexec(file)
executes the filenestpython.files.build(dir, new_dir)
builds an entire golder- arguments can be provided.
Use .npy
for nestPython files, .npx
for nestCython files.
FEATURING:
braces
Use {
, ;
and }
instead of indentation! Indentation and newlines in the source files will be ignored. e.g.:
n = input('Enter Number: ');
if (n % 2 == 0) {
print('n is even')
} else {
print('n is odd')
}
Use ~{
as a shorthand for while True {
.
syntactical changes
Several keywords are altered:
Python | nestPython | Python | nestPython |
---|---|---|---|
def |
:= |
del |
~> |
return |
=> |
yield |
:> |
in |
-> |
and |
&& |
not in |
!> |
or |
|| |
is |
=& |
:= |
<- |
is not |
!=& |
case |
? |
lambda |
;= |
; |
,, |
-> |
>: |
// |
~/ |
+= 1 |
++ |
-= 1 |
-- |
{ |
-{ |
} |
}- |
A variable like return
will be replaced with return_
on transpilation. pass
is not required: simply use {}
.
Note that one-liner functions can still be written with colons: := foo(): => bar
Cython keywords are also altered for .npx
:
Cython | nestCython |
---|---|
cdef |
$= |
cpdef |
~$= |
Strings or ternaries do not have to be one-line, but if they are not, you can use \
and #
like the following.
'string \
continues here'
is equivalent to
'string continues here'
and compiles to a python string with newl This is useful to make it clear that there is a space before the newline character. The backspace is simply ignored by the compiler.
Same thing can be done with code and the #
character:
a if b #
else c
is equivalent to
a if b else c
The #
is ignored by the compiler.
comments
- For block comments, use
/*
,*/
. - For line comments, use
//
. - Block and line comments will be ignored during compilation.
- For comments that need to be transpiled into python ones, use
/|
,|\
.
(to be continued)
github : https://github.com/slycedf/nestpy
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 Distribution
Built Distribution
File details
Details for the file nestpython-0.3.25.tar.gz
.
File metadata
- Download URL: nestpython-0.3.25.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bce3ded3319dfe89a062b9a2ff1e68d5ab32dff5f683a79691488aed735b17d2 |
|
MD5 | 74221fb90d73bcc250020de6774ad9c3 |
|
BLAKE2b-256 | 7debd4170b5c93080a127f01d284f15d0f2476da1e3250cc8c2f7edec577333d |
File details
Details for the file nestpython-0.3.25-py3-none-any.whl
.
File metadata
- Download URL: nestpython-0.3.25-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1f6069693fdf39f112c5d766052093b26a92198a350f2dd82ddc9e51701775a |
|
MD5 | 1e12502fca2081b8b2960c5a62dc9d34 |
|
BLAKE2b-256 | ee12f25165a900db9948e204a67973c0295e80c45f3a3ada3e2ad472611430ac |