python api for request and display random VDM from vdm.com. Display can be do with multiple library : i3, qt, gtk, etc ...
Go to file
Antoine 2882dadce9 update trying to solve rerender bug on resize 2020-03-10 19:25:10 +01:00
VDMAPI update trying to solve rerender bug on resize 2020-03-10 19:25:10 +01:00
.gitignore correction du parseur html aprés changement sur le site 2017-08-14 21:37:46 +02:00
LICENSE create wheel and archive file for pip install 2016-07-20 18:34:26 +02:00
MANIFEST.in ajout du fichier MANIFEST.in pour inclure les fichier autre que .py dans le package pipy 2016-07-20 19:23:11 +02:00
README.html retouche du readme.rst 2016-07-20 18:38:50 +02:00
README.rst retouche du readme.rst 2016-07-20 18:38:50 +02:00
generateWheel.md correction du parseur html aprés changement sur le site 2017-08-14 21:37:46 +02:00
main.py fin fonctionnel i3, tkinter et kivy avec fenétre flottante pour i3 2016-07-17 23:15:18 +02:00
requirements.txt update trying to solve rerender bug on resize 2020-03-10 19:25:10 +01:00
setup.py update trying to solve rerender bug on resize 2020-03-10 19:25:10 +01:00

README.rst

*******
VDM API
*******
V1.0

**VDM API** is a python api for pull random api.

Use case
========
You can use this API in python langage by instanciate a VDM() object :
::
    
    from VDMAPI.VDM import VDM
    
    if __name__ == "__main__":
        vdm = VDM()
        lstAllVDM = vdm.get()
        for i, vdm in enumerate(lstAllVDM):
            print(str(i)+" : "+vdm)


Available GUI
=============

**VDM API** include four display mode :

- **i3** : this GUI use dmenu for display the list of VDM
- **tkinter** : this use tkinter native interface
- **kivy** : use kivy library
- **console** : this last mode display the list of VDM in plain text mode

Installing
==========

For **setup** you could do with this :
::

	pip install --no-index --find-links=<pathToDistIncludeIntoGitClone> VDM_API