{ "info": { "author": "Cyclip", "author_email": "gdneop@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# Vanadium\nA python module; when you don't want to reinvent the wheel. Mainly for beginners for Python. Vanadium contains many different functions that beginners would search for, such as how to send an email or download something or a webpage from the internet. All of this is accessible easily, and enables threading inside the vanadium module.\n\n__If your version is outdated and is missing features, read:__\n__*Update 0.0.2 is currently being fixed. Minor builds will be released. To install,\ndo `pip install vanadium==0.0.2.x`*__\n\n**Python 3.6 is supported. Only tested on Windows.**\n\n## Getting started\nTo install vanadium, you need pip; which is most likely already installed along with Python.\n\n1. Open Command prompt (search 'cmd')\n2. Type `pip install vanadium`\n3. Done!\n\n### Prequisites\nThere are a variety of modules you'll need to install if `pip` doesn't install them.\n\n## Usage\nFirst of all, you'll need to import vanadium. As the name is long, you can do:\n`import vanadium as vdm`\nIf the module imports normally without errors, you're ready to use it.\n\n## Features\nHere is a full list and explanation of each function and class.\n\n### Hashes\nHashes supported in the module:\n- 5 sha256 sha224 ripemd160 blake2b blake2s sha512\n- md5\n- sha256\n- sha224\n- ripemd160\n- blake2b [needs key and digest_size]\n- blake2s [needs key and digest size]\n- sha512\n\n\n#### *vdm.generate(length)*\n__Use vdm.genCode instead. Supports characters, sizes and lengths.__\n*Possibility of deprecation*\nGenerates a number code with 5 letters, and a `-` in between. This will repeat for your length. Example:\n```\n>>> print(vdm.generate(3).code)\n1778-6851-8069\n```\n\n\n#### *vdm.get_output(command)*\n__*Deprecation Notice:* This feature has been removed since 0.0.2. Use *dm.getoutput(command, isShell=True)* nstead.__\nGets the output of a command, like in subprocess. There will not be a console and to get the output, use .command. Example: \n```\noutput = vdm.get_output('net view').command\nvery long output\n```\n\n\n#### *vdm.getforeground()*\n*__Deprecation Notice*: Replaced with vdm.vwindow() instead.__\nGets the current foreground/active window. Name of the window is saved to .command. Example:\n```\n>>> foreground = vdm.getforeground().window\n''*Python 3.6.5 Shell*'\n```\n\n\n#### *vdm.joinlist(list_variable, by=None)*\nby is optional. It joins a list and converts it to a string. String is at .string. Example:\n```\n>>> list = ['hello', 'there']\n>>> print(vdm.joinlist(list).string)\n'hello there'\n```\n\n#### *vdm.winver()*\nGets the windows version the user is running. Takes time to intiate. Example:\n```\n>>> ver = vdm.winver()\n>>> ver.osname\nMicrosoft Windows 8.1\n>>> ver.version\n6.3.9600 N/A Build 9600\n```\nMore features could be supported in future versions.\n\n\n#### *vdm.bsod()*\n__Read the license file__\nForces a Blue Screen Of Death. Requires elevation and user confirmation through a dialog. Use for experimental purposes\nUsage:\n`vdm.bsod()`\n\n\n#### *vdm.unzip(file_path, extract_to, extension, pw=None [Optional])*\nUnzips a file. Currently supports .zip and .rar. Extract_to should be the directory it will extract to.\nEnter the extension of the file, either `.zip` or `.rar`. If the rar file requires a password, you can add the extra argument\n`pw=`. Example:\n`vdm.unzip('documents.rar', 'stuff/documents/', '.rar', pw='SuperSecretPassword321')`\n\n\n#### *vdm.notify(title, content, icon=None, duration=5)*\nCreates a notification. Looks best in Windows 10. title is the title of the notification. Content is the body. If you would like to specify an icon to go with it, enter the path of it in `icon=`. To set the duration of the notification, add `duration=`. Example:\n`vdm.notify('Reminder', 'Take cat out of freezer', icon='C:/Meow.ico', duration=4)`\n\n\n#### *vdm.sequence(expression, length, string=True)*\nGenerates a sequence based on the expression. You need to choose a length (integer). If you want it to generate in integers, add the extra argument `string=False`. Use `n` as the term. Example:\n```\n>>> vdm.sequence('4n + 4', 10, string=False`\n[8, 12, 16, 20, 24, 28, 32, 36, 40, 44]\n```\n\n#### *vdm.mousepos()*\nGets the current position of the mouse. Quite simple. Example: `print(vdm.mousepos())`\n\n\n#### *vdm.bringWindow(window)*\nDoing this manually can be hard, finding the handler by searching through countless windows. This will simplify it and require just a window name. This will bring a window to the front (foreground/active window). Example:\n`vdm.bringWindow('Python 3.6.5 Shell')`\n\n\n#### *vdm.isAdmin()*\nCreated for the *vdm.elevate()* command. Can be used, though.\nreturns `True` if the user is admin. Returns `False` if not. Example:\n```\nif vdm.isAdmin():\n print(\"Hello Admin!\")\nelse:\n print(\"ew where's the admin\")\n```\n\n#### *vdm.runAsAdmin(cmdLine=None, wait=True)*\n__Created for the *vdm.elevate()* command. Cannot be used. If you want to elevate your program, use vdm.elevate()__\nRuns as admin\n\n\n#### *vdm.elevate()*\nElevates the program to administrator privileges. Uses a UAC Prompt so the user needs to enter their password. If you want, here's an example:\n`vdm.elevate()`\n\n\n#### *vdm.fileattrib(file_path, args)*\nAdds or removes a file attribute. For args, use this format:\n`+` to Set an attribute\n`-` to clear an attribute\n`R` Read-Only\n`A` Archive\n`S` System ffile\n`H` Hidden\nExample:\n```\nvdm.fileattrib('myfile.png', '+H') #This will hide the file\nvdm.fileattrib('myfile.png', '-R') #This will remove the \"Read only\" attribute\nvdm.fileattrib('*.*', '+H') #Hides all files with all extensions.\n```\nTo apply this to a bunch of files, use a list.\n\n\n#### *vdm.pyversion()*\nReturns the python version. It would look something like `\"Python 3.6.5\"`. Example:\n```\n>>> if vdm.pyversion() == 'Python 3.6.5':\n... print(\"Supported by Vanadium\")\n... else:\n... print(\"Not supported by Vanadium :(\")\n...\nSupported by Vanadium\n```\n\n#### *vdm.getoutput(command, isShell=True)*\nGets the output of a command, default is shell. No console windows opening, and it's quick. `command` must be string. Example:\n`users = vdm.getoutput('net user')`\n\n\n#### *vdm.genCode(size=5, length=3, chars=None, sep='-')*\nOptionally, you can just use `vdm.genCode()`, but you can customize it. `size` is the amount of characters. Length is the amount of \nof groups of characters. You can specify which characters to use in `chars=`, and a seperator. Default characters is `string.ascii_uppercase + string.digits`. Example:\n```\n>>> vdm.genCode()\n'H0BO1-ORDTK-Q9XQG'\n>>> vdm.genCode(size=3, length=5, chars=string.ascii_uppercase + string.digits, sep=' ')\n'AG3 R3C M7Q VIS 0VB'\n```\n\n#### *vdm.hashfile(file_path, hash, key=None, digest_size=None)*\nGets the hash of a file. Multiple hashes are supported. See the top for the list. digest_size is the length of the ciphered text.\nExample: \n`vdm.hashfile('C:/Path/to/file.exe', 'md5')`\n`vdm.hashfile('pewpew.exe', 'blake2b', key='souperpassword', digest_size=12)`\n\n\n#### *vdm.hash(string, hash, key=None, digest_size=None)*\nGets the hash of a string. Multiple hashes are supported. See the top for the list. digest_size is the length of the ciphered text.\nExample:\n`vdm.hash('fbiopenup', 'sha224')`\n`vdm.hash('fbiopenup', 'blake2s', key='closedown', digest_size=16)`\n\n#### *vdm.sdownload(url, file_name)*\nUses threading to download a file without waiting. Example:\n`vdm.sdownload('C:/Path/to/another/galaxy-background.png,', 'C:/Users/Admin/Desktop/background.png)`\n\n\n#### *vdm.download(url, file_name)*\nDownloads a file from the internet, but waits until completed. Example:\n`vdm.sdownload('C:/Path/to/another/galaxy-background.png,', 'C:/Users/Admin/Desktop/background.png)`\n\n\n#### *vdm.cfile(file_path, body=None, modify_type='w')*\nCreates an empty file. If you want to create a file with text, enter the Body in string. Example:\n`vdm.cfile('C:/Path/to/file.txt', body='Hello')`\n\n\n#### *vdm.email(username, password, recipient, subject, body)*\nSends an email from the account you enter to the recipient, and uses the subject and body. Only gmail (google) is supported. No other information will be sent anywhere without you specifying, and the variables are not used anywhere except the email function. The only purpose is to simplify the process of sending emails and condense it from 7 lines to one. Example:\n`vdm.email('myuser@gmail.com', 'MyPassword123', 'sendto@gmail.com', 'Subject', 'Hello sendto!')`\n\n\n#### *vdm.python3()*\n__*Deprecation Notice:* This feature has been deprecated since 0.0.2. Use *vdm.pyversion()* instead.__\nIf the person is running Python 3 (At the moment this seems quite useless, so in a future update it will differentiate between different python versions such as 3.6 and 3.7) it will return `True`. Example:\n```if vdm.python3(): #If they are running python 3..\n print(\"Running python 3\")\n```\n\n\n#### *vdm.encode(string, key)*\nEncodes a plaintext string depending on the key. This is a somewhat secure way of storing passwords but there are better algorithms which will be added in a future update, if not existing. Example:\n`password = vdm.encode('Password123', 'key321')`\n\n\n#### *vdm.decode(encoded_string, key)*\nDecodes an encoded string based on the key. The key must be correct. Example:\n`vdm.decode('wrnDnsOVw6XCicOkwpLDnsOYwpbDjMOnw51Aw5zDp8Oiw4bDpA==', 'very true')`\n\n\n#### *vdm.comparefile(first_file_path, second_file_path)*\n__Hashes are not supported here :(__\nMust be the absolute file path. This will compare 2 files very quickly and will return `True` if they are exactly the same. Example:\n```\nif vdm.comparefile('notavirus.exe', 'virus.exe'):\n print(\"o noes\")\n ```\n\n\n#### *vdm.filepath()*\n Quite simple; gets the file path of the file that it is executing on. Exactly the same as `__file__` except it doesn't use it. This will be compatible with frozen programs (compiling programs to exe with py2exe, pyinstaller, cx_freeze) and that's basically the use.\nExample:\n`print(\"You are running from \" + vdm.filepath()) #The last part will print the file path including the file, in string`\n\n\n#### *vdm.writetofile(file_path, body, modify_type [optional])*\nWrite a line, or multiple lines to an __existing__ file, with enough permissions. You must specify what to type in the second argument, and if you want you can choose to append ('a') or overwrite ('w').\n__Append__: Add on\n__Overwrite__: Remove everything from the file and write new information\nExamples:\n`vdm.writetofile('Todolist.txt', 'Put cat in the freezer', 'a') #Appending`\n`vdm.writetofile('highscore.stats', '604', 'w') #Overwriting`\n\n\n#### *vdm.reloadmodule(module)*\nReload a module if, for example, the code was changed. Make sure you do not add strings, and just type the normal module name. Example:\n`vdm.reloadmodule(maths)`\n`vdm.reloadmodule(os.path)`\n\n\n#### *vdm.average(numbers)*\nGet the mean/average of a list of integers. You can optionally create a list if it is easier for you to understand. Examples:\n```\nlist = [1, 2, 3, 5,] #Creating a list to be used\naverage = vdm.average(list)\n```\nQuicker method:\n`average = vdm.average([1, 2, 3, 5])`\n\n\n#### *vdm.sfunction(function, args)*\nTo prevent adding more arguments to other functions within the vanadium module to keep it simple, there is, instead, a new function which can just do it for you. `sfunction` will call a function __without waiting__. This uses threading, and so you should be a bit careful with this. Functions should be in strings, and you shouldn't add the `vanadium.` or `vdm.` when using this. Example:\n`vdm.sfunction('average', [1, 2, 3, 4, 5, 6, 7, 10])`\nThe first argument is `average`, which is `vdm.average()`. The second argument is a list of numbers that will be used. See the one above for more information on `vdm.average(numbers)`\n\n\n#### *vdm.libfile()*\nThis probably wont be very useful inside programs but it could be -- it's more of just getting stuff. This will get the Python Library File, where all the modules are kept. Example:\n```\n>> print(vanadium.libfile())\n C:/Users/USERNAME/AppData/Local/Programs/Python/Python36-32/lib/\n ```\n\n\n#### *vdm.delfile(file_path, secure=False)*\n __Just a quick note:__ *Please read the `LICENSE` file. Do not use this for malicious purposes.*\n Can delete a file or files. To delete a file, just specify a file path, like this:\n `vdm.delfile('passwords.txt')`\n\n To delete a bunch of files, create a list with all the file paths/names in them, like this:\n ```\n files = ['passwords.txt', 'creditcards.txt', 'highschoolpicture.png']\n vdm.delfile(files)\n ```\n or\n `vdm.delfile(['passwords.txt', 'creditcards.txt', 'highschoolpicture.png'])`\n\n If you would like to securely delete files so they can't be recovered, you can add the extra argument `secure=True`. This is irreversible.\n\n#### *vdm.isadmin()*\nReturns `True` if the user is an admin. Returns `False` if otherwise. Example:\n```\nif vdm.isadmin():\n print(\"You can use this program.\")\nelse:\n print(\"You are not an administrator.\")\n```\n\n\n\n# Updates\n\n## 0.0.2.1\n- Fixed updates on PyPi\n\n## 0.0.2\n- Changed getforeground() to vwindow()\n- Added functions to vwindow\n- Added winver(). Gets the windows OS Name and Version\n- Added bsod() | Please read the license, forces a Blue Screen of Death with user permission\n- Added unzip. Unzips a file, .rar and .zip supported only\n- Added notify. Uses toast to create a notification. Looks better on Windows 10\n- Added sequence. Generates a sequence based on a equation. Doesn't support powers\n- Added mousepos. Returns the mouse position.\n- Added bringWindow. Brings a window to foreground, without specifying handlers and stuff.\n- Added isAdmin. This is for the elevate() command.\n- Added runAsAdmin. This is for the elevate() command.\n- Added elevate. Elevates the permissions of the running program with UAC Prompt. Supports IDLE too.\n- Updated delfile. Added secure deletion to completely get rid of files, but takes long.\n- Added fileattrib. Changes the attributes of files.\n- Added pyversion. Successor to python3(). Gets the exact python version.\n- Updated getoutput. Changed from class to function, and gets output. Extra argument \"isShell=True\"\n- Added genCode. Successor to generate, although generate is still available. Generates a code with a custom simze, custom length and custom characters. If chars are not specified, it will generate numbers and letters.\n- Updated hash file. Supports multiple hashes, includes argument for key and digest size.\n- Added hash. Hashes a string, supports multiple hashes, includes arguments for key and digest size.\n- Updated get_output. Faster and simpler, and supports shell.\n- Rewritten isAdmin() to support runAsAdmin(), to help with elevate(). Use\n\n__GitHub__\n- Issues templates and suggestions. Please contribute to Vanadium :D\n\n## 0.0.1 \n- Created\n- Added basically everything\n\n# Todo [Updated only on GitHub]\n- Add power support for sequence\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Cyclip/Vanadium", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "vanadium", "package_url": "https://pypi.org/project/vanadium/", "platform": "", "project_url": "https://pypi.org/project/vanadium/", "project_urls": { "Homepage": "https://github.com/Cyclip/Vanadium" }, "release_url": "https://pypi.org/project/vanadium/0.0.2.4/", "requires_dist": null, "requires_python": "", "summary": "A python module for small things; so you don't have to reinvent the wheel", "version": "0.0.2.4" }, "last_serial": 4471995, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "9fc823c9464b50290a16d3be641bc92e", "sha256": "43ea8498aac204e0adc6578ad1d52e6631a846c2f688562a5628a4774126a81c" }, "downloads": -1, "filename": "vanadium-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9fc823c9464b50290a16d3be641bc92e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3182, "upload_time": "2018-11-06T08:04:32", "url": "https://files.pythonhosted.org/packages/04/16/8a61739d16dec6671dc88fba3c586a3c4f1cff12db62e0f4225ec8a8e9e6/vanadium-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "594ba546c597d09eeb43458f8b838582", "sha256": "bca7f028e135763785eb6d060a4c786b3753335c5250160e86e58a440b2b620e" }, "downloads": -1, "filename": "vanadium-0.0.1.tar.gz", "has_sig": false, "md5_digest": "594ba546c597d09eeb43458f8b838582", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2254, "upload_time": "2018-11-06T08:04:34", "url": "https://files.pythonhosted.org/packages/40/bf/7c71ef058d393deaa2c9374858284e4c46e0629ea470f324644c83114720/vanadium-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "29e92444a7183fc437b5995a6244fa70", "sha256": "bdba58ede84d9cb2daffac61f6fbc91819f1b868827b2213b4d0ee935e6d47b8" }, "downloads": -1, "filename": "vanadium-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "29e92444a7183fc437b5995a6244fa70", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7753, "upload_time": "2018-11-08T20:28:52", "url": "https://files.pythonhosted.org/packages/34/7a/d66f93885c7c5fa75222981047e4ac17b5968f2474fb1e7549f09eca9d31/vanadium-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b763c9032e95ff4d4fd470ef18c5d050", "sha256": "37c60b2aadbda10777604b8ffa908f91aaed82b5d82e24569c1d8cb9c9884b27" }, "downloads": -1, "filename": "vanadium-0.0.2.tar.gz", "has_sig": false, "md5_digest": "b763c9032e95ff4d4fd470ef18c5d050", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9300, "upload_time": "2018-11-08T20:28:54", "url": "https://files.pythonhosted.org/packages/1d/f6/e04ae8c71f27a499f16d42c516d477606b77e8a48af88a72199a2a9a7853/vanadium-0.0.2.tar.gz" } ], "0.0.2.1": [ { "comment_text": "", "digests": { "md5": "5e40b17bea28049869b35c164689da31", "sha256": "3f10006f37508c3a00860b6900f0a5219f5c8af7727be3d880de63046486722d" }, "downloads": -1, "filename": "vanadium-0.0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5e40b17bea28049869b35c164689da31", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7788, "upload_time": "2018-11-08T20:38:06", "url": "https://files.pythonhosted.org/packages/0d/d3/c3baa9d5b6ed387ee451a40b0c2b81ef5deeba17c3d22f8f064c5ec66a14/vanadium-0.0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "081c868d19418619b249117b13931179", "sha256": "e776438636094174db22dd08028efc07be9707e8713711e8c0fe72e838e0e02a" }, "downloads": -1, "filename": "vanadium-0.0.2.1.tar.gz", "has_sig": false, "md5_digest": "081c868d19418619b249117b13931179", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9337, "upload_time": "2018-11-08T20:38:08", "url": "https://files.pythonhosted.org/packages/88/c9/e032cf07bb307e5bb3890db3aa4ce7d027ae746b89f18e83195caa77865b/vanadium-0.0.2.1.tar.gz" } ], "0.0.2.2": [ { "comment_text": "", "digests": { "md5": "2088b0966d7726e9c2ffba695a7846fa", "sha256": "e406b10b9618f4e4c93f6856a8a801befafe3d9b6617427de9f7b4bd9f2d634d" }, "downloads": -1, "filename": "vanadium-0.0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2088b0966d7726e9c2ffba695a7846fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7844, "upload_time": "2018-11-08T20:42:52", "url": "https://files.pythonhosted.org/packages/30/71/f061098c6dcc78499662074bf33c29cd889d65cbc0961e014fd3c0683d35/vanadium-0.0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d08d764f5aeb6767e3d28eb18c2fec49", "sha256": "e5123b6135adf0cad1b2a41a2cfca3a4b50c273061b105165b0c7334079f33ea" }, "downloads": -1, "filename": "vanadium-0.0.2.2.tar.gz", "has_sig": false, "md5_digest": "d08d764f5aeb6767e3d28eb18c2fec49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9401, "upload_time": "2018-11-08T20:42:53", "url": "https://files.pythonhosted.org/packages/89/f3/09013a167cbde6e6190d46fcd5da89dff09c8be763c3afc5bd897a23a2ac/vanadium-0.0.2.2.tar.gz" } ], "0.0.2.3": [ { "comment_text": "", "digests": { "md5": "331b39f210dfa44b8bb5adedf0dc5805", "sha256": "8fe19ecd33141cb6a6acb00f233c5298402c5f9a47089752f9c7127757d2ca99" }, "downloads": -1, "filename": "vanadium-0.0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "331b39f210dfa44b8bb5adedf0dc5805", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14363, "upload_time": "2018-11-08T20:49:02", "url": "https://files.pythonhosted.org/packages/aa/61/9835a5e8531868ebe7d53b8e91f1c5546825ee7d239bb79b0e79f9d3aebb/vanadium-0.0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b3bad465695ae24f64f5e65287b888e3", "sha256": "fb75998a6d38dfe361936e0080a8ca57ca8404610a251cfe613e0828f5bc1506" }, "downloads": -1, "filename": "vanadium-0.0.2.3.tar.gz", "has_sig": false, "md5_digest": "b3bad465695ae24f64f5e65287b888e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18573, "upload_time": "2018-11-08T20:49:04", "url": "https://files.pythonhosted.org/packages/2a/6f/99a19e5f0fe3050e970ccce37036dcece3d58a3498d89ee0bd7db4c820d1/vanadium-0.0.2.3.tar.gz" } ], "0.0.2.4": [ { "comment_text": "", "digests": { "md5": "9bb1a7e3a3319d9df18c98343fbe3298", "sha256": "c28d8490febfc0016508f83101345295defb77f8fd9fe44daa6ea701ce4d3ead" }, "downloads": -1, "filename": "vanadium-0.0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "9bb1a7e3a3319d9df18c98343fbe3298", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14361, "upload_time": "2018-11-10T08:55:10", "url": "https://files.pythonhosted.org/packages/eb/74/9cbe9e54dc327c98494f916c283385784ccdd5d106f619147a9b54624c8f/vanadium-0.0.2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e139e9eee42b961f3b0d9ae5e2f3c74d", "sha256": "6e1e914962c2240fd64358d4e62f4c33e4007a65ab9cbb3fbf2afbf75805e1c9" }, "downloads": -1, "filename": "vanadium-0.0.2.4.tar.gz", "has_sig": false, "md5_digest": "e139e9eee42b961f3b0d9ae5e2f3c74d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18585, "upload_time": "2018-11-10T08:55:12", "url": "https://files.pythonhosted.org/packages/a3/1b/b67d4698e35eca1723aefc05b764c0d770cd27333ef75c1f68b805fb3395/vanadium-0.0.2.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9bb1a7e3a3319d9df18c98343fbe3298", "sha256": "c28d8490febfc0016508f83101345295defb77f8fd9fe44daa6ea701ce4d3ead" }, "downloads": -1, "filename": "vanadium-0.0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "9bb1a7e3a3319d9df18c98343fbe3298", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14361, "upload_time": "2018-11-10T08:55:10", "url": "https://files.pythonhosted.org/packages/eb/74/9cbe9e54dc327c98494f916c283385784ccdd5d106f619147a9b54624c8f/vanadium-0.0.2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e139e9eee42b961f3b0d9ae5e2f3c74d", "sha256": "6e1e914962c2240fd64358d4e62f4c33e4007a65ab9cbb3fbf2afbf75805e1c9" }, "downloads": -1, "filename": "vanadium-0.0.2.4.tar.gz", "has_sig": false, "md5_digest": "e139e9eee42b961f3b0d9ae5e2f3c74d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18585, "upload_time": "2018-11-10T08:55:12", "url": "https://files.pythonhosted.org/packages/a3/1b/b67d4698e35eca1723aefc05b764c0d770cd27333ef75c1f68b805fb3395/vanadium-0.0.2.4.tar.gz" } ] }