Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Node Cldr | 116 | 232 | 47 | 5 months ago | 75 | April 24, 2022 | 1 | bsd-3-clause | JavaScript | |
node.js library for extracting data from CLDR (the Unicode Common Locale Data Repository) | ||||||||||
React Week Scheduler | 101 | 1 | a year ago | 72 | October 25, 2019 | 16 | mit | TypeScript | ||
A time grid component for React with scheduling capabilities. | ||||||||||
Calendar Js | 53 | 5 | 2 | 4 years ago | 13 | February 09, 2018 | 6 | mit | JavaScript | |
Pure calendar generator | ||||||||||
Primecalendar | 42 | a year ago | 5 | December 29, 2021 | 2 | apache-2.0 | Kotlin | |||
PrimeCalendar provides all of the java.util.Calendar functionalities for Persian, Hijri, and ... dates. It is also possible to convert dates to each other. | ||||||||||
Nimble_strftime | 31 | 1 | 3 years ago | 1 | September 12, 2019 | Elixir | ||||
A simple and fast strftime-based datetime formatter | ||||||||||
Android Calendar Picker | 9 | 10 years ago | Java | |||||||
Android Calendar Picker compatible with all the popular Android versions. | ||||||||||
React Native Calendar List | 6 | 5 years ago | mit | JavaScript | ||||||
A cross platform optimized customizable CalendarList component for React Native | ||||||||||
Nahuales | 5 | 5 years ago | 1 | JavaScript | ||||||
Module to get the respective mayan sign of the Tzolkin calendar of a gregorian date. | ||||||||||
Hyperwave | 4 | 2 years ago | C# | |||||||
This is a Eve-Mail Client for the Game Eve Online. Eve-Mail is a communication system in game that is similar to E-Mail. | ||||||||||
Monthly Calendar Plot | 3 | 4 months ago | mit | Python | ||||||
create a calendar with each month separate. week numbers as rows and day of the week names as columns |
create a calendar with each month separate. week numbers as rows and day of the week names as columns
from monthly_calendar_plot import monthly_calendar_figure
import pandas as pd
import numpy as np
import locale
if __name__ == '__main__':
# setting the language used for the plot | default to operating system
locale.setlocale(locale.LC_ALL, 'de_AT.UTF-8')
# Creating random dataset:
index = pd.date_range('2022-01-01', '2022-12-31', freq='D')
np.random.seed(1)
data = np.random.randint(0, 10, size=(len(index)))
# making the data to a pandas.Series:
daily = pd.Series(index=index, data=data)
# actual plotting function:
fig = monthly_calendar_figure(series=daily, cols=3, cmap='RdYlGn_r', min_value=0.001, color_unter='lightgray', color_bad='white', annotation_fmt=dict(ha='right'))
fig.set_size_inches(h=9, w=11)
fig.savefig('example.png')