Skip to content

Commit 4805aa0

Browse files
committed
Made additional preparations for uploading this to upload this directory to PyPI
1 parent 2cd64bf commit 4805aa0

6 files changed

Lines changed: 248 additions & 51 deletions

File tree

.idea/workspace.xml

Lines changed: 233 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

osu-parser/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
print("This File has no real usage right now.\n"
2+
"Maybe I'll add a script that will accept a songdirectory or a .osu file and do something fance with it.\n"
3+
"If you want to do this yourself, feel to do so in this Github-repo: https://github.com/Awlexus/python-osu-parser")
4+
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
import os
2-
import slidercalc
1+
import codecs
32
import math
3+
import os
44
import re
5-
import codecs
5+
6+
import slidercalc
7+
68

79
# Translated from JavaScript to Python by Awlex
810

File renamed without changes.

slidercalc.py renamed to osu-parser/slidercalc.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
from curve import *
21
import math
32

3+
from curve import *
4+
5+
46
# Translated from JavaScript to Python by Awlex
57

68
def get_end_point(slider_type, slider_length, points):
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import os
2-
import beatmapparser
31
import datetime
2+
import os
43
from random import shuffle
54

5+
import beatmapparser
6+
67
# Created by Awlex
78

89
if __name__ == "__main__":

0 commit comments

Comments
 (0)