Metadata-Version: 2.4
Name: dt-better
Version: 0.1.1
Summary: A lightweight Python wrapper for datetime
Author-email: SquigglesYT <benjaminmcdade5@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/SquigglesYT/dt-better
Keywords: datetime,date,time,utility,shortcuts
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# dt-better
a pretty lightweight datetime wrapper.

to install this, run pip install dt-better in your terminal.
pip comes with most modern python versions.

examples:

```python
import dt_better as dt
date = dt.current_date()
print(date)
```

```python
import dt_better as dt
tomorows_date = dt.tomorrow()
print("Tomorrows Date is:", tomorrows_date)
```


current_date(): this returns the current date

current_time(): this returns the current time

current_time_without_seconds(): this returns the current time without seconds

current_month(): this returns the current month as a string

current_month_number(): this returns the current month but as a number

current_day_of_month(): this shows what day of the month you are on as a number

current_year(): this returns the current year

current_day_of_week(): this returns the current day of the week, monday tuesday wednesday thursday or friday

current_hour(): this returns the current hour

current_minute(): this returns the current minute

current_second(): this returns the current second

yesterday(): this returns yesterdays date

tomorrow(): this returns tomorrows date
