Skip to main content

No project description provided

Project description

Jacksung's utils

Python version is required above 3.9.

Recommend version: python 3.11.

Create env by conda: conda create -n jacksung python=3.11

Installation

pip install jacksung

Login ecnu

1 download chromedriver on windows is chromedriver.exe and on linux:chromedriver

p.s. chrome should be installed first, see how to install Chrome

2 make the directory 'chrome' in the home path

3 put the driver file, and make a new directory 'tmp' in the 'chrome' directory (i.e., ~/chrome/chromedriver.exe and ~/chrome/tmp). The structure of directory:

--Home directory
--|--chrome
--|--|--chromedriver.exe
--|--|--tmp

4 How to run?

  • run cmd ecnu_login -u 璐﹀彿 -p 瀵嗙爜
  • Or set the username and password in ~/.ecnu_login
u: 璐︽埛
p: 瀵嗙爜

and then run cmd ecnu_login

  • Or using python code:
from jacksung.utils.login import ecnu_login

login = ecnu_login(driver_path='chromedriver_path', tmp_path='tmp_path')
login.get_drive()
# Check net status. If have not logged in, will log in.
login.login_check('username', 'password')
login.login('username', 'password')
login.logout()

Log

time format log

from jacksung.utils.log import oprint as print

print('this is a log')

Send log message to server

# the URL should accept parameters name and content, e.g. https://www.example.com?log&api-key=123&name=logname&content=logcontent
log_class = LogClass(url='https://www.example.com?log&api-key=123')
log_class.send_log('35.8', 'PSNR')
log_class.send_log('35.8', 'PSNR')
time.sleep(10)

record the terminal log to file

from jacksung.utils.log import StdLog
import sys

# please put the following code in the '__main__' function
if __name__ == '__main__':
    sys.stdout = StdLog(filename='log.txt', common_path='warning.txt')
    print(f'[TemporaryTag]Only in terminal', end='[TemporaryTag]\n')
    print(f'[Warning]In warning.txt and terminal', end='[Warning]\n')
    print(f'[Error]In warning.txt and terminal', end='[Error]\n')
    print(f'[Common]Common in warning.txt and terminal', end='[Common]\n')
    print(f'[OnlyFile]OnlyFile in warning.txt and terminal', end='[OnlyFile]\n')
    print(f'In log.txt and terminal')

Multi threadings

from jacksung.utils.multi_task import MultiTasks
import time

def worker(idx):
    print(idx)
    time.sleep(2)
    return idx

mt = MultiTasks(3)
for idx in range(10):
    mt.add_task(idx, worker, (idx))
results = mt.execute_task()

Fast numpy

import jacksung.utils.fastnumpy as fnp

# fast than numpy.load('xx.npy')
fnp.load('xx.npy')

Connecting to mysql

from jacksung.utils.base_db import BaseDB, convert_str
class DB:
    def __init__(self, ini_path='../db.ini'):
        self.bd = BaseDB(ini_path)
    # List an example of MySQL table, change the sql code to your own. 
    def insert_record(self, year, month, day):
        sql = rf"INSERT INTO `data_record` (`year`,`month`,`day`) VALUES ({year},{month},{day});"
        self.bd.execute(sql)

    def select_record(self, year, month, day):
        sql = rf"select count(1) from data_record where year={year} and month={month} and day={day};"
        result, cursor = self.bd.execute(sql)
        return cursor.fetchone()[0]

db.ini is the form as follows:

[database]
host = 127.0.0.1
user = root
password = root
database = XXXX

Show Nvdia information

watch_gpu or set the command line to the bash file alias watch-gpu='watch -n 1 -d watch_gpu'

Time calculating

RemainTime

from jacksung.utils.time import RemainTime
import time

epochs=100
rt = RemainTime(epochs)
for i in range(epochs):
    rt.update()
    time.sleep(2)

StopWatch:

pinch(): return the seconds from the last stopwatch reset.

reset(): return the seconds from the last stopwatch reset and reset the stopwatch.

from jacksung.utils.time import Stopwatch
import time

sw = Stopwatch()
time.sleep(1)
print(sw.pinch())
time.sleep(1)
print(sw.reset())
time.sleep(1)
print(sw.pinch())

Convert utils

convert .nc to numpy, convert numpy to tif (with or without geocoordinate)

from jacksung.utils.data_convert import nc2np, np2tif
import numpy as np
    
nc_t, dim = nc2np(r'C:\Users\ECNU\Desktop\upper.nc')
# nptype data and the path aims to the .npy file are allowed in the np2tif.
# dim_value examples:
# 3 dimension example
# dim_value=[{'value': ['WIN', 'TMP', 'PRS', 'PRE']}]
# 4 dimension examples
# dim_value=[{'value': ['WIN', 'TMP']},{'value': ['PRSS', 'HEIGHT']}]
# without geocoordinate
np2tif(nc_t, 'constant_masks/upper', dim_value=dim)
# with geocoordinate
np2tif('constant_masks/land_mask.npy', save_path='constant_masks', out_name='land_mask', left=0, top=90, x_res=0.25,
       y_res=0.25, dtype=np.float32, dim_value=dim)

AI tools

latex auto polish

auto polish latex using LLM.

from jacksung.ai.latex_tool import polish
# e.g.
# if your main.tex located in '/mnt/paper1/main.tex'
# main_dir_path is '/mnt/paper1' and tex_file is 'main.tex'
# If your paper is in Chinese or other language, use cn_prompt=True
# If you want to use custom prompt, you can use prompt with '{text}'.
# You can define the skip or rewrite part using skip_part_list and rewrite_list. If you don`t know how to set, the default setting is recommended.
polish(main_dir_path='your latex root directory', tex_file='your main tex path consider from main_dir_path', server_url='The full LLM server url with v1',
       token='Your token here',
       )
  • After running, three .tex file: "old.tex","new.tex","diff.tex" in the parnent directory will generated. The file change track PDF will compiled by diff.tex.
  • If there are errors in compiling diff.tex, you need to revise the produced new.tex to fix the bug first.
  • The LLM is recommend at least Deepseek-R1-70b and bigger, smaller model will produce more bugs lead to errors.

Note

Commit new dependence

Please refer to how to upload a dependence

python setup.py sdist bdist_wheel
twine upload dist/*

The repo is built by jacksung, contact me by jacksung1995@gmail.com

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

jacksungtest-0.0.4.9.tar.gz (715.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jacksungtest-0.0.4.9-py3-none-any.whl (726.9 kB view details)

Uploaded Python 3

File details

Details for the file jacksungtest-0.0.4.9.tar.gz.

File metadata

  • Download URL: jacksungtest-0.0.4.9.tar.gz
  • Upload date:
  • Size: 715.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for jacksungtest-0.0.4.9.tar.gz
Algorithm Hash digest
SHA256 de06f75492a4e8a0e6f0135c44c87df41e6cbd9f7549b589d109ae87baedaf5f
MD5 e0b0bd4e7554e9ac65fcc9cbdd8b3b14
BLAKE2b-256 ea9ebfc6f7680059ca09a6c8e98ab26a96e4a40c6e66154a268cf6bfaaaa220b

See more details on using hashes here.

File details

Details for the file jacksungtest-0.0.4.9-py3-none-any.whl.

File metadata

  • Download URL: jacksungtest-0.0.4.9-py3-none-any.whl
  • Upload date:
  • Size: 726.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for jacksungtest-0.0.4.9-py3-none-any.whl
Algorithm Hash digest
SHA256 0d829fd7169ec2c86d230c868d04f2b383b253d4d4690e320be76faca5f9c262
MD5 088633a1a748edf80f38e054ac4c8546
BLAKE2b-256 6b98a6616d75d4475f6eab4408907d847a8d422ab6b2d65d27e2063c44783907

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page