my_dict = { 'ID': [otoid], 'ОГРНП': [ogrn] }
df = pd.DataFrame(data = my_dict)
my_dict = { 'ID': otoid, 'ОГРНП': ogrn }
df = pd.DataFrame(data = my_dict, index=[0])
{
"Burnsville, MN": {
location: {...},
current: {...},
forecast: [...],
},
"Minneapolis, MN": {
location: {...},
current: {...},
forecast: [...],
},
"Moose Lake, MN": {
location: {...},
current: {...},
forecast: [...],
},
}
myObject["Moose Lake, MN"].temperature
const goods = await Goods
.findAll({ where: { userId } });
await Goods
.create({
...someInfoAboutProduct,
userId,
});
const user = await User
.findOne({
where: { userId },
include: [
{
model: Products,
as: 'userProducts',
}
],
});