Python library for matching URLs.
Project description
Use urlmatch to verify that URLs conform to certain patterns. The library and match patterns are based heavily on the Google Chrome Extension match patterns.
Usage
from urlmatch import urlmatch
match_pattern = 'http://*.example.com/*'
urlmatch(match_pattern, 'http://subdomain.example.com/') # True
urlmatch(match_pattern, 'http://sub.subdomain.example.com/') # True
urlmatch(match_pattern, 'https://example.com/') # False
urlmatch(match_pattern, 'http://bad.com/') # False
Options
There are a few options that affect how the match patterns work.
path_required (default is True) - a bool which dictates whether the match pattern must have path
fuzzy_scheme (default is False) - a bool which dictates whether the scheme should be matched “fuzzily.” if this is true, then any valid scheme (*, http, https) will match both http and https
http_auth_allowed (default is True) - bool which dictates whether URLs with HTTP Authentication in the URL should be allowed or not
Match pattern syntax
The basic match pattern syntax is simple:
<url-pattern> := <scheme>://<host><path> <scheme> := '*' | 'http' | 'https' <host> := '*' | '*.' <any char except '/' and '*'>+ <path> := '/' <any chars>
Examples
http://*/* - matches any URL that uses the http scheme
https://*/* - matches any URL that uses the https scheme
http://*/test* - matches any URL that uses the http scheme and has a path that starts with test
*://test.com/* - matches any url with the domain test.com
http://*.test.com - matches test.com and any subdomain of test.com
http://test.com/foo/bar.html - matches the exact URL
Bugs
If you find an issue, let me know in the issues section!
Contributing
From the Rubinius contribution page:
Writing code and participating should be fun, not an exercise in perseverance. Stringent commit polices, for whatever their other qualities may bring, also mean longer turnaround times.
Submit a patch and once it’s accepted, you’ll get commit access to the repository. Feel free to fork the repository and send a pull request, once it’s merged in you’ll get added. If not, feel free to bug jessepollak about it.
How To Contribute
Clone: git@github.com:jessepollak/urlmatch.git
Create a topic branch: git checkout -b awesome_feature
Commit away (and add unit tests for any code your write).
Keep up to date: git fetch && git rebase origin/master.
Run the tests: python setup.py test
Once you’re ready:
Fork the project on GitHub
Add your repository as a remote: git remote add your_remote your_repo
Push up your branch: git push your_remote awesome_feature
Create a Pull Request for the topic branch, asking for review.
Once it’s accepted:
If you want access to the core repository feel free to ask! Then you can change origin to point to the Read+Write URL:
git remote set-url origin git@github.com:jessepollak/urlmatch.git
Otherwise, you can continue to hack away in your own fork.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file urlmatch-1.0.1.tar.gz
.
File metadata
- Download URL: urlmatch-1.0.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f0c3529f03f3b31efc4547ce44e6512ff5714bf61f7f6ac355b1636ad16eb2d |
|
MD5 | a7096f0de153721604ac9ba63e478ce5 |
|
BLAKE2b-256 | 844e654a4b6b335b339da7208ca1e54a34d1180e94c09b11b63dd76ee731b378 |
File details
Details for the file urlmatch-1.0.1.macosx-10.12-x86_64.tar.gz
.
File metadata
- Download URL: urlmatch-1.0.1.macosx-10.12-x86_64.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21c88712cfaccf22270d2dd9957fccf9afb9fc6340fb34d169f93f6305ee8938 |
|
MD5 | 8aed6b154f835ef73012dd7ca5e48041 |
|
BLAKE2b-256 | 7a1a56d2350573d36acd826c4a73300375e49b4d2f549bce406d314c19682f75 |