Skip to content

PyAppDevKit 1.8

Compare
Choose a tag to compare
@LinuxUsersLinuxMint LinuxUsersLinuxMint released this 21 Feb 19:51
· 11 commits to main since this release
8d3bfc0

Bilgi: PyAppDevKit kütüphanesi hakkında detaylı bilgi için: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/1.9/pyappdevkit.html

Yenilikler:

  • Artık PyAppDevKit dosya oluşturmayı destekliyor file fonksiyonu ile artık çok daha kolay bir şekilde dosya oluşturabilir ve belirttiğiniz kiplere göre işlem yapabilirsiniz.
#!/usr/bin/python3

from LibFunc.pyappdevkit import *

file(file_name="test.txt",file_mode="a",file_write="Hello World!")

Info: For detailed information about PyAppDevKit library: https://linuxuserslinuxmint.github.io/Documents/PyAppDevKit/1.8/pyappdevkit.html

Innovations:

  • PyAppDevKit now supports file creation With the file function, you can now create files much more easily and operate according to the modes you specify.
#!/usr/bin/python3

from LibFunc.pyappdevkit import *

file(file_name="test.txt",file_mode="a",file_write="Hello World!")