utils for python
Project description
pyutils
pip3 install --upgrade slimz
Color
from slimz.color import Color
cl = Color()
print(cl.red('I am red!'))
print(cl.green('I am gree!'))
print(cl.yellow('I am yellow!'))
print(cl.blue('I am blue!'))
print(cl.magenta('I am magenta!'))
print(cl.cyan('I am cyan!'))
print(cl.white('I am white!'))
print(cl.white_green('I am white green!'))
Book1
Book1 is just for reading specified cell data
from slimz.book import Book1,parseFloatTimeToString
b1 = Book1("/Users/scottxiong/Desktop/test.xlsx")
sheet = b1.sheet(0)
#parseFloatTimeToString(row,col,sheet)
print(sheet.cell_value(0,0))
print(sheet.cell_value(0,1))
print(sheet.cell_value(0,2))
print(sheet.cell_value(1,2))
print(sheet.cell_value(4,0))
Book2
Book2 used for writing data with existing sheet template
from slimz.book import font,style,Book2,borders,alignment_center,alignment_left,alignment_right
style1 = style(borders,alignment_center,font("Arial",10))
b2 = Book2("/Users/scottxiong/Desktop/test.xlsx","/Users/scottxiong/Desktop/test1.xls")
sheet = b2.copy(0,0)
sheet.write(5,1,"hello world")
sheet.write(5,2,1111,style1)
sheet.write(5,3,"2020/03/02")
b2.save()
other function
from slimz import today_str,isExist,firstLetterToUpper
print(today_str)
print(isExist("a.txt"))
print(firstLetterToUpper("I lOve yoU & all the PEOPLE that loved me!"))
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
slimz-0.0.7.tar.gz
(3.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
slimz-0.0.7-py3-none-any.whl
(4.7 kB
view details)
File details
Details for the file slimz-0.0.7.tar.gz.
File metadata
- Download URL: slimz-0.0.7.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24961a47c3cf723055bad55f9cba7134ec87152f111c63384fca10a72f6ea16b
|
|
| MD5 |
2b8496f900127dac07cbff8949e9e313
|
|
| BLAKE2b-256 |
8b1dad9893671ed1f287377178dd673687643bcff622c7e85b8a09be2d36a85e
|
File details
Details for the file slimz-0.0.7-py3-none-any.whl.
File metadata
- Download URL: slimz-0.0.7-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
583d01ebd39b4e9475d41bb32b9f4294c30daf35840217e228632e9464e819a4
|
|
| MD5 |
94e9d42ff2b435e6bb901264162e410a
|
|
| BLAKE2b-256 |
f0c106c0f415739babdd4402c26527eeba75674195a63cc3080b2e72e492474f
|