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
70 INFO: PyInstaller: 3.4 | |
70 INFO: Python: 3.6.7 | |
143 INFO: Platform: Linux-4.18.14-1-default-x86_64-with-glibc2.25 | |
144 INFO: wrote /tmp/subprocess_pyinstaller_test/main.spec | |
144 DEBUG: Testing for UPX ... | |
146 INFO: UPX is not available. | |
147 INFO: Removing temporary files and cleaning cache in /home/rominf/.cache/pyinstaller | |
148 DEBUG: script: /tmp/subprocess_pyinstaller_test/src/main/python/main.py | |
149 INFO: Extending PYTHONPATH with paths | |
['/tmp/subprocess_pyinstaller_test/src/main/python', |
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
71 INFO: PyInstaller: 3.4 | |
71 INFO: Python: 3.6.7 | |
144 INFO: Platform: Linux-4.18.14-1-default-x86_64-with-glibc2.25 | |
144 INFO: wrote /tmp/pyinstaller_process_call_bug/test.spec | |
144 DEBUG: Testing for UPX ... | |
146 INFO: UPX is not available. | |
148 DEBUG: script: /tmp/pyinstaller_process_call_bug/test.py | |
148 INFO: Extending PYTHONPATH with paths | |
['/tmp/subprocess_pyinstaller_test'] | |
148 INFO: checking Analysis |
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
[tool.poetry] | |
name = "adv-publisher" | |
version = "0.1.7" | |
description = "Python library for advertisement publisher automation using aiohttp/splinter" | |
authors = ["Roman Inflianskas <[email protected]>"] | |
license = "Apache-2.0" | |
repository = "https://gitlab.kama.gs/r.inflyanskas/adv-publisher" | |
[tool.poetry.dependencies] | |
python = "^3.6" |
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
[tool.poetry] | |
name = "aiosplinter" | |
version = "0.1.0" | |
description = "Asynchronous splinter wrapper Python library" | |
authors = ["Roman Inflianskas <[email protected]>"] | |
license = "Apache-2.0" | |
readme = "README.md" | |
keywords = ["splinter", "web", "browser", "web-browser", "automation", "selenium", "async", "asyncio"] | |
classifiers = [ | |
"Topic :: Software Development :: Libraries :: Python Modules" |
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
[tool.poetry] | |
name = "wrapt-poetry-bug" | |
version = "0.1.0" | |
description = "Project to show the bug in poetry" | |
authors = ["Roman Inflianskas <[email protected]>"] | |
license = "Apache-2.0" | |
[tool.poetry.dependencies] | |
python = "*" | |
wrapt = {git = "https://github.com/rominf/wrapt.git"} |
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
[tool.poetry] | |
name = "profile-client" | |
version = "0.1.0" | |
description = "Profile-server client" | |
authors = ["Roman Inflianskas <[email protected]>"] | |
license = "Apache-2.0" | |
[tool.poetry.dependencies] | |
python = "^3.6" | |
aiohttp = "^3.4" |
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
[tool.poetry] | |
name = "kgbot" | |
version = "1.0.0" | |
description = "Library for creating telegram bots using aiogram library" | |
authors = ["Roman Inflianskas <[email protected]>"] | |
license = "Apache-2.0" | |
[tool.poetry.dependencies] | |
python = "^3.6" | |
aiogram = "^1.4" |
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
[tool.poetry] | |
name = "profanity-filter" | |
version = "1.0.0" | |
description = "A Python library for detecting and filtering profanity" | |
authors = ["Roman Inflianskas <[email protected]>"] | |
license = "GPL-3.0+" | |
readme = "README.md" | |
repository = "https://github.com/rominf/profanity-filter" | |
keywords = ["library", "profanity", "filter", "censor"] | |
classifiers = [ |
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
import asyncio | |
from aiogram import Bot, types | |
from aiogram.contrib.fsm_storage.memory import MemoryStorage | |
from aiogram.dispatcher import Dispatcher | |
from aiogram.types import ParseMode, InlineKeyboardButton, InlineKeyboardMarkup | |
from aiogram.utils import executor | |
from aiogram.utils.markdown import text, bold | |
API_TOKEN = '' |
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
import QtQuick 2.9 | |
import QtQuick.Controls 2.1 | |
import QtQuick.Window 2.2 | |
Window { | |
id: window | |
visible: true | |
width: 640 | |
height: 480 | |
title: qsTr("Hello World") |