Skip to content

Instantly share code, notes, and snippets.

View Ivanrputra's full-sized avatar
🎯
Focusing

Ivan R. Putra Ivanrputra

🎯
Focusing
  • Malang, Indonesia
  • 22:46 (UTC +07:00)
View GitHub Profile
@Ivanrputra
Ivanrputra / async.py
Created September 22, 2022 01:58 — forked from konpatp/async.py
Python turn sync functions to async (and async to sync)
import functools
def force_async(fn):
'''
turns a sync function to async function using threads
'''
from concurrent.futures import ThreadPoolExecutor
import asyncio
pool = ThreadPoolExecutor()
@Ivanrputra
Ivanrputra / Odoo-10-Install-Process
Created February 26, 2022 00:38 — forked from abdulhalim-cu/Odoo-10-Install-Process
Install Odoo 10 on Ubuntu 16.04 LTS
Setp-1: Update & Upgrade Source List
update apt source list
sudo apt-get upgrade
Step-2: Install python dependencies for Odoo
sudo apt-get install python-dateutil python-docutils python-feedparser python-jinja2 python-ldap python-libxslt1 python-lxml python-mako python-mock python-openid python-psycopg2 python-psutil python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-unittest2 python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi poppler-utils python-pip python-pypdf python-passlib python-decorator gcc python-dev mc bzr python-setuptools python-markupsafe python-reportlab-accel python-zsi python-yaml python-argparse python-openssl python-egenix-mxdatetime python-usb python-serial lptools make python-pydot python-psutil python-paramiko poppler-utils python-pdftools antiword python-requests python-xlsxwriter python-suds python-psycogreen python-ofxparse python-gevent
Step-3: Odoo Web dependencies