Update contributors.json with recent contributors

This commit is contained in:
Bruno Alla 2020-08-10 18:06:11 +01:00
parent bd381ea0bf
commit 100a91eec3
2 changed files with 57 additions and 31 deletions

View File

@ -68,6 +68,11 @@
"github_login": "a7p", "github_login": "a7p",
"twitter_username": "" "twitter_username": ""
}, },
{
"name": "Aadith PM",
"github_login": "aadithpm",
"twitter_username": ""
},
{ {
"name": "Aaron Eikenberry", "name": "Aaron Eikenberry",
"github_login": "aeikenberry", "github_login": "aeikenberry",
@ -173,6 +178,11 @@
"github_login": "areski", "github_login": "areski",
"twitter_username": "" "twitter_username": ""
}, },
{
"name": "AsheKR",
"github_login": "ashekr",
"twitter_username": ""
},
{ {
"name": "Ashley Camba", "name": "Ashley Camba",
"github_login": "", "github_login": "",
@ -653,6 +663,11 @@
"github_login": "glasslion", "github_login": "glasslion",
"twitter_username": "" "twitter_username": ""
}, },
{
"name": "Leon Kim",
"github_login": "PilhwanKim",
"twitter_username": ""
},
{ {
"name": "Leonardo Jimenez", "name": "Leonardo Jimenez",
"github_login": "xpostudio4", "github_login": "xpostudio4",
@ -733,6 +748,11 @@
"github_login": "mjsisley", "github_login": "mjsisley",
"twitter_username": "" "twitter_username": ""
}, },
{
"name": "Matthias Sieber",
"github_login": "manonthemat",
"twitter_username": "MatzeOne"
},
{ {
"name": "Meghan Heintz", "name": "Meghan Heintz",
"github_login": "dot2dotseurat", "github_login": "dot2dotseurat",
@ -828,6 +848,11 @@
"github_login": "rm--", "github_login": "rm--",
"twitter_username": "" "twitter_username": ""
}, },
{
"name": "Richard Hajdu",
"github_login": "Tusky",
"twitter_username": ""
},
{ {
"name": "Roman Afanaskin", "name": "Roman Afanaskin",
"github_login": "siauPatrick", "github_login": "siauPatrick",
@ -988,4 +1013,4 @@
"github_login": "mapx", "github_login": "mapx",
"twitter_username": "" "twitter_username": ""
} }
] ]

View File

@ -7,61 +7,60 @@ ROOT = CURRENT_FILE.parents[1]
def main(): def main():
input_file_path = ROOT / "CONTRIBUTORS.rst" input_file_path = ROOT / "CONTRIBUTORS.rst"
with input_file_path.open() as ifd: content = input_file_path.read_text()
content = ifd.read()
table_separator = ( table_separator = (
"============================= ========================== ==================" "========================== ============================ =============="
) )
table_content = content.split(table_separator)[2] table_content = content.split(table_separator)[2]
profiles_list = [ profiles_list = [
{
"name": "Audrey Roy Greenfeld",
"github_login": "audreyr",
"twitter_username": "audreyr",
"is_core": True,
},
{
"name": "Bruno Alla",
"github_login": "browniebroke",
"twitter_username": "_BrunoAlla",
"is_core": True,
},
{
"name": "Burhan Khalid",
"github_login": "burhan",
"twitter_username": "burhan",
"is_core": True,
},
{ {
"name": "Daniel Roy Greenfeld", "name": "Daniel Roy Greenfeld",
"github_login": "pydanny", "github_login": "pydanny",
"twitter_username": "pydanny", "twitter_username": "pydanny",
"is_core": True, "is_core": True,
}, },
{
"name": "Audrey Roy Greenfeld",
"github_login": "audreyr",
"twitter_username": "audreyr",
"is_core": True,
},
{ {
"name": "Fábio C. Barrionuevo da Luz", "name": "Fábio C. Barrionuevo da Luz",
"github_login": "luzfcb", "github_login": "luzfcb",
"twitter_username": "luzfcb", "twitter_username": "luzfcb",
"is_core": True, "is_core": True,
}, },
{
"name": "Jannis Gebauer",
"github_login": "jayfk",
"twitter_username": "",
"is_core": True,
},
{ {
"name": "Saurabh Kumar", "name": "Saurabh Kumar",
"github_login": "theskumar", "github_login": "theskumar",
"twitter_username": "_theskumar", "twitter_username": "_theskumar",
"is_core": True, "is_core": True,
}, },
{
"name": "Jannis Gebauer",
"github_login": "jayfk",
"twitter_username": "",
"is_core": True,
},
{
"name": "Burhan Khalid",
"github_login": "burhan",
"twitter_username": "burhan",
"is_core": True,
},
{ {
"name": "Shupeyko Nikita", "name": "Shupeyko Nikita",
"github_login": "webyneter", "github_login": "webyneter",
"twitter_username": "", "twitter_username": "webyneter",
"is_core": True,
},
{
"name": "Bruno Alla",
"github_login": "browniebroke",
"twitter_username": "_BrunoAlla",
"is_core": True, "is_core": True,
}, },
{ {
@ -94,8 +93,10 @@ def main():
profiles_list.append(profile) profiles_list.append(profile)
output_file_path = ROOT / ".github" / "contributors.json" output_file_path = ROOT / ".github" / "contributors.json"
with output_file_path.open("w") as ofd: output_file_path.write_text(
json.dump(profiles_list, ofd, indent=2, ensure_ascii=False) json.dumps(profiles_list, indent=2, ensure_ascii=False)
)
if __name__ == "__main__": if __name__ == "__main__":