Skip to content

Commit 0be43a9

Browse files
author
Marcin Kardas
committed
Add copyright notice
1 parent 089501c commit 0be43a9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+145
-3
lines changed

axcell/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+

axcell/config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
13
import logging
24
from pathlib import Path
35

axcell/data/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
13
import logging
24
from .. import config # to get logging init
35

@@ -7,4 +9,4 @@
79
from db import *
810
except:
911
logger.info("Unable to intialise django falling back to json data")
10-
from json import *
12+
from json import *

axcell/data/db.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
raise NotImplementedError()
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
3+
raise NotImplementedError()

axcell/data/doc_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
13
import re
24
from bs4 import BeautifulSoup, Comment, Tag, NavigableString
35
import codecs

axcell/data/elastic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
13
from bs4 import BeautifulSoup
24
import pandas as pd
35
import re

axcell/data/json.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
13
#%%
24
import json
35
import re

axcell/data/paper_collection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
13
from .elastic import Paper as PaperText, Fragments
24
from .table import Table, read_tables
35
from .json import load_gql_dump

axcell/data/references.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
13
# Open source tools lfoppiano/grobid
24
from collections import OrderedDict, Counter, Iterable, defaultdict
35
from dataclasses import dataclass, field

axcell/data/structure.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
2+
13
import re
24
import pandas as pd
35
from collections import namedtuple

0 commit comments

Comments
 (0)