A small string comparison package
Project description
Abgleich
This package has the following repositories: Abgleich@github Abgleich-binder@github
First time run
TLDR
from abgleich_pkg.abgleich import setupEnvironment
setupEnvironment()
detailed
import os
import logging
from abgleich_pkg.abgleich import setlogging, printGlobals, setupEnvironment
os.chdir(os.path.dirname(os.path.realpath(__file__)))
setlogging()
printGlobals()
setupEnvironment()
start docker
cd docker
docker-compose -f docker-compose.yml up
Fürs Internet:
Freigabe von ip auf port:15432
dbconnstr='postgresql+psycopg2://postgres:secret@x.x.x.x:15432/mydb'
Also:
port:15432
user:postgres
pwd:secret
server:x.x.x.x
database:mydb
example main
import os
import logging
from abgleich_pkg.abgleich import setlogging, prepareParams, checkDebugEnv, printGlobals, setupEnvironment, write2CSV, writeObj, write2DF, prepareFilterCSV, writeObj, getTuples, calcvalues, \
no_abacus, no_names, baseDataDir, tuplefn, tablename, chunksize, agents, threshold, filterOnAlgo, op, dbconnstr
def main():
setlogging()
prepareParams()
printGlobals()
tuples = getTuples(no_abacus, no_names, f'{baseDataDir}/{tuplefn}')
result = calcvalues(agents, chunksize, tuples)
writeObj(result, f'{baseDataDir}/{tablename}.result')
finallist = prepareFilterCSV(result, threshold, filterOnAlgo, op)
writeObj(finallist, f'{baseDataDir}/{tablename}.finallist')
write2CSV(finallist, f'{baseDataDir}/{tablename}.csv')
write2DF(finallist, f'{baseDataDir}/{tablename}.df')
if os.name == 'posix':
try:
os.chdir('docker')
os.system('./do_csv_upload.sh')
except OSError:
print("Something wrong with specified directory. Exception- ", sys.exc_info())
finally:
print("Current directory is-", os.getcwd())
print('run do_csv_upload.sh manually!')
else:
logging.warning(f'system: {os.name}. load make take some time....')
write2Database(finallist, dbconnstr, tablename)
if __name__ == "__main__":
os.chdir(os.path.dirname(os.path.realpath(__file__)))
print(f'cwd: {os.curdir}')
if True:
setlogging()
printGlobals()
setupEnvironment()
else:
main()
callme:
python3 main.py --no_abacus=all --no_names=all --calcTuples=j --tuplesfile=abgleich.tuples --tablename=ABGLEICH
installation method (try)
import sys
import subprocess
subprocess.check_call([sys.executable, '-m', 'pip', 'install', '--upgrade', '--index-url=https://test.pypi.org/simple', '--no-deps', 'abgleich-pkg-wasix'])
import abgleich_pkg
This markdown :-)
You can use Github-flavored Markdown to write more content.
📦 setup.py (for humans)
This repo exists to provide an example setup.py file, that can be used
to bootstrap your next Python project. It includes some advanced
patterns and best practices for setup.py
, as well as some
commented–out nice–to–haves.
For example, this setup.py
provides a $ python setup.py upload
command, which creates a universal wheel (and sdist) and uploads
your package to PyPi using Twine, without the need for an annoying
setup.cfg
file. It also creates/uploads a new git tag, automatically.
In short, setup.py
files can be daunting to approach, when first
starting out — even Guido has been heard saying, "everyone cargo cults
thems". It's true — so, I want this repo to be the best place to
copy–paste from :)
Installation
cd your_project
# Download the setup.py file:
# download with wget
wget https://raw.githubusercontent.com/navdeep-G/setup.py/master/setup.py -O setup.py
# download with curl
curl -O https://raw.githubusercontent.com/navdeep-G/setup.py/master/setup.py
To Do
- Tests via
$ setup.py test
(if it's concise).
Pull requests are encouraged!
More Resources
- What is setup.py? on Stack Overflow
- Official Python Packaging User Guide
- The Hitchhiker's Guide to Packaging
- Cookiecutter template for a Python package
License
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file abgleich-pkg-wasix-0.3.14.tar.gz
.
File metadata
- Download URL: abgleich-pkg-wasix-0.3.14.tar.gz
- Upload date:
- Size: 1.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4667714a9ab1ec2f3bbbf4add8265843da09a4f68d6ced7291f4dfd9b5f2d139 |
|
MD5 | 8e9a9f6d53c1b0d1344001d9dc42d8bc |
|
BLAKE2b-256 | dcdfa8762d711005f6e5a2e8e38a794848db624dbe5c23f8d05ff71beb42a7d2 |
File details
Details for the file abgleich_pkg_wasix-0.3.14-py3-none-any.whl
.
File metadata
- Download URL: abgleich_pkg_wasix-0.3.14-py3-none-any.whl
- Upload date:
- Size: 1.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e6c8543dc6391ae274a1cfbac3bc8ca8dfe4682edda1aa6b7e9b5fb8517ad9c |
|
MD5 | 1cf825258bdf660024338560df3586f8 |
|
BLAKE2b-256 | cea09469d17cf86810b8d5ba189ddc4165768b5ff8fd02099da64f9d088a6f38 |