Metadata-Version: 2.4
Name: lamtanphat
Version: 0.1.0
Summary: A simple demo package providing ltp() and LTPPPP() printing personal information.
Home-page: https://lamtanphat.io.vn/
Author: Lam Tan Phat
Author-email: Lam Tan Phat <lamphat.job@gmail.com>
License: MIT
Project-URL: Homepage, https://lamtanphat.io.vn/
Project-URL: Source, https://lamtanphat.io.vn/
Keywords: lamtanphat,ltp,demo,example
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# lamtanphat

`lamtanphat` là một Python package demo rất đơn giản, cung cấp hai hàm:

- `ltp()`: In ra chuỗi `"Lâm Tấn Phát"`.
- `LTPPPP()`: In ra một số thông tin cá nhân mẫu, mỗi dòng một thuộc tính.

## Cài đặt

Bạn có thể cài đặt package sau khi build (hoặc trực tiếp trong thư mục dự án):

```bash
pip install .
```

## Sử dụng

Ví dụ sử dụng trong Python:

```python
from lamtanphat import ltp, LTPPPP

ltp()       # -> in "Lâm Tấn Phát"
LTPPPP()    # -> in thông tin cá nhân mẫu
```


