Skip to content
Open

Aisi #10316

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
624a073
Add files via upload
Molis12 Jul 31, 2022
f028a5f
Add files via upload
Molis12 Aug 6, 2022
e9191e4
Add files via upload
Molis12 Aug 6, 2022
de66418
Add files via upload
Molis12 Aug 6, 2022
57e2113
Add files via upload
Molis12 Aug 6, 2022
73de89b
Add files via upload
Molis12 Aug 6, 2022
3a88e41
Add files via upload
Molis12 Aug 6, 2022
5aee186
Add files via upload
Molis12 Aug 7, 2022
4eda47e
Add files via upload
Molis12 Aug 7, 2022
cd22d02
Add files via upload
Molis12 Sep 24, 2022
317e8d7
Add files via upload
Molis12 Jan 8, 2023
feb9cf3
Add files via upload
Molis12 Jan 8, 2023
91d3f77
Add files via upload
Molis12 Dec 8, 2024
11f4e8d
Add files via upload
Molis12 Nov 30, 2025
dd279f4
Add files via upload
Molis12 Nov 30, 2025
2998ec3
Add files via upload
Molis12 Nov 30, 2025
e020cb7
Create ai
Molis12 Dec 4, 2025
22ae3fe
Create ai ai
Molis12 Dec 4, 2025
84c2536
Create aiai
Molis12 Dec 4, 2025
6c334db
Merge pull request #1 from Molis12/Molis12-patch-1
Molis12 Dec 4, 2025
9e3ddf0
Add files via upload
Molis12 Dec 4, 2025
c42be53
Add files via upload
Molis12 Dec 7, 2025
ae5f68b
Add files via upload
Molis12 Dec 7, 2025
5b7bf40
Add files via upload
Molis12 Dec 7, 2025
11913bf
Add files via upload
Molis12 Dec 7, 2025
3a249bf
Add files via upload
Molis12 Dec 7, 2025
5094608
Create Jjjjjjai
Molis12 Dec 7, 2025
db31c7c
Add files via upload
Molis12 Dec 13, 2025
d05216f
Add files via upload
Molis12 Dec 13, 2025
a2d8646
Add files via upload
Molis12 Dec 13, 2025
89572b5
ci: add Azure Static Web Apps workflow file
Molis12 Dec 13, 2025
c31ec7d
Add files via upload
Molis12 Dec 13, 2025
90f637d
Add files via upload
Molis12 Dec 13, 2025
86eb967
Add files via upload
Molis12 Dec 13, 2025
5cf3d18
Add files via upload
Molis12 Dec 13, 2025
047ff3f
Add files via upload
Molis12 Dec 13, 2025
8b6a1c6
Add files via upload
Molis12 Dec 13, 2025
783bbf7
Add files via upload
Molis12 Dec 14, 2025
a882705
Add files via upload
Molis12 Dec 16, 2025
8092c8c
Add files via upload
Molis12 Dec 16, 2025
11b918a
Add files via upload
Molis12 Dec 22, 2025
d2153f8
Add files via upload
Molis12 Dec 22, 2025
e91a7d7
Add files via upload
Molis12 Dec 22, 2025
91457c6
Add files via upload
Molis12 Dec 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Azure Static Web Apps CI/CD

on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- master

jobs:
build_and_deploy_job:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- uses: actions/checkout@v3
with:
submodules: true
lfs: false
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_HAPPY_GRASS_032A9511E }}
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
action: "upload"
###### Repository/Build Configurations - These values can be configured to match your app requirements. ######
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "/" # App source code path
api_location: "" # Api source code path - optional
output_location: "" # Built app content directory - optional
###### End of Repository/Build Configurations ######

close_pull_request_job:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
name: Close Pull Request Job
steps:
- name: Close Pull Request
id: closepullrequest
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_HAPPY_GRASS_032A9511E }}
action: "close"
127 changes: 127 additions & 0 deletions 1setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
# Setup script for megaman: scalable manifold learning
# LICENSE: Simplified BSD https://github.com/mmp2/megaman/blob/master/LICENSE

import io
import os
import re
import sys
import subprocess

PY2 = sys.version_info[0] == 2
PY3 = not PY2
if PY3:
import importlib.machinery


def read(path, encoding='utf-8'):
path = os.path.join(os.path.dirname(__file__), path)
with io.open(path, encoding=encoding) as fp:
return fp.read()


def version(path):
"""Obtain the packge version from a python file e.g. pkg/__init__.py

See <https://packaging.python.org/en/latest/single_source_version.html>.
"""
version_file = read(path)
version_match = re.search(r"""^__version__ = ['"]([^'"]*)['"]""",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")


def generate_cython():
cwd = os.path.abspath(os.path.dirname(__file__))
print("Cythonizing sources")
p = subprocess.call([sys.executable,
os.path.join(cwd, 'tools', 'cythonize.py'),
'megaman'],
cwd=cwd)
if p != 0:
raise RuntimeError("Running cythonize failed!")


def configuration(parent_package='',top_path=None):
from numpy.distutils.misc_util import Configuration
config = Configuration(None, parent_package, top_path)
config.set_options(ignore_setup_xxx_py=True,
assume_default_configuration=True,
delegate_options_to_subpackages=True,
quiet=True)

config.add_subpackage('megaman')

return config

DESCRIPTION = "megaman: Manifold Learning for Millions of Points"
LONG_DESCRIPTION = """
megaman: Manifold Learning for Millions of Points
=================================================

This repository contains a scalable implementation of several manifold learning
algorithms, making use of FLANN for fast approximate nearest neighbors and
PyAMG, LOBPCG, ARPACK, and other routines for fast matrix decompositions.

For more information, visit https://github.com/mmp2/megaman
"""
NAME = "megaman"
AUTHOR = "Marina Meila"
AUTHOR_EMAIL = "[email protected]_this.edu"
URL = 'https://github.com/mmp2/megaman'
DOWNLOAD_URL = 'https://github.com/mmp2/megaman'
LICENSE = 'BSD 3'

VERSION = version('megaman/__init__.py')


def setup_package():
from numpy.distutils.core import setup

old_path = os.getcwd()
local_path = os.path.dirname(os.path.abspath(sys.argv[0]))
src_path = local_path

os.chdir(local_path)
sys.path.insert(0, local_path)

# Run build
old_path = os.getcwd()
os.chdir(src_path)
sys.path.insert(0, src_path)

cwd = os.path.abspath(os.path.dirname(__file__))
if not os.path.exists(os.path.join(cwd, 'PKG-INFO')):
# Generate Cython sources, unless building from source release
generate_cython()

try:
setup(name='megaman',
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
download_url=DOWNLOAD_URL,
description=DESCRIPTION,
long_description = LONG_DESCRIPTION,
version=VERSION,
license=LICENSE,
configuration=configuration,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'])
finally:
del sys.path[0]
os.chdir(old_path)

return


if __name__ == '__main__':
setup_package()
37 changes: 37 additions & 0 deletions 678.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import requests
from requests.compat import urljoin


class DigimonClient:

BASE_URL = "https://digimon-api.vercel.app/api/digimon/"

def __init__(self, session=None, timeout=5):
self.session = session or requests.Session()
self.timeout = timeout

def _request(self, method, url_path, params=None):
params = params or {}
url = urljoin(self.BASE_URL, url_path)
headers = {
"User-Agent": "pydigimon",
"Content-Type": "application/json"
}
result = self.session.request(method, url, headers=headers, params=params,
timeout=self.timeout)
return result

def get_all_digimon(self):
url_path = ''
method = 'GET'
return self._request(method, url_path)

def get_digimon_by_name(self, name):
url_path = f"name/{name}"
method = 'GET'
return self._request(method, url_path)

def get_digimon_by_level(self, level):
url_path = f"level/{level}"
method = 'GET'
return self._request(method, url_path)
17 changes: 17 additions & 0 deletions 7z2kn5jx9tg9nzomhluz.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
'''

Online Python Debugger.
Code, Run and Debug Python program online.
Write your code in this editor and press "Debug" button to debug program.

'''
"""
#$ex=1T^2-B^3
#$sin(ex)=cos(1T^2)-tan(1B^3)
#$y=1T^2-1B^3-ex
#$y=cos(1T^2)-tan(1B^3)-sin(ex
#$E=3D^2+4D^3+5D^4(6D^5)
#$y=3D^2+4D^3+5D^4(6D^5)+E
#$y=3D+4D+5D(6D)+E
print("Hello World")
'''
1 change: 1 addition & 0 deletions Accnt_Record (1).txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
63710015000
1 change: 1 addition & 0 deletions Accnt_Record (2).txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
63710015000
1 change: 1 addition & 0 deletions Accnt_Record (3).txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
63710015000
1 change: 1 addition & 0 deletions Accnt_Record (4).txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
63710015000
1 change: 1 addition & 0 deletions Accnt_Record.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
63710015000
Loading