djurl 0.2.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

djurl 0.2.0

![DjUrl - Django urls](/djurlheader.png) [![Build Status](https://travis-ci.org/venturachrisdev/djurl.svg?branch=master)](https://travis-ci.org/venturachrisdev/djurl)===Simple yet helpful library for writing Django urls by an easy, short an intuitive way.Why should I use DjUrl?---Django routing urls aren't easy to deal with, regular expressions can become a nightmare sometimes. Just imagine dealing with such routes in your `django app`:```pythonfrom django.conf.urls import urlfrom core import BlogView, SinglePostView, SearchResultsView, ArchiveViewurlpatterns = [ # => /blog/ url(r'^blog/You can't use 'macro parameter character #' in math modeYou can't use 'macro parameter character #' in math mode', SinglePostView.as_view(), name="singlepost"), # => /blog/search/sometitle url(r'^blog/search/(?P<search_query>[A-Za-z0-9_-]+)/You can't use 'macro parameter character #' in math modeYou can't use 'macro parameter character #' in math mode', ArchiveView.as_view(), name="archive")]```That's too much work and you lost me in those regex. With **DjUrl** this comes easy, you just need to *express what you want*, **DjUrl will handle the regular expressions for you**:```pythonfrom djurl import urlfrom core import BlogView, SinglePostView, SearchResultsView, ArchiveViewurlpatterns = [ url('/blog', BlogView, name="blog"), url('/blog/:id', SinglePostView, name="singlepost"), url('/blog/search/:query', SearchResultsView, name="search"), url('/blog/archive/:date', ArchiveView, name="archive")]```No regex, just clean paths and param names. You can now pass the regex work to DjUrl and concentrate in the *bussiness logic*. It saves you a lot of time and code. *You don't need to worry about the routes anymore*. **Note you don't need to call `as_view` in your CBV's.** DjUrl does this for you as well.Usage---Now you know what you should use `DjUrl`, It's time to learn how to use it. DjUrl has a list of known/default pattern that you can use in your routes, these are:* `id`: A secuence of characters from 0 to 9. Ej: `1, 12, 454545, 8885500, 8`* `pk`: A primary key, it's like `id` but needed for `Class Based Views`.* `page`: falls in the same category, but you'd use `page` for a better param name.* `slug`: A simple string (alphanumeric characters).* `query`: A search parameter. It allows some special characters that *slug* doesn't. Ex: `hello%20word`, `don%27t_quote-me`* `day`: A number between 01,..., 31.* `month`: A number between 01,...,12.* `year`: A four digits number: `1998, 2017, 2018, 3015, 2020, 1406...`* `date`: An expression with `year-month-day` format: `2017-06-23, 1998-10-20, 1492-10-12`* `filename`: An expression with `*.\w{2,4}` format: `index.js`, `detail.html`, `'my_book.pdf'`, `'dfj358h-g9854-fn84n4.tmp'`* `UUID`: *Universally unique identifier* is a 128-bit number used to identify information in computer systems. Use a format as `xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx`. Ex: `123e4567-e89b-12d3-a456-426655440000`That means, wherever you put `/:id` you can use it in your view as param (named `id`).```pythonurl('post/:pk/comment/:id', myview, name="post_comment")```Your view:```pythondef myview(request, pk, id): # Use `pk` (post's) and `id` (comment's)```But what if I have two or more id's, or two slugs? What if I wanted to use a custom name for my id's? - Ok, you can use custom names if you end it with `_` + the pattern type. - What?...```pythonurl('post/:post_pk/comment/:comment_id', myview, ...)# ...def myview(request, post_pk, comment_id): # `post_pk` is parsed as a :pk and `comment_id` like an :id```Yeah, it sounds good!, but... What if I wanted to use my own patterns? - Easy, any world in the path is of type `:slug` by default, but if you need a custom pattern you can register many as you want:```pythonfrom djurl import url, register_patternregister_pattern('hash', '[a-f0-9]{9}')# parsed as slugurl('/:user', myUserView),# custom patternurl('/:hash', myview),```If you have questions, visit our [FAQ's](FAQ.md) or open an *issue*.Install---If you want to have fun with this library and integrate it to your project, just type in your terminal:```pipinstalldjurl‘‘‘or,clonetherepoandtype:‘‘‘ python setup.py install```Enjoy it!Testing---Clone the repo and run Djurl tests by:```$ python setup.py test```Contributions---If you've found a bug/error or just have questions, feel free to open an **issue**. And, **Pull requests** are welcome as well.Don't forget to add your name to [CONTRIBUTORS.md](CONTRIBUTORS.md)License======= Copyright 2017 Christopher Ventura Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.