Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/nikhil-swamix/indiatools
- Owner: nikhil-swamix
- Created: 2020-09-17T03:17:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-31T21:55:22.000Z (about 1 year ago)
- Last Synced: 2024-12-09T02:24:40.128Z (25 days ago)
- Topics: framework, python
- Language: Python
- Homepage:
- Size: 107 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 commandfrom 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)