{ "info": { "author": "Quentin L\u00c9V\u00caQUE", "author_email": "qleveque@hotmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6" ], "description": "# pyqo\n\nA set of useful command line scripts to navigate through your files and directories, and to get informed quickly.\n\n\n\n## Compatibility\n\nFully compatible with :\n\n\n\n- **Windows** 7 and higher.\n\n- **Linux** distributions running under the X Window System.\n\n\n\nRequires `Python 3`. Tested on `Python 3.6`.\n\n\n\n## Usage\n\nInstall the [PyPI package](https://pypi.python.org/pypi/pyqo/):\n\n```\n\n$ pip install pyqo\n\n```\n\nand you're ready to go.\n\nYou can also clone the repository:\n\n```\n\n$ git clone https://github.com/Whenti/pyqo\n\n```\n\nor [download and extract the zip](https://github.com/Whenti/pyqo/archive/master.zip), and then run the setup:\n\n```\n\n$ python setup.py install\n\n```\n\n\n\nCheck the [commands documentation below](https://github.com/Whenti/pyqo#Commands) to see what is available.\n\n\n\n## Dependencies\n\nSee the [requirements.txt](requirements.txt) file for details.\n\n\n\n## Authors\n\n\n\n* **Quentin L\u00c9V\u00caQUE** - [Whenti](https://github.com/Whenti)\n\n\n\n## License\n\nThis project is proudly licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.\n\n\n\n# Commands\n\nBelow we briefly describe the different commands of `pyqo`. Make sure to use the `--help` option for more details.\n\n\n\n\n\n## Command ``v``\n\n\n\nAssociative table to save small variables. See `v --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ # save the value '+44 1234 123456' under the key 'john_number'\n\n$ v john_number -a '+44 1234 123456'\n\n$ # print John's number\n\n$ v john_number\n\n$ # forget John's number\n\n$ v john_number -d\n\n```\n\n\n\n## Command ``f``\n\n\n\nOpen your favourite files with ease. See `f --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ cd ~\n\n$ # associate permanently the key 'bashrc' to the file '~/.bashrc'\n\n$ f bashrc -a .bashrc\n\n$ cd ~/Documents/games\n\n$ # open the '~/.bashrc' file\n\n$ f bashrc\n\n```\n\n\n\n## Command ``d``\n\n\n\nOpen the file manager to your favourite directories with ease.\n\nThe command `d` shares its data with the command `c`.\n\nSee `d --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ cd ~/Documents/games\n\n$ # open the current working directory, here '~/Documents/games'\n\n$ d\n\n$ # associate permanently the key 'films' to '~/Documents/films'\n\n$ d films -a /home/pyqo/Documents/films\n\n$ # open '~/Documents/films'\n\n$ d films\n\n```\n\n\n\n## Command ``i``\n\n\n\nOpen your favourite websites with ease. See `i --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ # associate permanently the key 'github' to 'http://www.github.com'\n\n$ i github -a http://www.github.com\n\n$ # associate permanently the key 'so' to 'https://stackoverflow.com/'\n\n$ i so -a https://stackoverflow.com/\n\n$ # open the two websites on the existing webbrowser window\n\n$ i github so\n\n$ # open github and performs a google search for 'python' on a new webbrowser window\n\n$ i -n github -g python\n\n```\n\n\n\n## Command ``c``\n\n\n\nSet the working directory of the command line to your favourite directories with ease.\n\nFor a script to alter the current environment, it requires `source`'ing in linux.\n\nWe suggest you to create an alias to avoid doing it manually : `alias c=\"source c\"`.\n\nThe command `c` shares its data with the command `d`.\n\nSee `c --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ cd ~/Documents/games\n\n$ # associate permanently the key 'games' to '~/Documents/games'\n\n$ c games -a .\n\n$ # associate permanently the key 'films' to '~/Documents/films'\n\n$ c films -a /home/pyqo/Documents/films\n\n$ # equivalent to 'cd ~/Documents/films'\n\n$ c films\n\n$ # equivalent to 'cd ~/Documents/games'\n\n$ c games\n\n```\n\n\n\n## Command ``syn``\n\n\n\nSearches for all synonyms of the word given in parameter (french). See `syn --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ # searches for all synonyms of 'gentil'\n\n$ syn gentil\n\n```\n\n\n\n## Command ``say``\n\n\n\nLaunches a synthesized voice that reads the given parameters. See `say --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ say \"Hi, how are you ?\"\n\n```\n\n\n\n## Command ``anto``\n\n\n\nSearches for all antonyms of the word given in parameter (french). See `anto --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ # searches for all antonyms of 'gentil'\n\n$ anto gentil\n\n```\n\n\n\n## Command ``rand``\n\n\n\nDisplay a random integer. See `rand --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ # randomly draw an integer between 5 and 10\n\n$ rand -m 5 -M 10\n\n```\n\n\n\n## Command ``yget``\n\n\n\nDownloads in the current folder the youtube video whose url is passed as a parameter. See `yget --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ # downloads the youtube video '\"Sweet Victory\" Performance'\n\n$ yget https://www.youtube.com/watch?v=k9iYm9PEAHg\n\n```\n\n\n\n## Command ``define``\n\n\n\nSearches for the definition of the word given in parameter (french). See `define --help` for more details.\n\n\n\n### Example\n\n\n\n```\n\n$ # searches for the definition of 'gentil'\n\n$ define gentil\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/Whenti/pyqo", "keywords": "command line scripts", "license": "Apache License", "maintainer": "", "maintainer_email": "", "name": "pyqo", "package_url": "https://pypi.org/project/pyqo/", "platform": "", "project_url": "https://pypi.org/project/pyqo/", "project_urls": { "Homepage": "https://github.com/Whenti/pyqo" }, "release_url": "https://pypi.org/project/pyqo/0.1.1/", "requires_dist": null, "requires_python": "", "summary": "Useful collection of command line scripts.", "version": "0.1.1" }, "last_serial": 5293716, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "728717f1bb119ea5531bb1a226764bf3", "sha256": "bc4b3ccecdb3dd4b18226458f16e6c0b9cd8bc12c44a303f3937f3edaca59812" }, "downloads": -1, "filename": "pyqo-0.0.1-py3.6.egg", "has_sig": false, "md5_digest": "728717f1bb119ea5531bb1a226764bf3", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 41450, "upload_time": "2019-04-17T11:04:20", "url": "https://files.pythonhosted.org/packages/f5/ee/056cf81e888e41f1921b29dd7af68935abe1e56a3fc8b3b69cc06f65f95c/pyqo-0.0.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0f5a222e7a909c539163b84a9a5bde5a", "sha256": "9c113b1a93ef82b2e4b35b7166a70880584ad0c045c7bed221e6ea38688ba528" }, "downloads": -1, "filename": "pyqo-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0f5a222e7a909c539163b84a9a5bde5a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21448, "upload_time": "2019-04-17T11:04:17", "url": "https://files.pythonhosted.org/packages/3b/15/98edfdc2dcb86d620f476757f6088eb06805b1cef881cd70050dc5f02b75/pyqo-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59ae09320954e9ddb17b46658f261e5a", "sha256": "abae8bd18287430c6e1b469a03bd4501fe66d5627fe78fba3826f888b9e32398" }, "downloads": -1, "filename": "pyqo-0.0.1.tar.gz", "has_sig": false, "md5_digest": "59ae09320954e9ddb17b46658f261e5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15538, "upload_time": "2019-04-17T11:04:21", "url": "https://files.pythonhosted.org/packages/03/83/8d04139eb0d937e5e98e42ae065460864ea7b4ca99573b7bbbc634de555c/pyqo-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "1418db4c3bdfec993df5ec4b5d0ce8f9", "sha256": "31989b0e93ce32e1815ba66b8ee1025ffdbe8c95c13cefa746d88da5dfb01b27" }, "downloads": -1, "filename": "pyqo-0.0.2-py3.6.egg", "has_sig": false, "md5_digest": "1418db4c3bdfec993df5ec4b5d0ce8f9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 42980, "upload_time": "2019-04-17T12:44:44", "url": "https://files.pythonhosted.org/packages/3c/cb/d725db671ab72eda76f0562d6e06f74db30248c1c0932f6b88591200d4a8/pyqo-0.0.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "868772de244a51bba3f4b7ac2cf7e696", "sha256": "def85bcbd8ad83818eb5cd3eb1138965a78b9305eebe8168e3afea965fdcd31c" }, "downloads": -1, "filename": "pyqo-0.0.2.tar.gz", "has_sig": false, "md5_digest": "868772de244a51bba3f4b7ac2cf7e696", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15539, "upload_time": "2019-04-17T12:44:45", "url": "https://files.pythonhosted.org/packages/b3/c7/72f464e27129eca0919a3897db1465ed0067a073ac256dfdfcfbb340cf5d/pyqo-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "9986663461331ccc07332a88eb707ce1", "sha256": "06d376af01daf3792de18b15c58c10cbd409ae527b3e5d907595d29169bb505b" }, "downloads": -1, "filename": "pyqo-0.0.3-py3.6.egg", "has_sig": false, "md5_digest": "9986663461331ccc07332a88eb707ce1", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 42982, "upload_time": "2019-04-17T13:02:54", "url": "https://files.pythonhosted.org/packages/f9/96/95f24d3e2aed68a4403d93dcb9b73494c080b34f49f6faf9a0d7bafa4f51/pyqo-0.0.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "e5371bf3085749e7285de9cfe48a71b3", "sha256": "73a9b57d3f341e95f42cc88f07984370f39212ef3fcb579653c33bae78727dd2" }, "downloads": -1, "filename": "pyqo-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e5371bf3085749e7285de9cfe48a71b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22120, "upload_time": "2019-04-17T13:04:52", "url": "https://files.pythonhosted.org/packages/07/da/b69db083aa36c2135db5bc7eff1b413de0168023418a4a2f86b445fa3cd4/pyqo-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79443aa43827ee6ef7e374bea4256b82", "sha256": "105d760baa67e6d63bb54c19a4516f6c78033b2b89c3191a9a23411a622c7b77" }, "downloads": -1, "filename": "pyqo-0.0.3.tar.gz", "has_sig": false, "md5_digest": "79443aa43827ee6ef7e374bea4256b82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15537, "upload_time": "2019-04-17T13:02:56", "url": "https://files.pythonhosted.org/packages/cb/8d/99d77a4f63c072f50471e2ce70b0f3b91ebd53d60f592caf31fb928f496b/pyqo-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "1fa1389477ffb86460ce19eb04cb50c2", "sha256": "00a99a97d19d4eccf0b0bdf67ece394d58be31a693aeb269dff69752909a0e12" }, "downloads": -1, "filename": "pyqo-0.0.4-py3.6.egg", "has_sig": false, "md5_digest": "1fa1389477ffb86460ce19eb04cb50c2", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 42982, "upload_time": "2019-04-17T13:06:50", "url": "https://files.pythonhosted.org/packages/f0/e8/e560b17f17cfa60e04ef854d310f05f3422bd6ae5b09975aa8ae8af92e21/pyqo-0.0.4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "8ff03ea1fdb1db2880ca1646a7a8f1b1", "sha256": "6383ec812c120889588c51786f22a2435671d79350a13b539ed612a4bd9c5a4b" }, "downloads": -1, "filename": "pyqo-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "8ff03ea1fdb1db2880ca1646a7a8f1b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22120, "upload_time": "2019-04-17T13:06:48", "url": "https://files.pythonhosted.org/packages/b0/98/e4c939d7978e471c522eeadf8cfcb9248560351700dd511e5a4904c721a7/pyqo-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90a1c1e60c0541f5a44834e4412c7686", "sha256": "6d61921cbc96d6b9d642405aee820ec263e415ab10058529897a43a2270cf7d2" }, "downloads": -1, "filename": "pyqo-0.0.4.tar.gz", "has_sig": false, "md5_digest": "90a1c1e60c0541f5a44834e4412c7686", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15538, "upload_time": "2019-04-17T13:06:51", "url": "https://files.pythonhosted.org/packages/83/08/7d7847b4bc51b64011997f0ea8ab635d28a95bfb94da23e6e4c9a8b8b8ce/pyqo-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "32e8508532f3e84717f66cfc63ceed5b", "sha256": "bb5cf9551626e15f43b8a1da9c5e420e959644fc635c3a7be1952877646965e3" }, "downloads": -1, "filename": "pyqo-0.0.5-py3.6.egg", "has_sig": false, "md5_digest": "32e8508532f3e84717f66cfc63ceed5b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 41499, "upload_time": "2019-04-17T14:22:59", "url": "https://files.pythonhosted.org/packages/79/ec/32762c1a2a480ad9f8afa405cc233a5b9dfd3089d866f43d72e335ef4dbf/pyqo-0.0.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "ffa9af208793084f3a07b5d1e332957c", "sha256": "078c4f7171c168cfe5c0ce53f83f13cefb8f1d940b7bc8678f0976c1b91d0b3b" }, "downloads": -1, "filename": "pyqo-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "ffa9af208793084f3a07b5d1e332957c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21482, "upload_time": "2019-04-17T13:13:34", "url": "https://files.pythonhosted.org/packages/a9/63/ef9d1b9ac10bdcfcfab8775ad312f6f6572d7bb160e1026a855a678eefc1/pyqo-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "945b257b047c2c042b0ee371b2000d5c", "sha256": "48dd1bff87c9ba24b1f860e296e5c45081ac10dc115fe894946c1ad63d9936fe" }, "downloads": -1, "filename": "pyqo-0.0.5.tar.gz", "has_sig": false, "md5_digest": "945b257b047c2c042b0ee371b2000d5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16351, "upload_time": "2019-04-17T13:13:36", "url": "https://files.pythonhosted.org/packages/42/b6/45f84a46f93e0a6a5415cd6fb7a465d1b06d75b8c2d9ddbe7cdc86e0bb73/pyqo-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "970f58097f3715d88e0021f94a37738a", "sha256": "7e88034fbe2170da7f3b0c049cf26056957b238ee85d13f24b26c6bd65cd444e" }, "downloads": -1, "filename": "pyqo-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "970f58097f3715d88e0021f94a37738a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21503, "upload_time": "2019-04-17T14:22:57", "url": "https://files.pythonhosted.org/packages/4c/6d/64aac9f184420af8bc26b67c553dde06aa70df053613e1a462ba79372a74/pyqo-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b700ba90a8a27801de18e60ec231c938", "sha256": "a9ee7035e391ac8540d754492ec6826984322b3ad8f8cc89693d614dc84aa775" }, "downloads": -1, "filename": "pyqo-0.0.6.tar.gz", "has_sig": false, "md5_digest": "b700ba90a8a27801de18e60ec231c938", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16366, "upload_time": "2019-04-17T14:23:03", "url": "https://files.pythonhosted.org/packages/90/f9/582aec88e5f3b2cf584bb9cbbeaef29dd9ec81ddb0a20b5454bc8dbbde7c/pyqo-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "cf69ee71e23464185e9c6d050a63801a", "sha256": "9854485f2efac7e4c5d24da8b073796699582d84ddd27051023619d7f017728e" }, "downloads": -1, "filename": "pyqo-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "cf69ee71e23464185e9c6d050a63801a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21507, "upload_time": "2019-04-17T14:27:20", "url": "https://files.pythonhosted.org/packages/c0/97/d3c91fe14d397d1552a6583d2e0bc5cf400134f2e0d284471566c8e04cb8/pyqo-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad8de834748e4260c4f5ffdae62001c4", "sha256": "dd372f81d7f782df33cbc4fd95a33a5c251a145160df1f5e1609ca0a224ab729" }, "downloads": -1, "filename": "pyqo-0.0.7.tar.gz", "has_sig": false, "md5_digest": "ad8de834748e4260c4f5ffdae62001c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16359, "upload_time": "2019-04-17T14:27:22", "url": "https://files.pythonhosted.org/packages/75/06/88244fde75022999acd64d466298f26eada20ca3221b2f0896c573cf773d/pyqo-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "33f19b8f27d4ec09bf0dc44f9fb2eee2", "sha256": "46275198154bc600a1c71ade30df12a50cb5ec2c423d7ff11564bb58b12d644d" }, "downloads": -1, "filename": "pyqo-0.0.8-py3.6.egg", "has_sig": false, "md5_digest": "33f19b8f27d4ec09bf0dc44f9fb2eee2", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 43584, "upload_time": "2019-05-20T18:18:46", "url": "https://files.pythonhosted.org/packages/42/f2/58472e5664b7c3f09f9b9a7518ee681a4423bb9ae6a6a263ea0f28ec0861/pyqo-0.0.8-py3.6.egg" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "a66ec4dbb1c3e6a2b5b5516bfc42c4a3", "sha256": "2acf6453c996f2b0985c697d31f3525528512628f6b26f481fa4bc9ac07b5684" }, "downloads": -1, "filename": "pyqo-0.1.0.tar.gz", "has_sig": false, "md5_digest": "a66ec4dbb1c3e6a2b5b5516bfc42c4a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16517, "upload_time": "2019-05-20T18:18:47", "url": "https://files.pythonhosted.org/packages/ff/ec/f836a4f8f46e472cbbbfec2e180a0670e11d04fcc3fa627bd4dac6f83574/pyqo-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "1c326e0d6cc8c11e56781942f5794acc", "sha256": "24c8173ee6c83c010b5ef8bf76fb61840c437fbd61f8f7f7aa5dc6a797318363" }, "downloads": -1, "filename": "pyqo-0.1.1.tar.gz", "has_sig": false, "md5_digest": "1c326e0d6cc8c11e56781942f5794acc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16528, "upload_time": "2019-05-20T18:38:39", "url": "https://files.pythonhosted.org/packages/3a/69/7e4995473b1163166a1ee3011086c7c72e261067d2862a484ca2802c913b/pyqo-0.1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1c326e0d6cc8c11e56781942f5794acc", "sha256": "24c8173ee6c83c010b5ef8bf76fb61840c437fbd61f8f7f7aa5dc6a797318363" }, "downloads": -1, "filename": "pyqo-0.1.1.tar.gz", "has_sig": false, "md5_digest": "1c326e0d6cc8c11e56781942f5794acc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16528, "upload_time": "2019-05-20T18:38:39", "url": "https://files.pythonhosted.org/packages/3a/69/7e4995473b1163166a1ee3011086c7c72e261067d2862a484ca2802c913b/pyqo-0.1.1.tar.gz" } ] }