A quick thumbnail creator for python codes
Project description
Pythumbnail
What is Pythumbnail?
Pythumbnail is a quick thumbnail creator for python codes. You can get an overview of the available functions, for/while loops and if conditions without even running the code.
Suppose you have the following python file:
class someclass:
def __init__(self):
self.a = 10
def do_something(self):
for i in range(len(self.a)):
if i == 2:
print(i)
def do_something_else(self, num):
while self.a < 100:
self.a += num
Here is a small example to show what Pythumbnail could do (Python 3):
import pythumbnail
file = pythumbnail.read_file('some_file.py')
print(file.tree)
The output will look like:
'File some_file.py()'
'class someclass()'
'def __init__(self)'
'def do_something(self)'
'for i in range(len(self.a))'
'if[i,2] LOGIC: [==]'
'def do_something_else(self,num)'
'while[self.a,100] LOGIC: [<]'
Quick Start
To install Pythumbnail, you need python version 3.6.0 or above. Pythumbnail could be installed from pypi:
$ python3 -m pip install pythumbnail
Running Pythumbnail:
import pythumbnail
Documentation
Full documentation is available here
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
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
Hashes for pythumbnail-0.0.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0222538d6361a0a9c02b7b38cec2d9648faf176098f42c8161ff4dc9e59a7485 |
|
MD5 | 338064b963beb06ef3fcafbf36200ee9 |
|
BLAKE2b-256 | 0782e9639eba4ff5b9fc8d5ebddf2881383125fe22da593309a3f6f47c84ea8f |