Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nikhil-swamix/indiatools

Hyper Fast,multi purpose, Python Templating Engine. Build shit from scratch, and fast. using modulex.
https://github.com/nikhil-swamix/indiatools

framework python

Last synced: 15 days ago
JSON representation

Hyper Fast,multi purpose, Python Templating Engine. Build shit from scratch, and fast. using modulex.

Awesome Lists containing this project

README

        

# Documentation

## USAGE
put mxproxy.py file in your code folder, keep it adjacent to file where you want to import, and to import modulex, you need to use this command

from mxproxy import mx

after that you can stat using modulex's all function and speedup all the repetitive tasks.
functions available in Modulex. for example you have a file called mycode.py content below.

from mxproxy import mx

data=mx.fread('myfile.txt')
print(data)

jsondata=mx.jload('myjsonfile.json')
print(jsondata)