Python pendulum parsing 2














































Python pendulum parsing 2



In the previous article, we have seen RFC 3339 formate, most ISO 8601 formates and some other common formates.


#Code

    import pendulum

    dt = pendulum.parse('2022-05-21T22:00:00')
    print(dt)
    #we can pass tz keyboard to speciafy the timezone
    dt = pendulum.parse('2022-05-21T22:00:00', tz='Europe/Paris')
    print(dt)
    dt = pendulum.parse('2022-05-21 22:00:00')

#OUTPUT
2022-05-21T22:00:00+00:00
2022-05-21T22:00:00+02:00

If you pass a non-standard or more complicated string, it will raise an exception, so it is advised to use the from_formate() helper insted

However, if you want the library to fall back on the dateutil parser, you have to pass strict=False.


#Code


import pendulum dt = pendulum.parse('31-01-01', strict=False)
print(dt)


#OUTPUT
2031-01-01T00:00:00+00:00




More Articles of Anmol Agrawal:

Name Views Likes
Python Pendulum Why to use Pendulum 161 0
Python Pendulum Limitations in DJANGO 240 0
Python Pendulum Limitations in MYSQLCLIENT 160 0
Python Pendulum Limitations in SQLITE3 171 0
Python Pendulum Testing 2 165 0
Python Pendulum Testing 198 0
Python Pendulum Range 199 0
Python Pendulum Period 3 172 0
Python Pendulum Period 2 165 0
Python Pendulum Period 166 0
Python Pendulum Properties and Duration Methods 2 172 0
Python Pendulum Properties and Duration Methods 170 0
Python Pendulum Instantiation 169 0
Python Pendulum Duration 157 0
Python Pendulum TImezone usage 2 162 0
Python Pendulum Timezone usage 178 0
Python Pendulum Switching Timezones 160 0
Python Pendulum Shifting Time to Transition 179 0
Python Pendulum Normalization 177 0
Python Pendulum Modifiers 2 178 0
Python Pendulum Modifiers 174 0
Python Pendulum Difference for Humans 2 202 0
Python Pendulum Difference for Humans 196 0
Python Pendulum Difference 226 0
Python pendulum Substraction 189 0
Pyhton pendulum Addition 192 0
Python pendulum Comapaison part 2 197 0
Python Pendulum Comparison 200 0
Python Pendulum Localized Formats and Escaping characteristics 182 0
Python pendulum Tokens 181 0
Python pendulum Formatter 190 0
Python pendulum Common Formats 189 0
Python pendulum String Formatting 199 0
Python pendulum Fluent helpers 2 173 0
Python pendulum Fluent helpers 170 0
Python pendulum Attributes and Properties 197 0
Python pendulum Localization 210 118
Python pendulum parsing 2 204 23
Python pendulum Parsing 1 210 61
Python pendulum 2 231 57
Python pendulum basics 204 9
python library Pendulum 206 33
python winsound.SND_PURGE and winsound.SND_WAIT 247 5
Python winsound.SND_NOSTOP 256 1
Python winsound.SND_NODEFAULT 219 1
python winsound.SND_ASYNC not excecuting problem 224 2
Python winsound functions 274 3
python winsound.SND_ALIAS 258 1
Python winsound.MessageBeep() 391 1
Python winsound basic introduction 359 1

Comments