当前位置: 首页>>代码示例>>Python>>正文


Python finders.FileSystemFinder方法代码示例

本文整理汇总了Python中django.contrib.staticfiles.finders.FileSystemFinder方法的典型用法代码示例。如果您正苦于以下问题:Python finders.FileSystemFinder方法的具体用法?Python finders.FileSystemFinder怎么用?Python finders.FileSystemFinder使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在django.contrib.staticfiles.finders的用法示例。


在下文中一共展示了finders.FileSystemFinder方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_implementation

# 需要导入模块: from django.contrib.staticfiles import finders [as 别名]
# 或者: from django.contrib.staticfiles.finders import FileSystemFinder [as 别名]
def get_implementation(action_name):
    implementation_path = FileSystemFinder().find(f"bundles/{action_name}.js")
    with open(implementation_path) as f:
        return f.read() 
开发者ID:mozilla,项目名称:normandy,代码行数:6,代码来源:update_actions.py

示例2: __init__

# 需要导入模块: from django.contrib.staticfiles import finders [as 别名]
# 或者: from django.contrib.staticfiles.finders import FileSystemFinder [as 别名]
def __init__(self, app_names=None, *args, **kwargs):
        # Don't call parent's init method as settings.STATICFILES_DIRS will be loaded
        # by the standard FileSystemFinder already.

        # Instead of initializing the locations and storages now, we'll do so lazily
        # the first time they are needed.
        self._locations = {}
        self._storages = {} 
开发者ID:django-tenants,项目名称:django-tenants,代码行数:10,代码来源:finders.py

示例3: setUp

# 需要导入模块: from django.contrib.staticfiles import finders [as 别名]
# 或者: from django.contrib.staticfiles.finders import FileSystemFinder [as 别名]
def setUp(self):
        super().setUp()
        self.finder = finders.FileSystemFinder()
        test_file_path = os.path.join(TEST_ROOT, 'project', 'documents', 'test', 'file.txt')
        self.find_first = (os.path.join('test', 'file.txt'), test_file_path)
        self.find_all = (os.path.join('test', 'file.txt'), [test_file_path]) 
开发者ID:nesdis,项目名称:djongo,代码行数:8,代码来源:test_finders.py

示例4: test_get_finder

# 需要导入模块: from django.contrib.staticfiles import finders [as 别名]
# 或者: from django.contrib.staticfiles.finders import FileSystemFinder [as 别名]
def test_get_finder(self):
        self.assertIsInstance(finders.get_finder(
            'django.contrib.staticfiles.finders.FileSystemFinder'),
            finders.FileSystemFinder) 
开发者ID:nesdis,项目名称:djongo,代码行数:6,代码来源:test_finders.py

示例5: test_cache

# 需要导入模块: from django.contrib.staticfiles import finders [as 别名]
# 或者: from django.contrib.staticfiles.finders import FileSystemFinder [as 别名]
def test_cache(self):
        finders.get_finder.cache_clear()
        for n in range(10):
            finders.get_finder('django.contrib.staticfiles.finders.FileSystemFinder')
        cache_info = finders.get_finder.cache_info()
        self.assertEqual(cache_info.hits, 9)
        self.assertEqual(cache_info.currsize, 1) 
开发者ID:nesdis,项目名称:djongo,代码行数:9,代码来源:test_finders.py


注:本文中的django.contrib.staticfiles.finders.FileSystemFinder方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。