last_response
.body
last_request
.path
.url
.session
.cookies
| $ python -c "import xmlrpc.client, re; invalid = [x for x in xmlrpc.client.ServerProxy('https://pypi.python.org/pypi').list_packages() if not re.search(r'^[a-zA-Z0-9_.-]+$', x)]; print('%s total' % len(invalid)); print('\n'.join(invalid))" | |
| 229 total | |
| ☃ | |
| Aaaaaaaaaaaaaaaaaaa aaaaaaaaa aaaaaaasa aaaaaaasa aaaaasaa aaaaaaasa bbbbbbbbbbb | |
| abo's pysync | |
| AdvaS Advanced Search | |
| AL - Application Launcher | |
| Amara XML Toolkit | |
| AnkiDecks site | |
| Aplicacion de ejemplo |
| import win32com.client | |
| catapp = win32com.client.Dispatch("CATIA.Application") | |
| doc=catapp.ActiveDocument.Product | |
| product_count = doc.Products.Count | |
| print "This example lists all Parts and Subproducts of the first level from a CATProduct." | |
| for products in range(product_count): | |
| products = products + 1 | |
| print doc.Products.Item(products).Name, ":" | |
| part_count = doc.Products.Item(products).Products.Count |
| #!/usr/bin/env python3 | |
| import os | |
| import sys | |
| import glob | |
| import shutil | |
| import argparse | |
| from stat import * | |
| def main(args): |
| @echo off | |
| FOR %%f IN (*.inp) DO CALL abq2u.bat %%f |
| ------------------------------------------------------------------------- | |
| USEFUL ONE-LINE SCRIPTS FOR SED (Unix stream editor) Dec. 29, 2005 | |
| Compiled by Eric Pement - pemente[at]northpark[dot]edu version 5.5 | |
| Latest version of this file (in English) is usually at: | |
| http://sed.sourceforge.net/sed1line.txt | |
| http://www.pement.org/sed/sed1line.txt | |
| This file will also available in other languages: | |
| Chinese - http://sed.sourceforge.net/sed1line_zh-CN.html |
| #!/bin/sh | |
| # ============================ | |
| # = Editing Files with 'sed' = | |
| # ============================ | |
| # 'sed' stands for Stream EDitor and is used to edit files automatically. It reads a file line by line, edits each line as directed by a | |
| # list of commands, and spits out the changed line. 'sed' does a lot, much more than I can cover in this tutorial. A fuller tutorial on | |
| # 'sed' will appear in an Advanced Lesson. | |
| # |
| ------------------------------------------------------------------------- | |
| USEFUL ONE-LINE SCRIPTS FOR SED (Unix stream editor) Dec. 29, 2005 | |
| Compiled by Eric Pement - pemente[at]northpark[dot]edu version 5.5 | |
| Latest version of this file (in English) is usually at: | |
| http://sed.sourceforge.net/sed1line.txt | |
| http://www.pement.org/sed/sed1line.txt | |
| This file will also available in other languages: | |
| Chinese - http://sed.sourceforge.net/sed1line_zh-CN.html |
| #!/usr/bin/env python3 | |
| import sys | |
| import array | |
| import math | |
| import random | |
| import os.path | |
| import win32com.client | |
| def get_catia(): |
| package main | |
| import ( | |
| "encoding/json" | |
| "log" | |
| "net/http" | |
| "reflect" | |
| "time" | |
| "github.com/gorilla/context" |