Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Django Basics, URLS, Regular Expressions etc

In the Django Basics course Kenneth states the following in regards to routes, urls, etc:

"Some frameworks create implicit URL mappings. You make a function in a certain file, you can get to that function through a URL that's usually made up of the file name followed by the function name. Some frameworks let you assign a route or URL to a view when you create the function. Django doesn't do either of these things though."

What are examples of frameworks that lets you make use of the function in a certain file that is accessed by a url with the file name followed by the function name?

I know that Express is an example of a framework that has the pattern where you assign a route/url to a function in a single place in your code.

Hopefully that question makes sense, if that was a little complex I'm basically asking which frameworks match that way of doing things?

Cheers