pypal-api

A collection of helper functions to ease API development


Keywords
api, date, fastapi, pandas, python
License
MIT
Install
pip install pypal-api==0.1.6

Documentation

PyPal-API

License Repo Size Last Commit Commits a Month Supported Python versions Current PyPi Version


What is it?

PyPal-API is a python package that includes helper functions that ease development of API's for the most popular API's (google ,shopify , etc) and tools such as FastAPI and Flask. There aren't a lot of content at the moment but given time, it will hopfully grow into a huge project helping countless number of people!

  • date_to_string: very simple function that with an input of a datetime object, it will return the date as a string!

  • new_date: Input a number (positive or negative) to tell this function the amount of days before or after the current day, default returned value is a string


Getting Started

To get started using this package, install from test pypi here:

https://test.pypi.org/project/pypal-api/

If you're really lazy you can use this PiP command to install it:

$ pip install -i https://test.pypi.org/simple/ pypal-api

date_to_string

Simple function that you input a datetime and it will return it in the nice simple string format YYY-MM-DD

code to use:

from pipal_api import date_to_string
import datetime

date = datetime.datetime(2021,12,2)

date_to_string(date)

new_date

Input a number (positive or negative) and it'll return (default: string. other options include datetime or string/integer list) the specified return_type. The default from_date uses datetime.date.today() but can use a string date (YYYY-MM-DD) or a datetime and it will act accordingly.

from pipal_api import new_date

new_date(2)