Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8857467
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:35:47+00:00 2026-06-14T14:35:47+00:00

I have a directory and want to exclude a few files like Ant does,

  • 0

I have a directory and want to exclude a few files like Ant does, is this possible with webassets?

Or does if bundle could take a list or tuple, which doesn’t seem to be the case?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T14:35:49+00:00Added an answer on June 14, 2026 at 2:35 pm

    The Bundle constructor signature looks like this (from the source at github):

    def __init__(self, *contents, **options):
    

    That means that the contents can be specified as a series of positional arguments, as in the example in the documentation:

    Bundle('common/inheritance.js', 'portal/js/common.js',
       'portal/js/plot.js', 'portal/js/ticker.js',
       filters='jsmin',
       output='gen/packed.js')
    

    But it also means that you can use Python’s ability unpack argument lists. From that page:

    The reverse situation occurs when the arguments are already in a list or tuple but need to be unpacked for a function call requiring separate positional arguments. For instance, the built-in range() function expects separate start and stop arguments. If they are not available separately, write the function call with the *-operator to unpack the arguments out of a list or tuple

    So you could just easily the write the example above as:

    files = ['common/inheritance.js', 'portal/js/common.js', 
             'portal/js/plot.js', 'portal/js/ticker.js']
    Bundle(*files, filters='jsmin', output='gen/packed.js')
    

    and of course you can filter/slice/dice the list to your hearts content before bundling.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to have one directory for all object files and create Common.pri file
I have a directory D:\AAAA\BBBB\CCCC and using C# I want to move this directory
I have a directory structure of directories and files that I want to render
I have a directory of files on a web server. I want the files
I have an ant target for creating zip like this - <zip destfile=${dist}/myzip.zip> <zipfileset
How do we exclude files which follows some pattern like I want to skip
If I want to call Directory.GetFiles and have it return all files that match
I have directory a that is symlinked somewhere. I want to copy its contents
I have a directory listing for which I want to retrieve the filenames and
I have a directory full of JPEGs. I want to convert every one of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.