GLib.Date¶
Fields¶
| Name | Type | Access | Description | 
|---|---|---|---|
| day | int | r/w | the day of the day-month-year representation of the date, as a number between 1 and 31 | 
| dmy | int | r/w | this is set if day, month and year are valid | 
| julian | int | r/w | this bit is set if julian_days is valid | 
| julian_days | int | r/w | the Julian representation of the date | 
| month | int | r/w | the day of the day-month-year representation of the date, as a number between 1 and 12 | 
| year | int | r/w | the day of the day-month-year representation of the date | 
Methods¶
Details¶
- 
class GLib.Date¶
- Represents a day between January 1, Year 1 and a few thousand years in the future. None of its members should be accessed directly. - If the - GLib.Date-struct is obtained from- GLib.Date.new(), it will be safe to mutate but invalid and thus not safe for calendrical computations.- If it’s declared on the stack, it will contain garbage so must be initialized with - GLib.Date.clear().- GLib.Date.clear() makes the date invalid but safe. An invalid date doesn’t represent a day, it’s “empty.” A date becomes valid after you set it to a Julian day or you set a day, month, and year.- 
classmethod get_days_in_month(month, year)[source]¶
- Parameters: - month (GLib.DateMonth) – month
- year (int) – year
 - Returns: - number of days in month during the year - Return type: - Returns the number of days in a month, taking leap years into account. 
- month (
 - 
classmethod get_monday_weeks_in_year(year)[source]¶
- Parameters: - year ( - int) – a year- Returns: - number of Mondays in the year - Return type: - int- Returns the number of weeks in the year, where weeks are taken to start on Monday. Will be 52 or 53. The date must be valid. (Years always have 52 7-day periods, plus 1 or 2 extra days depending on whether it’s a leap year. This function is basically telling you how many Mondays are in the year, i.e. there are 53 Mondays if one of the extra days happens to be a Monday.) 
 - 
classmethod get_sunday_weeks_in_year(year)[source]¶
- Parameters: - year ( - int) – year to count weeks in- Returns: - the number of weeks in year - Return type: - int- Returns the number of weeks in the year, where weeks are taken to start on Sunday. Will be 52 or 53. The date must be valid. (Years always have 52 7-day periods, plus 1 or 2 extra days depending on whether it’s a leap year. This function is basically telling you how many Sundays are in the year, i.e. there are 53 Sundays if one of the extra days happens to be a Sunday.) 
 - 
classmethod is_leap_year(year)[source]¶
- Parameters: - year ( - int) – year to check- Returns: - Trueif the year is a leap year- Return type: - bool- Returns - Trueif the year is a leap year.- For the purposes of this function, leap year is every year divisible by 4 unless that year is divisible by 100. If it is divisible by 100 it would be a leap year only if that year is also divisible by 400. 
 - 
classmethod new()[source]¶
- Returns: - a newly-allocated - GLib.Date- Return type: - GLib.Date- Allocates a - GLib.Dateand initializes it to a safe state. The new date will be cleared (as if you’d called- GLib.Date.clear()) but invalid (it won’t represent an existing day). Free the return value with- GLib.Date.free().
 - 
classmethod new_dmy(day, month, year)[source]¶
- Parameters: - day (int) – day of the month
- month (GLib.DateMonth) – month of the year
- year (int) – year
 - Returns: - a newly-allocated - GLib.Dateinitialized with day, month, and year- Return type: - Like - GLib.Date.new(), but also sets the value of the date. Assuming the day-month-year triplet you pass in represents an existing day, the returned date will be valid.
- day (
 - 
classmethod new_julian(julian_day)[source]¶
- Parameters: - julian_day ( - int) – days since January 1, Year 1- Returns: - a newly-allocated - GLib.Dateinitialized with julian_day- Return type: - GLib.Date- Like - GLib.Date.new(), but also sets the value of the date. Assuming the Julian day number you pass in is valid (greater than 0, less than an unreasonably large number), the returned date will be valid.
 - 
classmethod strftime(s, slen, format, date)[source]¶
- Parameters: - Returns: - number of characters written to the buffer, or 0 the buffer was too small - Return type: - Generates a printed representation of the date, in a locale-specific way. Works just like the platform’s C library strftime() function, but only accepts date-related formats; time-related formats give undefined results. Date must be valid. Unlike strftime() (which uses the locale encoding), works on a UTF-8 format string and stores a UTF-8 result. - This function does not provide any conversion specifiers in addition to those implemented by the platform’s C library. For example, don’t expect that using - GLib.Date.strftime() would make the \%F provided by the C99 strftime() work on Windows where the C library only complies to C89.
 - 
classmethod valid_day(day)[source]¶
- Parameters: - day ( - int) – day to check- Returns: - Trueif the day is valid- Return type: - bool- Returns - Trueif the day of the month is valid (a day is valid if it’s between 1 and 31 inclusive).
 - 
classmethod valid_dmy(day, month, year)[source]¶
- Parameters: - day (int) – day
- month (GLib.DateMonth) – month
- year (int) – year
 - Returns: - Trueif the date is a valid one- Return type: - Returns - Trueif the day-month-year triplet forms a valid, existing day in the range of days- GLib.Dateunderstands (Year 1 or later, no more than a few thousand years in the future).
- day (
 - 
classmethod valid_julian(julian_date)[source]¶
- Parameters: - julian_date ( - int) – Julian day to check- Returns: - Trueif the Julian day is valid- Return type: - bool- Returns - Trueif the Julian day is valid. Anything greater than zero is basically a valid Julian, though there is a 32-bit limit.
 - 
classmethod valid_month(month)[source]¶
- Parameters: - month ( - GLib.DateMonth) – month- Returns: - Trueif the month is valid- Return type: - bool- Returns - Trueif the month value is valid. The 12- GLib.DateMonthenumeration values are the only valid months.
 - 
classmethod valid_weekday(weekday)[source]¶
- Parameters: - weekday ( - GLib.DateWeekday) – weekday- Returns: - Trueif the weekday is valid- Return type: - bool- Returns - Trueif the weekday is valid. The seven- GLib.DateWeekdayenumeration values are the only valid weekdays.
 - 
classmethod valid_year(year)[source]¶
- Parameters: - year ( - int) – year- Returns: - Trueif the year is valid- Return type: - bool- Returns - Trueif the year is valid. Any year greater than 0 is valid, though there is a 16-bit limit to what- GLib.Datewill understand.
 - 
add_days(n_days)[source]¶
- Parameters: - n_days ( - int) – number of days to move the date forward- Increments a date some number of days. To move forward by weeks, add weeks*7 days. The date must be valid. 
 - 
add_months(n_months)[source]¶
- Parameters: - n_months ( - int) – number of months to move forward- Increments a date by some number of months. If the day of the month is greater than 28, this routine may change the day of the month (because the destination month may not have the current day in it). The date must be valid. 
 - 
add_years(n_years)[source]¶
- Parameters: - n_years ( - int) – number of years to move forward- Increments a date by some number of years. If the date is February 29, and the destination year is not a leap year, the date will be changed to February 28. The date must be valid. 
 - 
clamp(min_date, max_date)[source]¶
- Parameters: - If self is prior to min_date, sets self equal to min_date. If self falls after max_date, sets self equal to max_date. Otherwise, self is unchanged. Either of min_date and max_date may be - None. All non-- Nonedates must be valid.
 - 
clear(n_dates)[source]¶
- Parameters: - n_dates ( - int) – number of dates to clear- Initializes one or more - GLib.Datestructs to a safe but invalid state. The cleared dates will not represent an existing date, but will not contain garbage. Useful to init a date declared on the stack. Validity can be tested with- GLib.Date.valid().
 - 
compare(rhs)[source]¶
- Parameters: - rhs ( - GLib.Date) – second date to compare- Returns: - 0 for equal, less than zero if self is less than rhs, greater than zero if self is greater than rhs - Return type: - int- qsort()-style comparison function for dates. Both dates must be valid. 
 - 
copy()[source]¶
- Returns: - a newly-allocated - GLib.Dateinitialized from self- Return type: - GLib.Date- Copies a - GLib.Dateto a newly-allocated- GLib.Date. If the input was invalid (as determined by- GLib.Date.valid()), the invalid state will be copied as is into the new object.- New in version 2.56. 
 - 
days_between(date2)[source]¶
- Parameters: - date2 ( - GLib.Date) – the second date- Returns: - the number of days between self and date2 - Return type: - int- Computes the number of days between two dates. If date2 is prior to self, the returned value is negative. Both dates must be valid. 
 - 
free()[source]¶
- Frees a - GLib.Datereturned from- GLib.Date.new().
 - 
get_day()[source]¶
- Returns: - day of the month - Return type: - int- Returns the day of the month. The date must be valid. 
 - 
get_day_of_year()[source]¶
- Returns: - day of the year - Return type: - int- Returns the day of the year, where Jan 1 is the first day of the year. The date must be valid. 
 - 
get_iso8601_week_of_year()[source]¶
- Returns: - ISO 8601 week number of the year. - Return type: - int- Returns the week of the year, where weeks are interpreted according to ISO 8601. - New in version 2.6. 
 - 
get_julian()[source]¶
- Returns: - Julian day - Return type: - int- Returns the Julian day or “serial number” of the - GLib.Date. The Julian day is simply the number of days since January 1, Year 1; i.e., January 1, Year 1 is Julian day 1; January 2, Year 1 is Julian day 2, etc. The date must be valid.
 - 
get_monday_week_of_year()[source]¶
- Returns: - week of the year - Return type: - int- Returns the week of the year, where weeks are understood to start on Monday. If the date is before the first Monday of the year, return 0. The date must be valid. 
 - 
get_month()[source]¶
- Returns: - month of the year as a - GLib.DateMonth- Return type: - GLib.DateMonth- Returns the month of the year. The date must be valid. 
 - 
get_sunday_week_of_year()[source]¶
- Returns: - week number - Return type: - int- Returns the week of the year during which this date falls, if weeks are understood to begin on Sunday. The date must be valid. Can return 0 if the day is before the first Sunday of the year. 
 - 
get_weekday()[source]¶
- Returns: - day of the week as a - GLib.DateWeekday.- Return type: - GLib.DateWeekday- Returns the day of the week for a - GLib.Date. The date must be valid.
 - 
get_year()[source]¶
- Returns: - year in which the date falls - Return type: - int- Returns the year of a - GLib.Date. The date must be valid.
 - 
is_first_of_month()[source]¶
- Returns: - Trueif the date is the first of the month- Return type: - bool- Returns - Trueif the date is on the first of a month. The date must be valid.
 - 
is_last_of_month()[source]¶
- Returns: - Trueif the date is the last day of the month- Return type: - bool- Returns - Trueif the date is the last day of the month. The date must be valid.
 - 
order(date2)[source]¶
- Parameters: - date2 ( - GLib.Date) – the second date- Checks if self is less than or equal to date2, and swap the values if this is not the case. 
 - 
set_day(day)[source]¶
- Parameters: - day ( - int) – day to set- Sets the day of the month for a - GLib.Date. If the resulting day-month-year triplet is invalid, the date will be invalid.
 - 
set_dmy(day, month, y)[source]¶
- Parameters: - day (int) – day
- month (GLib.DateMonth) – month
- y (int) – year
 - Sets the value of a - GLib.Datefrom a day, month, and year. The day-month-year triplet must be valid; if you aren’t sure it is, call- GLib.Date.valid_dmy() to check before you set it.
- day (
 - 
set_julian(julian_date)[source]¶
- Parameters: - julian_date ( - int) – Julian day number (days since January 1, Year 1)- Sets the value of a - GLib.Datefrom a Julian day number.
 - 
set_month(month)[source]¶
- Parameters: - month ( - GLib.DateMonth) – month to set- Sets the month of the year for a - GLib.Date. If the resulting day-month-year triplet is invalid, the date will be invalid.
 - 
set_parse(str)[source]¶
- Parameters: - str ( - str) – string to parse- Parses a user-inputted string str, and try to figure out what date it represents, taking the current locale into account. If the string is successfully parsed, the date will be valid after the call. Otherwise, it will be invalid. You should check using - GLib.Date.valid() to see whether the parsing succeeded.- This function is not appropriate for file formats and the like; it isn’t very precise, and its exact behavior varies with the locale. It’s intended to be a heuristic routine that guesses what the user means by a given string (and it does work pretty well in that capacity). 
 - 
set_time(time_)[source]¶
- Parameters: - time ( - int) – #GTime value to set.- Sets the value of a date from a #GTime value. The time to date conversion is done using the user’s current timezone. - Deprecated since version 2.10: Use - GLib.Date.set_time_t() instead.
 - 
set_time_t(timet)[source]¶
- Parameters: - timet ( - int) – time_t value to set- Sets the value of a date to the date corresponding to a time specified as a time_t. The time to date conversion is done using the user’s current timezone. - To set the value of a date to the current day, you could write: - time_t now = time (NULL); if (now == (time_t) -1) // handle the error g_date_set_time_t (date, now); - New in version 2.10. 
 - 
set_time_val(timeval)[source]¶
- Parameters: - timeval ( - GLib.TimeVal) –- GLib.TimeValvalue to set- Sets the value of a date from a - GLib.TimeValvalue. Note that the tv_usec member is ignored, because- GLib.Datecan’t make use of the additional precision.- The time to date conversion is done using the user’s current timezone. - New in version 2.10. - Deprecated since version 2.62: - GLib.TimeValis not year-2038-safe. Use- GLib.Date.set_time_t() instead.
 - 
set_year(year)[source]¶
- Parameters: - year ( - int) – year to set- Sets the year for a - GLib.Date. If the resulting day-month-year triplet is invalid, the date will be invalid.
 - 
subtract_days(n_days)[source]¶
- Parameters: - n_days ( - int) – number of days to move- Moves a date some number of days into the past. To move by weeks, just move by weeks*7 days. The date must be valid. 
 - 
subtract_months(n_months)[source]¶
- Parameters: - n_months ( - int) – number of months to move- Moves a date some number of months into the past. If the current day of the month doesn’t exist in the destination month, the day of the month may change. The date must be valid. 
 - 
subtract_years(n_years)[source]¶
- Parameters: - n_years ( - int) – number of years to move- Moves a date some number of years into the past. If the current day doesn’t exist in the destination year (i.e. it’s February 29 and you move to a non-leap-year) then the day is changed to February 29. The date must be valid. 
 - 
to_struct_tm(tm)[source]¶
- Parameters: - tm ( - object) – struct tm to fill- Fills in the date-related bits of a struct tm using the self value. Initializes the non-date parts with something safe but meaningless. 
 - 
valid()[source]¶
- Returns: - Whether the date is valid - Return type: - bool- Returns - Trueif the- GLib.Daterepresents an existing day. The date must not contain garbage; it should have been initialized with- GLib.Date.clear() if it wasn’t allocated by one of the- GLib.Date.new() variants.
 
- 
classmethod