Skip to content

Instantly share code, notes, and snippets.

View rominf's full-sized avatar

Roman Inflianskas rominf

  • Helsinki, Finland
  • 15:28 (UTC +03:00)
  • X @_rominf
View GitHub Profile
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',
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
@rominf
rominf / pyproject_adv-publisher.toml
Created November 12, 2018 06:05
poetry update downgrades dependencies - pyproject.toml files
[tool.poetry]
name = "adv-publisher"
version = "0.1.7"
description = "Python library for advertisement publisher automation using aiohttp/splinter"
authors = ["Roman Inflianskas <r.inflyanskas@zmeke.com>"]
license = "Apache-2.0"
repository = "https://gitlab.kama.gs/r.inflyanskas/adv-publisher"
[tool.poetry.dependencies]
python = "^3.6"
@rominf
rominf / pyproject.toml
Created October 29, 2018 08:44
pyproject.toml for poetry update bug
[tool.poetry]
name = "aiosplinter"
version = "0.1.0"
description = "Asynchronous splinter wrapper Python library"
authors = ["Roman Inflianskas <infroma@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
keywords = ["splinter", "web", "browser", "web-browser", "automation", "selenium", "async", "asyncio"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
@rominf
rominf / pyproject.toml
Created October 26, 2018 15:58
Wrapt poetry bug
[tool.poetry]
name = "wrapt-poetry-bug"
version = "0.1.0"
description = "Project to show the bug in poetry"
authors = ["Roman Inflianskas <infroma@gmail.com>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "*"
wrapt = {git = "https://github.com/rominf/wrapt.git"}
@rominf
rominf / pyproject.toml
Created October 4, 2018 07:56
Poetry update doesn't update git repositories
[tool.poetry]
name = "profile-client"
version = "0.1.0"
description = "Profile-server client"
authors = ["Roman Inflianskas <r.inflyanskas@zmeke.com>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.6"
aiohttp = "^3.4"
@rominf
rominf / pyproject.toml
Created October 2, 2018 10:48
Poetry remove causes package update
[tool.poetry]
name = "kgbot"
version = "1.0.0"
description = "Library for creating telegram bots using aiogram library"
authors = ["Roman Inflianskas <r.inflyanskas@zmeke.com>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.6"
aiogram = "^1.4"
@rominf
rominf / pyproject.toml
Last active September 19, 2018 10:51
pyproject.toml of profanity-filter
[tool.poetry]
name = "profanity-filter"
version = "1.0.0"
description = "A Python library for detecting and filtering profanity"
authors = ["Roman Inflianskas <infroma@gmail.com>"]
license = "GPL-3.0+"
readme = "README.md"
repository = "https://github.com/rominf/profanity-filter"
keywords = ["library", "profanity", "filter", "censor"]
classifiers = [
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 = ''
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")