About 22,100,000 results
Open links in new tab
  1. How to import a .cer certificate into a java keystore?

    A workaround I have found is to import the certificate in IE and export it as a .pfx file. This file can be loaded as a keystore and can be used to authenticate with the webservice. However I …

  2. python - Importing files from different folder - Stack Overflow

    I have this folder structure: application ├── app │ └── folder │ └── file.py └── app2 └── some_folder └── some_file.py How can I import a function from file.py, from within som...

  3. Import CSV file into SQL Server - Stack Overflow

    251 I am looking for help to import a .csv file into SQL Server using BULK INSERT. Issues: The CSV file data may have , (comma) within fields (Ex: description), so how can I make sure the …

  4. How do I get the current time in Python? - Stack Overflow

    import time Unix Epoch Time This is the format you should get timestamps in for saving in databases. It is a simple floating-point number that can be converted to an integer. It is also …

  5. How do I import other Python files? - Stack Overflow

    How do I import files in Python? I want to import: a file (e.g. file.py) a folder a file dynamically at runtime, based on user input one specific part of a file (e.g. a single function)

  6. Import-Module : The specified module 'activedirectory' was not …

    Import-Module : The specified module 'activedirectory' was not loaded because no valid module file was found in any module directory Asked 12 years, 2 months ago Modified 11 days ago …

  7. ImportError: numpy.core.multiarray failed to import

    I had the same "numpy.core.multiarray failed to import" issue, but it was because I had 1.6 installed for the version of Python I was using, even though I kept installing 1.8 and assumed it …

  8. Module not found during import in Jupyter Notebook

    import MyPackage as mp I will get ModuleNotFoundError: No module named 'module1' But the import works fine if I execute the script outside a notebook: if I create test.py in the same …

  9. How can I import an Excel file into SQL Server? - Stack Overflow

    The SQL Import wizard is frustrating and you can't save the config unless you have SIS. The OPENROWSET approach looked useful but is a dependency & security nightmare. I have …

  10. What does the @ mean inside an import path? - Stack Overflow

    import Vue from 'vue' import Router from 'vue-router' import Hello from '@/components/Hello' // <- this one is what my question is about Vue.use(Router) export default new Router({ routes: [ { …