Git Product home page Git Product logo

Comments (2)

InfernalAzazel avatar InfernalAzazel commented on June 3, 2024

Since my project is very important for other countries to deploy this time zone, we need to unify the time zone
For example, the project in Singapore is mainly based on Singapore time, for example, in the United States, it is mainly based on US time

Here is my workaround

main.py

from datetime import datetime
from typing import List
from zoneinfo import ZoneInfo

import uvicorn
from fastapi import FastAPI, HTTPException
from motor.motor_asyncio import AsyncIOMotorClient
from odmantic import AIOEngine, Model, ObjectId, Field, EmbeddedModel

client = AsyncIOMotorClient(
    f'mongodb://127.0.0.1',
)


def model_to_tz(d, tz='Asia/Shanghai'):
    """多维/嵌套字典数据无限遍历"""
    data = d.dict() if isinstance(d, Model) else d
    if isinstance(data, dict):
        for i in range(len(data)):
            temp_key = list(data.keys())[i]
            temp_value = data[temp_key]
            if isinstance(temp_value, datetime):
                offset = temp_value.astimezone(ZoneInfo(tz)).utcoffset()
                n = temp_value + offset
                data.update({temp_key: n})
            model_to_tz(temp_value)  # 自我调用实现无限遍历
    return data


def list_model_to_tz(ds, tz='Asia/Shanghai'):
    res = []
    for d in ds:
        res.append(model_to_tz(d, tz))
    return res


class Detail(EmbeddedModel):
    d_at: datetime = Field(default_factory=datetime.utcnow)


class Body(EmbeddedModel):
    detail: Detail = Field(default={})
    b_at: datetime = Field(default_factory=datetime.utcnow)


class Tree(Model):
    name: str
    body: Body = Field(default={})
    c_at: datetime = Field(default_factory=datetime.utcnow)
    u_at: datetime = Field(default=None)


app = FastAPI()

engine = AIOEngine(client)


@app.put("/trees/", response_model=Tree)
async def create(tree: Tree):
    await engine.save(tree)
    return tree


@app.put("/trees/update", response_model=Tree)
async def update(tree: Tree):
    t = await engine.find_one(Tree, Tree.id == tree.id)
    if tree is None:
        raise HTTPException(404)
    t.u_at = datetime.utcnow()
    await engine.save(t)
    return t


@app.get("/trees/", response_model=List[Tree])
async def get_trees():
    trees = await engine.find(Tree)
    return list_model_to_tz(trees)


@app.get("/trees/count", response_model=int)
async def count_trees():
    count = await engine.count(Tree)
    return count


@app.get("/trees/{id}", response_model=Tree)
async def get_tree_by_id(id: ObjectId):
    tree = await engine.find_one(Tree, Tree.id == id)
    if tree is None:
        raise HTTPException(404)
    return tree


if __name__ == '__main__':
    uvicorn.run(
        app,
        host="0.0.0.0",
        port=3600,
        log_level="info"
    )

effect

Screenshot from 2023-01-10 17-47-58

Screenshot from 2023-01-10 17-48-16

from odmantic.

InfernalAzazel avatar InfernalAzazel commented on June 3, 2024

This project is very effective, is it dead?

from odmantic.

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.