Added delete option to database storage.

This commit is contained in:
Batuhan Berk Başoğlu 2020-10-12 12:10:01 -04:00
parent 308604a33c
commit 963b5bc68b
1868 changed files with 192402 additions and 13278 deletions

View file

@ -0,0 +1,117 @@
gRPC Python
===========
|compat_check_pypi|
Package for gRPC Python.
.. |compat_check_pypi| image:: https://python-compatibility-tools.appspot.com/one_badge_image?package=grpcio
:target: https://python-compatibility-tools.appspot.com/one_badge_target?package=grpcio
Supported Python Versions
-------------------------
Python >= 3.5
Installation
------------
gRPC Python is available for Linux, macOS, and Windows.
Installing From PyPI
~~~~~~~~~~~~~~~~~~~~
If you are installing locally...
::
$ pip install grpcio
Else system wide (on Ubuntu)...
::
$ sudo pip install grpcio
If you're on Windows make sure that you installed the :code:`pip.exe` component
when you installed Python (if not go back and install it!) then invoke:
::
$ pip.exe install grpcio
Windows users may need to invoke :code:`pip.exe` from a command line ran as
administrator.
n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`
to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest
version!
Installing From Source
~~~~~~~~~~~~~~~~~~~~~~
Building from source requires that you have the Python headers (usually a
package named :code:`python-dev`).
::
$ export REPO_ROOT=grpc # REPO_ROOT can be any directory of your choice
$ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init
# For the next two commands do `sudo pip install` if you get permission-denied errors
$ pip install -rrequirements.txt
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .
You cannot currently install Python from source on Windows. Things might work
out for you in MSYS2 (follow the Linux instructions), but it isn't officially
supported at the moment.
Troubleshooting
~~~~~~~~~~~~~~~
Help, I ...
* **... see a** :code:`pkg_resources.VersionConflict` **when I try to install
grpc**
This is likely because :code:`pip` doesn't own the offending dependency,
which in turn is likely because your operating system's package manager owns
it. You'll need to force the installation of the dependency:
:code:`pip install --ignore-installed $OFFENDING_DEPENDENCY`
For example, if you get an error like the following:
::
Traceback (most recent call last):
File "<string>", line 17, in <module>
...
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
raise VersionConflict(dist, req)
pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))
You can fix it by doing:
::
sudo pip install --ignore-installed six
* **... see the following error on some platforms**
::
/tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
#include "Python.h"
^
compilation terminated.
You can fix it by installing `python-dev` package. i.e
::
sudo apt-get install python-dev

View file

@ -0,0 +1 @@
pip

View file

@ -0,0 +1,143 @@
Metadata-Version: 2.0
Name: grpcio
Version: 1.32.0
Summary: HTTP/2-based RPC framework
Home-page: https://grpc.io
Author: The gRPC Authors
Author-email: grpc-io@googlegroups.com
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: Apache Software License
Requires-Dist: six (>=1.5.2)
Requires-Dist: futures (>=2.2.0); python_version < "3.2"
Requires-Dist: enum34 (>=1.0.4); python_version < "3.4"
Provides-Extra: protobuf
Requires-Dist: grpcio-tools (>=1.32.0); extra == 'protobuf'
gRPC Python
===========
|compat_check_pypi|
Package for gRPC Python.
.. |compat_check_pypi| image:: https://python-compatibility-tools.appspot.com/one_badge_image?package=grpcio
:target: https://python-compatibility-tools.appspot.com/one_badge_target?package=grpcio
Supported Python Versions
-------------------------
Python >= 3.5
Installation
------------
gRPC Python is available for Linux, macOS, and Windows.
Installing From PyPI
~~~~~~~~~~~~~~~~~~~~
If you are installing locally...
::
$ pip install grpcio
Else system wide (on Ubuntu)...
::
$ sudo pip install grpcio
If you're on Windows make sure that you installed the :code:`pip.exe` component
when you installed Python (if not go back and install it!) then invoke:
::
$ pip.exe install grpcio
Windows users may need to invoke :code:`pip.exe` from a command line ran as
administrator.
n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`
to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest
version!
Installing From Source
~~~~~~~~~~~~~~~~~~~~~~
Building from source requires that you have the Python headers (usually a
package named :code:`python-dev`).
::
$ export REPO_ROOT=grpc # REPO_ROOT can be any directory of your choice
$ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init
# For the next two commands do `sudo pip install` if you get permission-denied errors
$ pip install -rrequirements.txt
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .
You cannot currently install Python from source on Windows. Things might work
out for you in MSYS2 (follow the Linux instructions), but it isn't officially
supported at the moment.
Troubleshooting
~~~~~~~~~~~~~~~
Help, I ...
* **... see a** :code:`pkg_resources.VersionConflict` **when I try to install
grpc**
This is likely because :code:`pip` doesn't own the offending dependency,
which in turn is likely because your operating system's package manager owns
it. You'll need to force the installation of the dependency:
:code:`pip install --ignore-installed $OFFENDING_DEPENDENCY`
For example, if you get an error like the following:
::
Traceback (most recent call last):
File "<string>", line 17, in <module>
...
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
raise VersionConflict(dist, req)
pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))
You can fix it by doing:
::
sudo pip install --ignore-installed six
* **... see the following error on some platforms**
::
/tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
#include "Python.h"
^
compilation terminated.
You can fix it by installing `python-dev` package. i.e
::
sudo apt-get install python-dev

View file

@ -0,0 +1,117 @@
grpc/__init__.py,sha256=C_OkIKy3gUNWrOg1lA17wZdJHf5BVljgmsgiHHcRzN0,82325
grpc/__pycache__/__init__.cpython-36.pyc,,
grpc/__pycache__/_auth.cpython-36.pyc,,
grpc/__pycache__/_channel.cpython-36.pyc,,
grpc/__pycache__/_common.cpython-36.pyc,,
grpc/__pycache__/_compression.cpython-36.pyc,,
grpc/__pycache__/_grpcio_metadata.cpython-36.pyc,,
grpc/__pycache__/_interceptor.cpython-36.pyc,,
grpc/__pycache__/_plugin_wrapping.cpython-36.pyc,,
grpc/__pycache__/_runtime_protos.cpython-36.pyc,,
grpc/__pycache__/_server.cpython-36.pyc,,
grpc/__pycache__/_simple_stubs.cpython-36.pyc,,
grpc/__pycache__/_utilities.cpython-36.pyc,,
grpc/_auth.py,sha256=6S0D1ZiKMgisKca0p2VElxTp7JHHf9pffz00qbVUaLU,2226
grpc/_channel.py,sha256=Qwdk-gjk41o456ReGOBsmlVCFWMYG9GPXTKPAFdJ6PI,59644
grpc/_common.py,sha256=piEec2i5lLBfDsmjwLN2RM-f8i4ZoxkAc8AJ1-PAUxg,6422
grpc/_compression.py,sha256=_24RjhRL9BjGV8BjBWH9eOnX8FEqPxtjR-gqBgVETeQ,1750
grpc/_cython/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/_cython/__pycache__/__init__.cpython-36.pyc,,
grpc/_cython/_credentials/roots.pem,sha256=KtN_WlmTMzhyA3SU6D3Ysspj6TueNbhqddCoDLljVrE,288872
grpc/_cython/_cygrpc/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/_cython/_cygrpc/__pycache__/__init__.cpython-36.pyc,,
grpc/_cython/cygrpc.cp36-win32.pyd,sha256=9eom_DDZ9TG9fZ3geJQ6439ehhKu2x5tJaAWRi0ETr0,4609024
grpc/_grpcio_metadata.py,sha256=YFBmgWVEA0WVUklyHzJDKiRecac4RDmVcgdE6hZ5SJE,26
grpc/_interceptor.py,sha256=r_O1z2TDIEICD7oeSDuk9qPsRCZmgTqhI8OzoZ1pWi0,20929
grpc/_plugin_wrapping.py,sha256=e-dNS_Cx0CagXwFHOTlE_k0DfbjAZGOvvUc4q8YzakI,3528
grpc/_runtime_protos.py,sha256=vUZ0rD2c4xOOazOHw24WG8Kq5q0Wis4DO1LWCM0cFRQ,6322
grpc/_server.py,sha256=4H8tUQNWVOJGOUCqxwXvuFQwZ2E3RPoQpSzUvNvmX1Q,38453
grpc/_simple_stubs.py,sha256=bUeyF1IciLLifBJA_Y8DyGRrUQdq4YRkPn9z69sBCN4,24513
grpc/_utilities.py,sha256=xYAUJ2plE3YCS-Z-hATU44XiS2_8HdRH8Gc_s_KEFgU,5350
grpc/aio/__init__.py,sha256=dLH4Bfct6NdmSCBDXWUmiC9qcwMdq01GzXUmlwQnqVw,2905
grpc/aio/__pycache__/__init__.cpython-36.pyc,,
grpc/aio/__pycache__/_base_call.cpython-36.pyc,,
grpc/aio/__pycache__/_base_channel.cpython-36.pyc,,
grpc/aio/__pycache__/_base_server.cpython-36.pyc,,
grpc/aio/__pycache__/_call.cpython-36.pyc,,
grpc/aio/__pycache__/_channel.cpython-36.pyc,,
grpc/aio/__pycache__/_interceptor.cpython-36.pyc,,
grpc/aio/__pycache__/_metadata.cpython-36.pyc,,
grpc/aio/__pycache__/_server.cpython-36.pyc,,
grpc/aio/__pycache__/_typing.cpython-36.pyc,,
grpc/aio/__pycache__/_utils.cpython-36.pyc,,
grpc/aio/_base_call.py,sha256=o3gHG0Q7-ONj2CRcK9xngvezuMnSBwUhQD84-oDLUGU,7484
grpc/aio/_base_channel.py,sha256=ufk6dq9sk2wAuLgXy2JoGT_S7oXb5Xx3cOrjgYC5R-o,13860
grpc/aio/_base_server.py,sha256=llFtu0Qzq6sHFKgGyIi-Y_S_A6QkBgG5R9W19YUzubI,10285
grpc/aio/_call.py,sha256=ftPsijjPb8DjW5c969z5JU-Fm6HSp6zYJMos5x7oVYk,24446
grpc/aio/_channel.py,sha256=YuTGqtYapIQ0JUlPz0Uj2WSjyB6dRX2VdPFkd7ZazEQ,20462
grpc/aio/_interceptor.py,sha256=ZfVMQYynDrjoGoSkOqoF5ICWu9_Rjfu2lqjkKmz4ehs,40828
grpc/aio/_metadata.py,sha256=zsh8f5A_spq7oZiPtvqWyB8hIOP20ebqtoV1ugnY2sw,4666
grpc/aio/_server.py,sha256=MNIHMb7Gn6uzrZIhXYxpM3SCli7h0oqtKVNSDQfVLoc,8892
grpc/aio/_typing.py,sha256=HXMJY5pWzhfP5jkTZc7TyNYUlol6hplMhsSnbuIIVSU,1318
grpc/aio/_utils.py,sha256=Fw8FpKtucE2a2VRNF3JyAMzh0BtgNQZKpE5jWlHlwQw,843
grpc/beta/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/beta/__pycache__/__init__.cpython-36.pyc,,
grpc/beta/__pycache__/_client_adaptations.cpython-36.pyc,,
grpc/beta/__pycache__/_metadata.cpython-36.pyc,,
grpc/beta/__pycache__/_server_adaptations.cpython-36.pyc,,
grpc/beta/__pycache__/implementations.cpython-36.pyc,,
grpc/beta/__pycache__/interfaces.cpython-36.pyc,,
grpc/beta/__pycache__/utilities.cpython-36.pyc,,
grpc/beta/_client_adaptations.py,sha256=EMkqT0wLwNTqNmmQjha8cmuni76or7SlMKff3SNRpR8,28218
grpc/beta/_metadata.py,sha256=tPZe4P32VbdFsgMZoGsKqEOT8iODjnwcFeDiH-lFZDs,1658
grpc/beta/_server_adaptations.py,sha256=ytUc5NfbIJirH4vENQMUiKUQJys9vg-8bFh-Gjax7gw,14202
grpc/beta/implementations.py,sha256=is0FAkCuyhLiSz5BTZ4OVb86Zhz3n-PVGerdVitPXCY,12126
grpc/beta/interfaces.py,sha256=fg2M4qgJozMPCI0hRuvCukWgU6vg-wp2BUV4wPol7Yg,6121
grpc/beta/utilities.py,sha256=7ErgL2XBwlkz-X07H3NLKcUahaXV3jR6WRPfDZRXZnw,5082
grpc/experimental/__init__.py,sha256=EYjUeVaH5_OAjgKVbo6kWgnC9753a7lKlChdh2QCVdI,4105
grpc/experimental/__pycache__/__init__.cpython-36.pyc,,
grpc/experimental/__pycache__/gevent.cpython-36.pyc,,
grpc/experimental/__pycache__/session_cache.cpython-36.pyc,,
grpc/experimental/aio/__init__.py,sha256=QoEtaa5C408IeaaSMKvooYNJdWCqyX6X9UYF-maJcIY,676
grpc/experimental/aio/__pycache__/__init__.cpython-36.pyc,,
grpc/experimental/gevent.py,sha256=ZmFL0iK7irhC9JtTC2JJP23-IRG3_ZCohRQBhhVWuyM,1000
grpc/experimental/session_cache.py,sha256=OdASXKtZYY8vP1Yo6GeRi4dfEaVuvyiOK5CknnROExE,1578
grpc/framework/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/framework/__pycache__/__init__.cpython-36.pyc,,
grpc/framework/common/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/framework/common/__pycache__/__init__.cpython-36.pyc,,
grpc/framework/common/__pycache__/cardinality.cpython-36.pyc,,
grpc/framework/common/__pycache__/style.cpython-36.pyc,,
grpc/framework/common/cardinality.py,sha256=v0Gfp8V2mrlgJEq6TFdEYvKdtcG5RhPzKyzqEYSKnww,1014
grpc/framework/common/style.py,sha256=LsshsJwnoHJsXt6NSfrW3lBBKIpHcAa6crKQQXjkcjM,848
grpc/framework/foundation/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/framework/foundation/__pycache__/__init__.cpython-36.pyc,,
grpc/framework/foundation/__pycache__/abandonment.cpython-36.pyc,,
grpc/framework/foundation/__pycache__/callable_util.cpython-36.pyc,,
grpc/framework/foundation/__pycache__/future.cpython-36.pyc,,
grpc/framework/foundation/__pycache__/logging_pool.cpython-36.pyc,,
grpc/framework/foundation/__pycache__/stream.cpython-36.pyc,,
grpc/framework/foundation/__pycache__/stream_util.cpython-36.pyc,,
grpc/framework/foundation/abandonment.py,sha256=p1Vg5oK33yGOeX93JgYvdsBXdTtM6lzCIZSXyWcaRQU,894
grpc/framework/foundation/callable_util.py,sha256=x4qisZhPzIwkAx-HERn8YbOxxM216nvIPg9dAoeu8cY,3247
grpc/framework/foundation/future.py,sha256=bjR2K231LEpr7GS9-76nFJNAPaSbWHNwr4UopwY880U,8312
grpc/framework/foundation/logging_pool.py,sha256=uoELGCVmc_GhMxR50BZlNsRMGFGk_ex4VkuVm2hyUk8,2349
grpc/framework/foundation/stream.py,sha256=cSi1fpCR9xWXvuoi6IIChankcoFDCacuJ7x3brUJ4zg,1434
grpc/framework/foundation/stream_util.py,sha256=xbo7u8uXLBsQ_vf_NKHsls8mFOmmsaLQni51yk_xLpw,4920
grpc/framework/interfaces/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/framework/interfaces/__pycache__/__init__.cpython-36.pyc,,
grpc/framework/interfaces/base/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/framework/interfaces/base/__pycache__/__init__.cpython-36.pyc,,
grpc/framework/interfaces/base/__pycache__/base.cpython-36.pyc,,
grpc/framework/interfaces/base/__pycache__/utilities.cpython-36.pyc,,
grpc/framework/interfaces/base/base.py,sha256=HpVRrT2L8_NH5wKq4z3YdZ8LQDrdvMLGVK1NHfz4DvQ,12523
grpc/framework/interfaces/base/utilities.py,sha256=EnchGOBWBOMS5j2zpuSZxn0XXi9gmjTVZ8cOTxCG9IM,2526
grpc/framework/interfaces/face/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
grpc/framework/interfaces/face/__pycache__/__init__.cpython-36.pyc,,
grpc/framework/interfaces/face/__pycache__/face.cpython-36.pyc,,
grpc/framework/interfaces/face/__pycache__/utilities.cpython-36.pyc,,
grpc/framework/interfaces/face/face.py,sha256=ROSx6G7dF7APvRbZqFbrneBkKWp_ZbhGj42C_0_ms14,40756
grpc/framework/interfaces/face/utilities.py,sha256=tF6O4ghE7JlbnZ3vvNyLpTuQ3yzrlMjrAaGZvRQba_s,6879
grpcio-1.32.0.dist-info/DESCRIPTION.rst,sha256=sJ9akK0BDNfSrrm8h6KFTUw7B1IDtEJ3uO4heYq2B0M,2981
grpcio-1.32.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
grpcio-1.32.0.dist-info/METADATA,sha256=2DskeBI44mqSPZ2nGw2CWMMQyDmCz4iScs_EUNl8cFA,3975
grpcio-1.32.0.dist-info/RECORD,,
grpcio-1.32.0.dist-info/WHEEL,sha256=xiHTm3JxoVljPSD6nSGhq3B4VY9iUqMNXwYQ259n1PI,102
grpcio-1.32.0.dist-info/metadata.json,sha256=dKrpOEptUV-XOsZF03uLk2ihIOpFHDgtttmO1iJ_9pI,1183
grpcio-1.32.0.dist-info/top_level.txt,sha256=eEd2Jq_aVQFp38bWW8Pfwjz_5iibqeOFT-2zXlPAq_8,5

View file

@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.29.0)
Root-Is-Purelib: false
Tag: cp36-cp36m-win32

View file

@ -0,0 +1 @@
{"classifiers": ["Development Status :: 5 - Production/Stable", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "License :: OSI Approved :: Apache Software License"], "description_content_type": "UNKNOWN", "extensions": {"python.details": {"contacts": [{"email": "grpc-io@googlegroups.com", "name": "The gRPC Authors", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://grpc.io"}}}, "extras": ["protobuf"], "generator": "bdist_wheel (0.29.0)", "license": "Apache License 2.0", "metadata_version": "2.0", "name": "grpcio", "run_requires": [{"extra": "protobuf", "requires": ["grpcio-tools (>=1.32.0)"]}, {"requires": ["six (>=1.5.2)"]}, {"environment": "python_version < \"3.2\"", "requires": ["futures (>=2.2.0)"]}, {"environment": "python_version < \"3.4\"", "requires": ["enum34 (>=1.0.4)"]}], "summary": "HTTP/2-based RPC framework", "version": "1.32.0"}

View file

@ -0,0 +1 @@
grpc