Skip to content

Commit f369903

Browse files
author
Zhen
committed
Update license header
1 parent 70d0e37 commit f369903

File tree

15 files changed

+54
-34
lines changed

15 files changed

+54
-34
lines changed

example.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
#!/usr/bin/env python
2+
# -*- encoding: utf-8 -*-
3+
4+
# Copyright (c) 2002-2015 "Neo Technology,"
5+
# Network Engine for Objects in Lund AB [http://neotechnology.com]
6+
#
7+
# This file is part of Neo4j.
8+
#
9+
# Licensed under the Apache License, Version 2.0 (the "License");
10+
# you may not use this file except in compliance with the License.
11+
# You may obtain a copy of the License at
12+
#
13+
# http://www.apache.org/licenses/LICENSE-2.0
14+
#
15+
# Unless required by applicable law or agreed to in writing, software
16+
# distributed under the License is distributed on an "AS IS" BASIS,
17+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
# See the License for the specific language governing permissions and
19+
# limitations under the License.
20+
121
from neo4j import GraphDatabase
222

323
driver = GraphDatabase.driver("bolt://localhost")

neo4j/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
2+
# -*- encoding: utf-8 -*-
33

44
# Copyright (c) 2002-2015 "Neo Technology,"
55
# Network Engine for Objects in Lund AB [http://neotechnology.com]

neo4j/__main__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
2+
# -*- encoding: utf-8 -*-
43

54
# Copyright (c) 2002-2015 "Neo Technology,"
65
# Network Engine for Objects in Lund AB [http://neotechnology.com]

neo4j/bench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
2+
# -*- encoding: utf-8 -*-
33

44
# Copyright (c) 2002-2015 "Neo Technology,"
55
# Network Engine for Objects in Lund AB [http://neotechnology.com]

neo4j/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
2+
# -*- encoding: utf-8 -*-
33

44
# Copyright (c) 2002-2015 "Neo Technology,"
55
# Network Engine for Objects in Lund AB [http://neotechnology.com]

neo4j/connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# -*- coding: utf-8 -*-
1+
#!/usr/bin/env python
2+
# -*- encoding: utf-8 -*-
23

34
# Copyright (c) 2002-2015 "Neo Technology,"
45
# Network Engine for Objects in Lund AB [http://neotechnology.com]

neo4j/exceptions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# -*- coding: utf-8 -*-
1+
#!/usr/bin/env python
2+
# -*- encoding: utf-8 -*-
23

34
# Copyright (c) 2002-2015 "Neo Technology,"
45
# Network Engine for Objects in Lund AB [http://neotechnology.com]

neo4j/packstream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
2+
# -*- encoding: utf-8 -*-
33

44
# Copyright (c) 2002-2015 "Neo Technology,"
55
# Network Engine for Objects in Lund AB [http://neotechnology.com]

neo4j/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
2+
# -*- encoding: utf-8 -*-
33

44
# Copyright (c) 2002-2015 "Neo Technology,"
55
# Network Engine for Objects in Lund AB [http://neotechnology.com]

neo4j/typesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
2+
# -*- encoding: utf-8 -*-
33

44
# Copyright (c) 2002-2015 "Neo Technology,"
55
# Network Engine for Objects in Lund AB [http://neotechnology.com]

0 commit comments

Comments
 (0)