Manipulate with Jalali date in pandas
Project description
pandas-jalali
Package for converting dates from Gregorian to A Persian Date (aka: Jalali Calendar) and back.
This package is port of package khayyam to use with Pandas dataframes.
Installation
To install from package manager:
pip install pandas-jalali
Usage
To convert from Jalali dates to Gregorian:
import pandas as pd
from pandas_jalali.converter import get_gregorian_date_from_jalali_date
df = pd.DataFrame([
[1346, 1, 1],
[1346, 10, 20]
], columns=['year', 'month', 'day'])
df['year_gregorian'], df['month_gregorian'], df['day_gregorian'] = get_gregorian_date_from_jalali_date(df['year'], df['month'], df['day'])
print df
year month day year_gregorian month_gregorian day_gregorian 0 1346.0 1.0 1.0 1967.0 3.0 21.0 1 1346.0 10.0 20.0 1968.0 1.0 10.0
To convert from Gregorian dates to Jalali: Not yet implemented
Tests
At first make sure that you are in virtualenv.
Install all dependencies:
make setup
To run tests:
make test
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pandas-jalali-0.1.2.tar.gz
(4.6 kB
view details)
File details
Details for the file pandas-jalali-0.1.2.tar.gz
.
File metadata
- Download URL: pandas-jalali-0.1.2.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee0c0ff79f06dee8659048b4b0f77bbe5cd81075941ee02428bed96f7fc1cef2 |
|
MD5 | 9501607753b80377744bc4ba904ce513 |
|
BLAKE2b-256 | cca1d41265b0209deb7eb66939a55a3f6857ec62e8310fcb4f63e427260fc9f9 |