/project/
/package/
__init__.py
module.py
setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from aiohttp import web | |
| async def handle(request): | |
| response = web.StreamResponse( | |
| status=200, | |
| reason='OK', | |
| headers={'Content-Type': 'text/plain'}, | |
| ) | |
| await response.prepare(request) |
Тестовое задание можно выполнить на любом веб-фреймворке (django/flask/pyramid/falcon/aiohttp/sanic) и прислать нам ссылку на репозиторий, либо архив с вашим кодом и документацией по нему. Имейте в виду, что выбранных вами библиотек может не быть на компьютере проверяющего, поэтому укажите все зависимости в отдельном файле (requirements/Pipfile). Если вы достаточно хорошо знакомы с Docker, то можете написать docker-compose конфиг и упаковать приложение в контейнер, где все необходимое уже будет установлено, а ваш код собран и готов к запуску. Это идеальный вариант.
После проверки задания мы обязательно сообщим вам о нашем решении.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Tinder Deblur | |
| // @namespace Violentmonkey Scripts | |
| // @match https://tinder.com/* | |
| // @grant none | |
| // @version 1.4 | |
| // @author Tajnymag | |
| // @downloadURL https://raw.githubusercontent.com/tajnymag/tinder-deblur/main/tinder.user.js | |
| // @description Simple script using the official Tinder API to get clean photos of the users who liked you | |
| // ==/UserScript== |
OlderNewer