File: static.py Project: GunioRobot/gcli def test(): from wsgiref.validate import validator app = Cling(getcwd()) try: print "Serving " + getcwd() + " to http://localhost:9999" make_server('localhost', 9999, validator(app)).serve_forever() except KeyboardInterrupt, ki: pri...
Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches...
Instead of summarizing all changes here, this library seeks to move completely automated changelogs based on the pull request tags to facilitate faster release cycles. Until that happens, the full list of changes is listed below as usual.
Using random.sample will provide you with a list of the total number of items (characters in this case) from the given object (a string object here) based on the number you want (random.sample(<string>, <# of random parts>). >>> random.sample(letters, 5) >>> ['j', 'e', 'u...
Search or jump to... Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your...
Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your resul...
Clockify Clockify's REST-based API can be used to push/pull data to/from it & integrate it with other systems apiKey Yes Unknown CloudConvert Online file converter for audio, video, document, ebook, archive, image, spreadsheet, presentation apiKey Yes Unknown Cloudmersive Document and Data Conve...
:param list path_ids: List of FilesystemLocation ids to remove. """ sg_batch_data = [] for pid in path_ids: req = {"request_type": "delete", "entity_type": SHOTGUN_ENTITY, "entity_id": pid} sg_batch_data.append(req) try: tk.shotgun.batch(sg_batch_data) ex...