Giter Club home page Giter Club logo

Comments (5)

EllieTheYeen avatar EllieTheYeen commented on July 3, 2024 1

Good to know. I had done some wrong thing internally in my code that generated the date so that is what caused the issue and not the code here

from atproto.

EllieTheYeen avatar EllieTheYeen commented on July 3, 2024

Noticed that this might be something I did wrong as I had used

datetime.datetime.now().isoformat()

instead of

datetime.datetime.utcnow().strftime("%Y-%m-%dT%H:%I:%SZ")

from atproto.

DavidBuchanan314 avatar DavidBuchanan314 commented on July 3, 2024

By the way, here's how I generate my timestamps, which perfectly matches the output of JS's Date.prototype.toISOString():

import datetime
datetime.datetime.now(tz=datetime.timezone.utc).replace(tzinfo=None).isoformat(timespec="milliseconds") + "Z"

Also by the way, datetime.utcnow() is deprecated and will be removed in a future python version, see https://blog.miguelgrinberg.com/post/it-s-time-for-a-change-datetime-utcnow-is-now-deprecated

from atproto.

EllieTheYeen avatar EllieTheYeen commented on July 3, 2024

That is really useful to know thanks

from atproto.

MarshalX avatar MarshalX commented on July 3, 2024

@EllieTheYeen The AT Protocol SDK provides and uses this method internally. Doesn't it feet your needs?

from atproto import Client
client = Client()
print(client.get_current_time_iso())

from atproto.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.