Delivery club api python

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

d11r/delivery-club-api

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Читайте также:  Рисунок без рамки

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

This is an ongoing project for the Software Project course for Second Year Bachelor course on Innopolis University. If completed successfully, this app is aimed to be used at city of Innopolis to make the life of people in Innopolis easier, by making the delivery of food easier, secure, faster and reliable.

This is a backend part of the project. You can find the frontend part here.
This backend provides all necessary services for adding, modifying and retrieving data. It is built using Node.js with Express framework. It also uses Atlas MongoDB and GraphQL for storing and accessing data.

/ ├── config │ ├── config.js │ └── google-util.js ├── graphql │ ├── resolvers │ │ └── index.js │ └── schema │ └── index.js ├── helpers │ └── producer-helper.js ├── middleware │ └── is-auth.js ├── models │ ├── category.js │ ├── dish.js │ ├── order.js │ └── users │ ├── consumer.js │ └── producer.js ├── nodemon.json ├── package.json ├── public │ └── index.html ├── src │ ├── index.js │ └── server.js ├── test └── user.test.js 

Dragos Strugar, Peter Zaraharkin, Daniil Dvoryanov

Ezio Thapaliya, Vladislav Smirnov

Источник

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Клиенты для API delivery club, papa johns, .

Fisab/foodtech_clients

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

На данный момент есть работа со следующими API:

  • Получить историю заказов
  • Получить активный заказ (примерное время доставки, из какого ресторана был сделан заказ)

Прежде всего нужно установить пакет: pip install git+https://github.com/Fisab/foodtech_clients

Информацию о refresh_token , token , secret можно вытащить при авторизации в веб-версии приложения

import asyncio from foodtech_clients import DeliveryClubClient base_url = 'https://api.delivery-club.ru/api1.2' client = DeliveryClubClient( refresh_token='', token='', secret='', url=base_url ) last_active_order = asyncio.run(client.get_last_order(active=True))
import asyncio from foodtech_clients import PapaJohnsClient base_url = 'https://api.papajohns.ru' city_id = 10 # Москва restaurant_id = 10 location = ( # куда доставлять заказ? '', '' ) client = PapaJohnsClient( url=base_url, city_id=city_id, restaurant_id=restaurant_id ) delivery_time = asyncio.run(client.get_delivery_time(location))

About

Клиенты для API delivery club, papa johns, .

Источник

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

food-delivery-application

Here are 10 public repositories matching this topic.

AiverReaver / Food-delivery-app

Basic food delivery webapp

Soufiane-Majdar / Food_Project

The Food Project is a web application built with Django that allows users to order food online from local restaurants. The project includes a menu of available dishes from the restaurant. On the backend, the project includes a Django admin panel that allows restaurant owners to manage their menus.

ratedRA / Food-Delivery-System

A system for choosing the closest delivery partner for a food delivery organisation.

ardauzunoglu / food-and-grocery-automatization

Python application that automatizes your food and grocery orders using Selenium library.

EVOL-food / Regular-Meal-CMS

Regular Meal CMS is a Django-based system for a five-meals delivery subscription plans management.

sebastianrichter711 / Projekt-Obieralki

🍕 🚚 Web application to order dishes from different restaurants

weatosd / weat

At the intersection of delivery and in-house dining, Weat makes preparing restaurant-quality food quick, easy, and fun.

ptsingh1000 / OptimusPrimeNow

OptimusPrimeNow is designed to help people find the much coveted delivery windows on Amazon Prime Now and Amazon Fresh during COVID-19 lockdown automatically! 😃

devnabeal / Food-delivery-app

Basic food delivery webapp — Django, Vue, AWS

Prem-ium / DoorDash-Coupon-Scraper

Simple Web Scraping Script to Retrieve Active Promotional Codes for DoorDash.

Improve this page

Add a description, image, and links to the food-delivery-application topic page so that developers can more easily learn about it.

Add this topic to your repo

To associate your repository with the food-delivery-application topic, visit your repo’s landing page and select «manage topics.»

Источник

Оцените статью