Metadata-Version: 1.1
Name: manipuldate
Version: 0.2.0
Summary: Date/Time/DateTime Manipulation Done Right
Home-page: https://github.com/JenkinsDev/manipuldate
Author: David Jenkins
Author-email: david.nicholas.jenkins@gmail.com
License: MIT
Description: # Manipuldate
        Date/Time/DateTime Manipulation Done Right
        <sub><sub>Still In Active Development - Not Production Ready</sub></sub>
        
        ### Badges
        [![Build Status](https://travis-ci.org/JenkinsDev/manipuldate.svg?branch=master)](https://travis-ci.org/JenkinsDev/manipuldate)
        [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/JenkinsDev/manipuldate/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/JenkinsDev/manipuldate/?branch=master)
        
        ## Installation
        
        Coming Soon (Pip Installation): `pip install manipuldate`
        
        Current Installation Process: `git clone https://github.com/JenkinsDev/manipuldate.git`
        
        ## Trivial Usage
        
        Here I will just show a very trivial usage, for more in-depth usage options check out our Documentation (Coming Soon TM)
        
        ```python
        from manipuldate import Manipuldate
        
        
        today = Manipuldate.today()
        # Let's go ahead and print out our current date in a human readable string
        print(today.strftime("%m/%d/%Y"))
        
        
        # Now let's get tomorrow's date
        tomorrow = Manipuldate.tomorrow()
        print(tomorrow.strftime("%m/%d/%Y"))
        
        # Is tomorrow a weekend?
        if tomorrow.is_weekend():
            print("Partayyyyyy")
        else:
            print("Get to work!")
        
        
        # Oh! Let's add a month to tomorrow.
        next_month = tomorrow.add_month()
        print(next_month.strftime("%m/%d/%Y"))
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
