Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(119207) | Call(0) | Derive(0) | Import(119207)
Support for regular expressions (RE). This module provides regular expression matching operations similar to those found in Perl. It supports both 8-bit and Unicode strings; both the pattern and the strings being processed can contain null bytes and characters outside the US ASCII range. Regular expressions can contain both special and ordinary characters. Most ordinary characters, like "A", "a", or "0", are the simplest regular expressions; they simply match themselves. You can(more...)
src/l/a/landline-server-HEAD/co.whatisuplabs.ldln/lib/play/samples-and-tests/i-am-a-developer/mechanize/_beautifulsoup.py landline-server(Download)
from sgmllib import SGMLParser, SGMLParseError import types import re import sgmllib
src/l/a/landline-server-HEAD/co.whatisuplabs.ldln/lib/play/samples-and-tests/i-am-a-developer/mechanize/_auth.py landline-server(Download)
import posixpath import random import re import time import urlparse
src/l/a/landline-server-HEAD/co.whatisuplabs.ldln/lib/play/samples-and-tests/i-am-a-developer/mechanize/ClientForm.py landline-server(Download)
_logger.addHandler(handler) import sys, urllib, urllib2, types, mimetools, copy, urlparse, \ htmlentitydefs, re, random from cStringIO import StringIO
src/k/i/kitsune-HEAD/vendor/packages/pyparsing/examples/sparser.py kitsune(Download)
import os import getopt import re import gzip
src/k/i/kitsune-HEAD/vendor/packages/pyparsing/examples/SimpleCalc.py kitsune(Download)
# Uncomment the line below for readline support on interactive terminal # import readline import re from pyparsing import Word, alphas, ParseException, Literal, CaselessLiteral \ , Combine, Optional, nums, Or, Forward, ZeroOrMore, StringEnd, alphanums
src/k/i/kitsune-HEAD/vendor/packages/pyparsing/examples/LAparser.py kitsune(Download)
""" import re,os,sys from pyparsing import Word, alphas, ParseException, Literal, CaselessLiteral \ , Combine, Optional, nums, Or, Forward, OneOrMore, ZeroOrMore, \
src/o/c/ocf-HEAD/expedient/doc/plugins/samples/plugin/sample_resource/utils/validators.py ocf(Download)
from django.core.exceptions import ValidationError from django.core.validators import RegexValidator import re RESOURCE_SR_RE = "^([0-9a-zA-Z\-]){1,64}$"
src/o/c/ocf-HEAD/expedient/doc/plugins/samples/plugin/sample_resource/models/__init__.py ocf(Download)
import os import re import types PACKAGE = 'sample_resource.models'
src/k/u/kuma-lib-HEAD/packages/Werkzeug/examples/webpylike/webpylike.py kuma-lib(Download)
:license: BSD. """ import re from werkzeug import BaseRequest, BaseResponse from werkzeug.exceptions import HTTPException, MethodNotAllowed, \
src/k/u/kuma-lib-HEAD/packages/Werkzeug/examples/plnt/utils.py kuma-lib(Download)
:license: BSD. """ import re from os import path from jinja import Environment, FileSystemLoader
Previous 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 Next