Awesome list with public transport data for Russia
Services ZAO "NPP Transnavigatsiya" for cities
| type,name,Network,Operating System,Region(s),Launched,KaiStore,Type,Screen Size,RAM,Internal Storage,External Storage,Camera,Battery,SIM,Processor,undefined,Internal storage,Talk time,Standby time,Talk Time,Standby Time,Front Camera,Region,Countries Available,Partner,WhatsApp,Screen size (inches),CPU,Expandable Storage,Battery Capacity | |
| GHIA,GQWERTY,3G,KaiOS 2.5,Mexico,Apr 2022,Yes,QWERTY,2.31'',512MB,4GB,"microSD, 32GB",2MP,"1,400mAh",Dual,,,,,,,,,,,,,,,, | |
| HMD Global (Nokia),Nokia 2760 Flip,4G,KaiOS 3.1,United States,Mar 2022,Yes,Flip phone,2.8 inch,512 MB,,,"Rear, 5 MP","1,450mAh (removable)",Yes,Qualcomm®205,Qualcomm®205,4GB,Up to 6.9 hours,Up to 18 days,,,,,,,,,,, | |
| Swift Biz Solutions,Jazz Digit 4G Music,4G,KaiOS 2.5,Pakistan,Jun 2021,Yes,Candybar,2.4 inches,512MB,4GB,"Micro SD card, up to 32GB",,1700 mAh,Dual,,,,,,,,,,,,,,,, | |
| Swift Biz Solutions,Digit 4G Power,4G,KaiOS 2.5,Pakistan,Sep 2021,Yes,Candybar,2.8 inches,512 MB,4GB,"Micro SD card, up to 32GB",,2950 mAh,,,,,,,,,,,,,,,,, | |
| Alcatel,Alcatel GO FLIP™ 4,4G |
| ФО-350005 | |
| Васильев А.М. | |
| Чабин А.С. | |
| Презентация: | |
| https://docs.google.com/presentation/d/1fNtX24els90-WxOUPl1M_pt7j8pQ-TnHcSDGx08KcRc/edit?usp=sharing | |
| Разработка бота в Telegram с Webhook. Создание админки на Flask-Admin | |
| (продолжение доклада bit.ly/urfu_botapi) | |
| -------------------------------------- |
| # Запрос к wikipedia.org | |
| from webob import Request | |
| request = Request.blank('/wiki/') | |
| request.http_version = 'HTTP/1.1' | |
| request.accept = 'text/html' | |
| request.headers['Connection'] = 'Close' | |
| request.host = 'ru.wikipedia.org' | |
| request.user_agent = 'Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.9b5) Gecko/2008050509 Firefox/3.0b5' | |
| # Сформированный запрос: |
| from wsgiref.simple_server import make_server | |
| # Исходный список подключаемых файлов в HTML | |
| INCLUDES = [ | |
| 'app.js', | |
| 'react.js', | |
| 'leaflet.js', | |
| 'D3.js', | |
| 'moment.js', | |
| 'math.js', |
| ФО-350005 | |
| Васильев А.М. | |
| Чабин А.С. | |
| Презентация: | |
| bit.ly/urfu_botapi | |
| Доклад по созданию бота в Telegram на базе API УрФУ. | |
| -------------------------------------- |
| import requests | |
| import json | |
| request = { | |
| "github": "a-chabin", | |
| "Name": "Alexander", | |
| "Surname": "Chabin" | |
| } | |
| json_request = json.dumps(request) |
| 0. Запрос к urfu.ru | |
| import http.client | |
| # Данные о подключении | |
| HOST = 'urfu.ru' | |
| PORT = 80 | |
| # Инициализация HTTP-подключения | |
| connection = http.client.HTTPConnection(HOST, PORT) |
| 0. Запрос к urfu.ru | |
| import socket | |
| # Данные о подключении | |
| HOST = 'urfu.ru' | |
| PORT = 80 | |
| # Создание сокета | |
| s = socket.socket() |