This website works better with JavaScript.
Home
Help
Register
Sign In
nilm
/
nilmtools
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
45
Wiki
Activity
Browse Source
Fix #! at top of shell scripts for py3 and venvs
tags/nilmtools-2.0.0
Jim Paris
2 years ago
parent
752d326b77
commit
78dc640444
15 changed files
with
15 additions
and
15 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
nilmtools/cleanup.py
+1
-1
nilmtools/copy_one.py
+1
-1
nilmtools/copy_wildcard.py
+1
-1
nilmtools/decimate.py
+1
-1
nilmtools/decimate_auto.py
+1
-1
nilmtools/filter.py
+1
-1
nilmtools/insert.py
+1
-1
nilmtools/math.py
+1
-1
nilmtools/median.py
+1
-1
nilmtools/pipewatch.py
+1
-1
nilmtools/prep.py
+1
-1
nilmtools/sinefit.py
+1
-1
nilmtools/trainola.py
+1
-1
setup.py
+1
-1
tests/runtests.py
+ 1
- 1
nilmtools/cleanup.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
from nilmdb.utils.printf import *
from nilmdb.utils.time import (parse_time, timestamp_to_human,
+ 1
- 1
nilmtools/copy_one.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
# This is called copy_one instead of copy to avoid name conflicts with
# the Python standard library.
+ 1
- 1
nilmtools/copy_wildcard.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
# Copy streams between NilmDB servers with wildcards
+ 1
- 1
nilmtools/decimate.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
import nilmtools.filter
import nilmdb.client
+ 1
- 1
nilmtools/decimate_auto.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
import os
import nilmtools.filter
+ 1
- 1
nilmtools/filter.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
import nilmdb.client
from nilmdb.client import Client
+ 1
- 1
nilmtools/insert.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
import nilmdb.client
from nilmdb.utils.printf import *
+ 1
- 1
nilmtools/math.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
# Miscellaenous useful mathematical functions
from nilmdb.utils.printf import *
+ 1
- 1
nilmtools/median.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
import nilmtools.filter, scipy.signal
def main(argv = None):
+ 1
- 1
nilmtools/pipewatch.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
import nilmdb.client
from nilmdb.utils.printf import *
+ 1
- 1
nilmtools/prep.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
# Spectral envelope preprocessor.
# Requires two streams as input: the original raw data, and sinefit data.
+ 1
- 1
nilmtools/sinefit.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
# Sine wave fitting.
from nilmdb.utils.printf import *
+ 1
- 1
nilmtools/trainola.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
from nilmdb.utils.printf import *
import nilmdb.client
+ 1
- 1
setup.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
# To release a new version, tag it:
# git tag -a nilmtools-1.1 -m "Version 1.1"
+ 1
- 1
tests/runtests.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
import nose
import os
Write
Preview
Loading…
Cancel
Save