61 lines
2.0 KiB
Plaintext
61 lines
2.0 KiB
Plaintext
Metadata-Version: 1.1
|
|
Name: VDM-API
|
|
Version: 1.0
|
|
Summary: VDM API: an API for recover random VDM from vdm.fr website
|
|
Home-page: git://176.189.130.29/python/vdmAPI.git
|
|
Author: Antoine Roux
|
|
Author-email: antoinroux@hotmail.fr
|
|
License: Beerware
|
|
Download-URL: git://176.189.130.29/python/vdmAPI.git/tags
|
|
Description: *******
|
|
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
|
|
|
|
Platform: any
|
|
Classifier: License :: FSF approved :: Beerware License
|
|
Classifier: Operating System :: POSIX :: Linux
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 2.6
|
|
Classifier: Programming Language :: Python :: 2.7
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.2
|
|
Classifier: Programming Language :: Python :: 3.3
|
|
Classifier: Programming Language :: Python :: 3.4
|
|
Classifier: Programming Language :: Python :: 3.5
|
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|