About 95 results
Open links in new tab
  1. Download a .zip file from the command line - Stack Overflow

    Feb 14, 2014 · To clarify exactly what I'm trying to do: The Chicago Fed website lets you enter a year and quarter, and you click "Download data file" and it gives you a .zip file of the corresponding data. I …

  2. What is the use of Enumerable.Zip extension method in Linq?

    Feb 25, 2011 · The Zip method allows you to "merge" two unrelated sequences, using a merging function provider by you, the caller. The example on MSDN is actually pretty good at demonstrating …

  3. How to list the files in a zip in powershell? - Stack Overflow

    Jan 8, 2013 · 32 I am new to powershell and looking to list all the files, contained in zip files in a directory. I don't want to use any third-party tool.

  4. How to install a package from a download zip file - Stack Overflow

    The zip you downloaded from github by clicking "download as zip" is a pack of that repo, which is not the standard R source package format like CRAN hosted. Thus the methods that work with CRAN …

  5. Zip command for excluding directories and files - Stack Overflow

    Unix zip directory but excluded specific subdirectories, how to exclude directories and file zipping a directory?, How to exclude a directory when zipping files, etc.

  6. bash - zip error - Nothing to do - Stack Overflow

    Oct 12, 2016 · To make it clearer than Alex's answer, to create a zip file, zip takes in a minimum of 2 arguments. How do I know, because when you use man zip, you get its man page, part of which is:

  7. Difference between zip(list) and zip(*list) - Stack Overflow

    Mar 19, 2015 · The zip function takes n lists and creates n-tuple pairs from each element from both lists: zip ( [iterable, ...]) This function returns a list of tuples, where the i-th tuple contains the i-th element …

  8. How to create a zip archive of a directory? - Stack Overflow

    Dec 6, 2009 · 69 How can I create a zip archive of a directory structure in Python? In a Python script In Python 2.7+, shutil has a make_archive function.

  9. What is the zip code for Harare? - Answers

    Oct 17, 2024 · What is the zip code for Zimbabwe? Harare is a city in Zimbabwe. Zip codes are a US postal identifier.

  10. Zip lists in Python - Stack Overflow

    I am trying to learn how to "zip" lists. To this end, I have a program, where at a particular point, I do the following: x1, x2, x3 = stuff.calculations(withdataa) This gives me three lists, x1, x...